mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 10:32:19 +08:00
* build: 更新网站依赖 * build:更新vphope版本 * build: 怎么忘记加这个了 * fix: 修复构建错误 * chore: fix Vite CJS Node API deprecated warning * chore: log * perf: turbo 添加文档 cache * perf: 注释掉新版不读取的切换语言公告内容 但公告这个属性得留着 不留着就没有切换语言的弹窗了 * fix: 修复字体问题 * build: update package version * docs: remove root locale * docs: add author * ci: update node version * build: turbo一直叫我更新,于是我更新了 * docs: update package * docs: 再见吧牛牛今晚我就要远航 * docs: fix root locale problem * docs: remove unused command * feat: 牛兮归来! * build: update turbo * chore: 语言提醒怎么又没了 加回来 --------- Co-authored-by: SherkeyXD <57581480+SherkeyXD@users.noreply.github.com>
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import type { VNode } from "vue";
|
|
import { defineComponent, h } from "vue";
|
|
|
|
import NavbarDropdown from "@theme-hope/modules/navbar/components/NavbarDropdown";
|
|
import { I18nIcon } from "@theme-hope/modules/navbar/components/icons/index";
|
|
import { useNavbarLanguageDropdown } from "@theme-hope/modules/navbar/composables/index";
|
|
|
|
export default defineComponent({
|
|
name: "LanguageDropdown",
|
|
|
|
setup() {
|
|
const dropdown = useNavbarLanguageDropdown();
|
|
|
|
const filteredDropdown = () => {
|
|
if (!dropdown.value) return null;
|
|
|
|
const filteredConfig = { ...dropdown.value };
|
|
|
|
if (filteredConfig.children) {
|
|
filteredConfig.children = filteredConfig.children.filter(item => item.link !== '/');
|
|
}
|
|
|
|
return filteredConfig;
|
|
};
|
|
|
|
//console.log("OldLanguageDropdown", dropdown.value);
|
|
//console.log("NewLanguageDropdown", filteredDropdown());
|
|
|
|
return (): VNode | null =>
|
|
dropdown.value
|
|
? h(
|
|
"div",
|
|
{ class: "vp-nav-item" },
|
|
h(
|
|
NavbarDropdown,
|
|
{ config: filteredDropdown() },
|
|
{
|
|
title: () =>
|
|
h(I18nIcon, {
|
|
"aria-label": filteredDropdown()?.ariaLabel,
|
|
style: {
|
|
width: "1rem",
|
|
height: "1rem",
|
|
verticalAlign: "middle",
|
|
},
|
|
}),
|
|
},
|
|
),
|
|
)
|
|
: null;
|
|
},
|
|
}); |