P1-6 useStyleLearn/useKimiOauth 修 stale-closure 依赖。 P1-7 CommandPalette/Drawer 加 focus trap(新 lib/a11y/focusTrap)。 P1-8 SSE 解析与 server.ts 去 as 强转改类型守卫/运行时校验。 P2 删冗余强转、开 noUncheckedIndexedAccess、Toast 清理+稳定 key、列表 key 稳定化、 rel=noopener、useMemo 大文本、ConflictCard role=group、useInjection 加锁、 client.test 真断言。 codegen 重生成 schema.d.ts + 消费 DimensionEntry/ReviewConflictView 强类型。
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import {
|
|
GLOBAL_NAV_ITEMS,
|
|
isNavItemActive,
|
|
projectNavItems,
|
|
type NavItem,
|
|
} from "./items";
|
|
|
|
const PID = "p1";
|
|
|
|
describe("projectNavItems", () => {
|
|
it("builds the eight project entries scoped to the project id", () => {
|
|
const items = projectNavItems(PID);
|
|
|
|
expect(items).toHaveLength(8);
|
|
expect(items.map((i) => i.key)).toEqual([
|
|
"write",
|
|
"outline",
|
|
"foreshadow",
|
|
"review",
|
|
"style",
|
|
"codex",
|
|
"rules",
|
|
"skills",
|
|
]);
|
|
expect(items.every((i) => i.href.startsWith(`/projects/${PID}/`))).toBe(
|
|
true,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("isNavItemActive", () => {
|
|
const write: NavItem = {
|
|
href: `/projects/${PID}/write`,
|
|
label: "写作",
|
|
key: "write",
|
|
};
|
|
|
|
it("matches a project item by its activeNav key regardless of pathname", () => {
|
|
expect(
|
|
isNavItemActive(write, { pathname: "/anything", activeNav: "write" }),
|
|
).toBe(true);
|
|
});
|
|
|
|
it("matches a project item by exact pathname when no activeNav given", () => {
|
|
expect(isNavItemActive(write, { pathname: `/projects/${PID}/write` })).toBe(
|
|
true,
|
|
);
|
|
});
|
|
|
|
it("does not match a project item when neither key nor path align", () => {
|
|
expect(isNavItemActive(write, { pathname: "/", activeNav: "outline" })).toBe(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it("matches a global item by exact pathname only", () => {
|
|
const works = GLOBAL_NAV_ITEMS[0];
|
|
if (!works) throw new Error("expected GLOBAL_NAV_ITEMS[0]");
|
|
expect(isNavItemActive(works, { pathname: "/" })).toBe(true);
|
|
expect(isNavItemActive(works, { pathname: "/projects/p1/write" })).toBe(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it("ignores activeNav for global items (no key)", () => {
|
|
const settings = GLOBAL_NAV_ITEMS[1];
|
|
if (!settings) throw new Error("expected GLOBAL_NAV_ITEMS[1]");
|
|
expect(
|
|
isNavItemActive(settings, { pathname: "/", activeNav: "write" }),
|
|
).toBe(false);
|
|
});
|
|
});
|