This commit unifies executable ID structure across categories and scripts, paving the way for more complex ID solutions for #262. It also refactors related code to adapt to the changes. Key changes: - Change numeric IDs to string IDs for categories - Use named types for string IDs to improve code clarity - Add unit tests to verify ID uniqueness Other supporting changes: - Separate concerns in entities for data access and executables by using separate abstractions (`Identifiable` and `RepositoryEntity`) - Simplify usage and construction of entities. - Remove `BaseEntity` for simplicity. - Move creation of categories/scripts to domain layer - Refactor CategoryCollection for better validation logic isolation - Rename some categories to keep the names (used as pseudo-IDs) unique on Windows.
70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
import type { Script } from '@/domain/Executables/Script/Script';
|
|
import { RecommendationLevel } from '@/domain/Executables/Script/RecommendationLevel';
|
|
import type { ScriptCode } from '@/domain/Executables/Script/Code/ScriptCode';
|
|
import type { ExecutableId } from '@/domain/Executables/Identifiable';
|
|
import { SelectedScriptStub } from './SelectedScriptStub';
|
|
|
|
export class ScriptStub implements Script {
|
|
public name = `name${this.executableId}`;
|
|
|
|
public code: ScriptCode = {
|
|
execute: `REM execute-code (${this.executableId})`,
|
|
revert: `REM revert-code (${this.executableId})`,
|
|
};
|
|
|
|
public docs: readonly string[] = new Array<string>();
|
|
|
|
public level? = RecommendationLevel.Standard;
|
|
|
|
private isReversible: boolean | undefined = undefined;
|
|
|
|
constructor(public readonly executableId: ExecutableId) { }
|
|
|
|
public canRevert(): boolean {
|
|
if (this.isReversible === undefined) {
|
|
return Boolean(this.code.revert);
|
|
}
|
|
return this.isReversible;
|
|
}
|
|
|
|
public withLevel(value: RecommendationLevel | undefined): this {
|
|
this.level = value;
|
|
return this;
|
|
}
|
|
|
|
public withCode(value: string): this {
|
|
this.code = {
|
|
execute: value,
|
|
revert: this.code.revert,
|
|
};
|
|
return this;
|
|
}
|
|
|
|
public withName(name: string): this {
|
|
this.name = name;
|
|
return this;
|
|
}
|
|
|
|
public withReversibility(isReversible: boolean): this {
|
|
this.isReversible = isReversible;
|
|
return this;
|
|
}
|
|
|
|
public withRevertCode(revertCode?: string): this {
|
|
this.code = {
|
|
execute: this.code.execute,
|
|
revert: revertCode,
|
|
};
|
|
return this;
|
|
}
|
|
|
|
public withDocs(docs: readonly string[]): this {
|
|
this.docs = docs;
|
|
return this;
|
|
}
|
|
|
|
public toSelectedScript(): SelectedScriptStub {
|
|
return new SelectedScriptStub(this);
|
|
}
|
|
}
|