- Use function abstractions (such as map, reduce, filter etc.) over for-of loops to gain benefits of having less side effects and easier readability. - Enable `downLevelIterations` for writing modern code with lazy evaluation. - Refactor for of loops to named abstractions to clearly express their intentions without needing to analyse the loop itself. - Add missing cases for changes that had no tests.
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import { BaseEntity } from '@/infrastructure/Entity/BaseEntity';
|
|
import { ICategory, IScript } from '@/domain/ICategory';
|
|
import { ScriptStub } from './ScriptStub';
|
|
|
|
export class CategoryStub extends BaseEntity<number> implements ICategory {
|
|
public name = `category-with-id-${this.id}`;
|
|
|
|
public readonly subCategories = new Array<ICategory>();
|
|
|
|
public readonly scripts = new Array<IScript>();
|
|
|
|
public readonly documentationUrls = new Array<string>();
|
|
|
|
public constructor(id: number) {
|
|
super(id);
|
|
}
|
|
|
|
public includes(script: IScript): boolean {
|
|
return this.getAllScriptsRecursively().some((s) => s.id === script.id);
|
|
}
|
|
|
|
public getAllScriptsRecursively(): readonly IScript[] {
|
|
return [
|
|
...this.scripts,
|
|
...this.subCategories.flatMap((c) => c.getAllScriptsRecursively()),
|
|
];
|
|
}
|
|
|
|
public withScriptIds(...scriptIds: string[]): CategoryStub {
|
|
return this.withScripts(
|
|
...scriptIds.map((id) => new ScriptStub(id)),
|
|
);
|
|
}
|
|
|
|
public withScripts(...scripts: IScript[]): CategoryStub {
|
|
for (const script of scripts) {
|
|
this.withScript(script);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
public withCategories(...categories: ICategory[]): CategoryStub {
|
|
for (const category of categories) {
|
|
this.withCategory(category);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
public withCategory(category: ICategory): CategoryStub {
|
|
this.subCategories.push(category);
|
|
return this;
|
|
}
|
|
|
|
public withScript(script: IScript): CategoryStub {
|
|
this.scripts.push(script);
|
|
return this;
|
|
}
|
|
|
|
public withName(categoryName: string) {
|
|
this.name = categoryName;
|
|
return this;
|
|
}
|
|
}
|