--- import Button from "./control/Button.astro"; import { Icon } from 'astro-icon/components'; import DisplaySetting from "./widget/DisplaySetting.astro"; import I18nKey from "../i18n/i18nKey"; import {i18n} from "../i18n/translation"; import {LinkPreset, NavBarLink} from "../types/config"; import {navBarConfig, siteConfig} from "../config"; const className = Astro.props.class; function isI18nKey(key: string): key is I18nKey { return Object.values(I18nKey).includes(key); } let links: NavBarLink[] = navBarConfig.links.map((item) => { if (typeof item === "number") { return getLinkPresetInfo(item) } return item; }); function getLinkPresetInfo(p: LinkPreset): NavBarLink { switch (p) { case LinkPreset.Home: return { name: i18n(I18nKey.home), url: "/page/1" }; case LinkPreset.Archive: return { name: i18n(I18nKey.archive), url: "/archive" }; case LinkPreset.About: return { name: i18n(I18nKey.about), url: "/about" }; } } ---
{links.map((l) => { return ; })}