This commit consolidates scripts and categories under a unified 'Executable' concept. This simplifies the architecture and improves code readability. - Introduce subfolders within `src/domain` to segregate domain elements. - Update class and interface names by removing the 'I' prefix in alignment with new coding standards. - Replace 'Node' with 'Executable' to clarify usage; reserve 'Node' exclusively for the UI's tree component.
23 lines
772 B
TypeScript
23 lines
772 B
TypeScript
import type { ScriptCodeFactory } from '@/domain/Executables/Script/Code/ScriptCodeFactory';
|
|
import type { ScriptCode } from '@/domain/Executables/Script/Code/ScriptCode';
|
|
import { ScriptCodeStub } from './ScriptCodeStub';
|
|
|
|
export function createScriptCodeFactoryStub(
|
|
options?: Partial<StubOptions>,
|
|
): ScriptCodeFactory {
|
|
let defaultCodePrefix = 'createScriptCodeFactoryStub';
|
|
if (options?.defaultCodePrefix) {
|
|
defaultCodePrefix += ` > ${options?.defaultCodePrefix}`;
|
|
}
|
|
return (
|
|
() => options?.scriptCode ?? new ScriptCodeStub()
|
|
.withExecute(`[${defaultCodePrefix}] default code`)
|
|
.withRevert(`[${defaultCodePrefix}] revert code`)
|
|
);
|
|
}
|
|
|
|
interface StubOptions {
|
|
readonly scriptCode?: ScriptCode;
|
|
readonly defaultCodePrefix?: string;
|
|
}
|