feat: implement tag management and search functionality
Features: - Tag system with multi-language support (Chinese/English) - Auto-create tags when associating with articles - Tag filtering on homepage with visual indicators - Full-text search across title, summary, and content - Tag cloud sidebar showing article counts - Search page with results display Technical Implementation: - Database models: Tag, ArticleTag (many-to-many) - Tag count caching for performance - Automatic tag slug generation - Responsive design with mobile support - I18n support for all new UI elements Bug Fix: - Fixed SQL column ambiguity error in tag filtering - Added table prefix to ORDER BY clause in publishedArticleOrder Routes: - GET /search - Search results page - GET /?tag=<slug> - Filter articles by tag - GET /api/articles?tag=<slug> - API with tag filter support Templates: - Added tag input field to article create/edit form - Added search box to homepage header - Added tag cloud sidebar on homepage and search page - Created new search results page template Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -77,6 +77,7 @@ type articleForm struct {
|
||||
StatusStr string
|
||||
IsTop bool
|
||||
PublishedAt string // datetime-local format: "2006-01-02T15:04"
|
||||
Tags string // comma-separated tag names
|
||||
Action string // form action URL
|
||||
TitleText string // page heading text (create vs edit)
|
||||
ArticleID uint // existing article ID (edit page); 0 on create
|
||||
@@ -94,6 +95,7 @@ func parseArticleForm(c *gin.Context) articleForm {
|
||||
StatusStr: c.PostForm("status"),
|
||||
IsTop: c.PostForm("is_top") == "1",
|
||||
PublishedAt: strings.TrimSpace(c.PostForm("published_at")),
|
||||
Tags: strings.TrimSpace(c.PostForm("tags")),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,6 +110,7 @@ func applyFormToData(data gin.H, f articleForm) {
|
||||
data["FormStatus"] = f.StatusStr
|
||||
data["FormIsTop"] = f.IsTop
|
||||
data["FormPublishedAt"] = f.PublishedAt
|
||||
data["FormTags"] = f.Tags
|
||||
data["FormAction"] = f.Action
|
||||
data["FormTitleText"] = f.TitleText
|
||||
data["FormArticleID"] = f.ArticleID
|
||||
@@ -180,6 +183,73 @@ func formatPublishedAt(t *time.Time) string {
|
||||
return t.Local().Format("2006-01-02T15:04")
|
||||
}
|
||||
|
||||
// parseTags splits comma-separated tag string and returns tag names.
|
||||
func parseTags(tagStr string) []string {
|
||||
if tagStr == "" {
|
||||
return []string{}
|
||||
}
|
||||
parts := strings.Split(tagStr, ",")
|
||||
var tags []string
|
||||
for _, part := range parts {
|
||||
trimmed := strings.TrimSpace(part)
|
||||
if trimmed != "" {
|
||||
tags = append(tags, trimmed)
|
||||
}
|
||||
}
|
||||
return tags
|
||||
}
|
||||
|
||||
// syncArticleTags associates tags with an article (find or create tags).
|
||||
func syncArticleTags(db *gorm.DB, article *models.Article, tagNames []string) error {
|
||||
// Clear existing tags
|
||||
if err := db.Model(article).Association("Tags").Clear(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// If no tags, we're done
|
||||
if len(tagNames) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Find or create each tag and associate with article
|
||||
var tags []models.Tag
|
||||
for _, name := range tagNames {
|
||||
tag, err := models.FindOrCreateTag(db, name, name)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if tag != nil {
|
||||
tags = append(tags, *tag)
|
||||
}
|
||||
}
|
||||
|
||||
// Associate tags with article
|
||||
if len(tags) > 0 {
|
||||
if err := db.Model(article).Association("Tags").Append(tags); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Update tag counts
|
||||
for _, tag := range tags {
|
||||
models.UpdateTagCount(db, tag.ID)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// formatArticleTags converts article tags to comma-separated string for form.
|
||||
func formatArticleTags(tags []models.Tag) string {
|
||||
if len(tags) == 0 {
|
||||
return ""
|
||||
}
|
||||
var names []string
|
||||
for _, tag := range tags {
|
||||
names = append(names, tag.NameZh)
|
||||
}
|
||||
return strings.Join(names, ", ")
|
||||
}
|
||||
|
||||
// ArticleCreatePage renders the article creation form.
|
||||
func ArticleCreatePage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
@@ -264,6 +334,13 @@ func ArticleCreate(db *gorm.DB) gin.HandlerFunc {
|
||||
}
|
||||
}
|
||||
|
||||
// Sync article tags
|
||||
tagNames := parseTags(f.Tags)
|
||||
if err := syncArticleTags(db, &article, tagNames); err != nil {
|
||||
// Log error but don't fail the article creation
|
||||
// The article is already created, tags are optional
|
||||
}
|
||||
|
||||
// Bind any attachments uploaded during creation (plan A: pending rows
|
||||
// owned by session_token, article_id=0).
|
||||
if f.SessionToken != "" {
|
||||
@@ -300,6 +377,9 @@ func ArticleEditPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return
|
||||
}
|
||||
|
||||
// Preload tags for the article
|
||||
db.Model(&article).Association("Tags").Find(&article.Tags)
|
||||
|
||||
renderArticleForm(c, db, articleForm{
|
||||
Title: article.Title,
|
||||
Slug: article.Slug,
|
||||
@@ -309,6 +389,7 @@ func ArticleEditPage(db *gorm.DB) gin.HandlerFunc {
|
||||
StatusStr: strconv.Itoa(article.Status),
|
||||
IsTop: article.IsTop,
|
||||
PublishedAt: formatPublishedAt(article.PublishedAt),
|
||||
Tags: formatArticleTags(article.Tags),
|
||||
Action: "/admin/articles/" + id + "/edit",
|
||||
TitleText: tr["article_edit_title"],
|
||||
ArticleID: article.ID,
|
||||
@@ -381,6 +462,12 @@ func ArticleUpdate(db *gorm.DB) gin.HandlerFunc {
|
||||
return
|
||||
}
|
||||
|
||||
// Sync article tags
|
||||
tagNames := parseTags(f.Tags)
|
||||
if err := syncArticleTags(db, &article, tagNames); err != nil {
|
||||
// Log error but don't fail the article update
|
||||
}
|
||||
|
||||
c.Redirect(http.StatusFound, "/admin/articles")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user