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.
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import type { IApplication } from '@/domain/IApplication';
|
|
import type { ICategoryCollection } from '@/domain/Collection/ICategoryCollection';
|
|
import { OperatingSystem } from '@/domain/OperatingSystem';
|
|
import type { ProjectDetails } from '@/domain/Project/ProjectDetails';
|
|
import { ProjectDetailsStub } from './ProjectDetailsStub';
|
|
import { CategoryCollectionStub } from './CategoryCollectionStub';
|
|
|
|
export class ApplicationStub implements IApplication {
|
|
public projectDetails: ProjectDetails = new ProjectDetailsStub();
|
|
|
|
public collections: ICategoryCollection[] = [];
|
|
|
|
public getCollection(operatingSystem: OperatingSystem): ICategoryCollection {
|
|
const collection = this.collections.find((c) => c.os === operatingSystem);
|
|
return collection ?? new CategoryCollectionStub();
|
|
}
|
|
|
|
public getSupportedOsList(): OperatingSystem[] {
|
|
return this.collections.map((collection) => collection.os);
|
|
}
|
|
|
|
public withCollection(collection: ICategoryCollection): this {
|
|
this.collections.push(collection);
|
|
return this;
|
|
}
|
|
|
|
public withProjectDetails(info: ProjectDetails): this {
|
|
this.projectDetails = info;
|
|
return this;
|
|
}
|
|
|
|
public withCollections(...collections: readonly ICategoryCollection[]): this {
|
|
this.collections.push(...collections);
|
|
return this;
|
|
}
|
|
}
|