This commit upgrades TypeScript to the latest version 5.3 and introduces `verbatimModuleSyntax` in line with the official Vue guide recommendatinos (vuejs/docs#2592). By enforcing `import type` for type-only imports, this commit improves code clarity and supports tooling optimization, ensuring imports are only bundled when necessary for runtime. Changes: - Bump TypeScript to 5.3.3 across the project. - Adjust import statements to utilize `import type` where applicable, promoting cleaner and more efficient code.
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { BaseEntity } from '../infrastructure/Entity/BaseEntity';
|
|
import type { ICategory } from './ICategory';
|
|
import type { IScript } from './IScript';
|
|
|
|
export class Category extends BaseEntity<number> implements ICategory {
|
|
private allSubScripts?: ReadonlyArray<IScript> = undefined;
|
|
|
|
constructor(
|
|
id: number,
|
|
public readonly name: string,
|
|
public readonly docs: ReadonlyArray<string>,
|
|
public readonly subCategories: ReadonlyArray<ICategory>,
|
|
public readonly scripts: ReadonlyArray<IScript>,
|
|
) {
|
|
super(id);
|
|
validateCategory(this);
|
|
}
|
|
|
|
public includes(script: IScript): boolean {
|
|
return this.getAllScriptsRecursively().some((childScript) => childScript.id === script.id);
|
|
}
|
|
|
|
public getAllScriptsRecursively(): readonly IScript[] {
|
|
if (!this.allSubScripts) {
|
|
this.allSubScripts = parseScriptsRecursively(this);
|
|
}
|
|
return this.allSubScripts;
|
|
}
|
|
}
|
|
|
|
function parseScriptsRecursively(category: ICategory): ReadonlyArray<IScript> {
|
|
return [
|
|
...category.scripts,
|
|
...category.subCategories.flatMap((c) => c.getAllScriptsRecursively()),
|
|
];
|
|
}
|
|
|
|
function validateCategory(category: ICategory) {
|
|
if (!category.name) {
|
|
throw new Error('missing name');
|
|
}
|
|
if (category.subCategories.length === 0 && category.scripts.length === 0) {
|
|
throw new Error('A category must have at least one sub-category or script');
|
|
}
|
|
}
|