refactor(P3): HomeView 拆分为 3 composable + CommentDrawer 组件 (924行→~180行)

This commit is contained in:
Sisyphus
2026-04-25 16:48:17 +08:00
parent 15f86f08ae
commit 41ae86f908
6 changed files with 625 additions and 925 deletions

View File

@@ -14,7 +14,6 @@ type Video struct {
LikesCount int64 `gorm:"column:likes_count;not null;default:0;index:idx_videos_likes_count_id,priority:1,sort:desc" json:"likes_count"`
Popularity int64 `gorm:"column:popularity;not null;default:0;index:idx_videos_popularity_time_id,priority:1,sort:desc" json:"popularity"`
}
}
type PublishVideoRequest struct {
Title string `json:"title"`