-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(website): implement group topic page #113
Conversation
Codecov ReportBase: 92.00% // Head: 92.46% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #113 +/- ##
==========================================
+ Coverage 92.00% 92.46% +0.46%
==========================================
Files 70 76 +6
Lines 3688 4006 +318
Branches 423 463 +40
==========================================
+ Hits 3393 3704 +311
- Misses 293 300 +7
Partials 2 2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
用post_id假装( |
应该只能 SSR 吧 @Ayase-252
这样可以,但是感觉会有点问题 |
🤔 要不先review一下这个,然后用这个来发请求 #200 |
除了定位到评论,其他的看起来ok。 我记得chrome有个非标的API scrollIntoViewIfNeeded可用 |
scrollIntoView 有啥问题吗?感觉定位缺个高亮的样式,可以先记个 issue 以后改 |
https://next.bgm.tv dev不了了,是后端改过什么东西吗 |
后端没改过什么东西。 vite的proxy倒是改过,是这个的问题? |
应该不是。vite.config.ts 改过之后没有出现问题 |
后端也没改什么东西,好久没打新tag了 |
的确是vite配置错了 |
97cdce0
to
053ab01
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
没其他问题
import React from 'react'; | ||
|
||
export interface LayoutProps { | ||
type: 'alpha' | 'beta'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
beta 好像没有用到?话说 alpha 是什么意思?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我看了看小组页面、小组主题帖、和搜索页面的布局是一样的。 条目具体信息会用另一套布局。应该不会有太多布局就放着复用了(
/group/topic/${topicId}
closes #112