Skip to content

增加自动nav分类判断 | Add automatic nav classification judgment #425

Open
@viceroyliu

Description

@viceroyliu

Feature request

autoAddCategoryToNavbar Add judgment

file : NavbarLinks.vue
code👇

  const parseCategories = computed(() => {
    let arr = [];
    if (Object.values(categorySummary?.categories?.items).length > 0) {
      arr.push({
        text: themeLocal.value.autoAddCategoryToNavbar?.categoryText || 'Categories',
        children: Object.values(categorySummary?.categories?.items || {}).map((c) => ({
          // @ts-ignore
          text: c.label,
          // @ts-ignore
          link: `/categories/${convertToPinyin(c.label)}/1/`,
        }))
      })
    }
    if (Object.values(categorySummary?.tags?.items).length > 0) {
      arr.push({
        text: themeLocal.value.autoAddCategoryToNavbar?.tagText || 'Tags',
        children: Object.values(categorySummary?.tags?.items || {}).map(t => ({
          // @ts-ignore
          text: t.label,
          // @ts-ignore
          link: `/tags/${convertToPinyin(t.label)}/1/`,
        }))
      })
    }
    return arr;
  })

What problem does this feature solve?

When I don't have a tag, I don't add a tag

How should this be implemented in your opinion?

Are you willing to work on this yourself?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions