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.
56 lines
1.9 KiB
TypeScript
56 lines
1.9 KiB
TypeScript
import type { IApplication } from '@/domain/IApplication';
|
|
import { OperatingSystem } from '@/domain/OperatingSystem';
|
|
import type { ICategoryCollection } from '@/domain/ICategoryCollection';
|
|
import { EventSource } from '@/infrastructure/Events/EventSource';
|
|
import { assertInRange } from '@/application/Common/Enum';
|
|
import { CategoryCollectionState } from './State/CategoryCollectionState';
|
|
import type { IApplicationContext, IApplicationContextChangedEvent } from './IApplicationContext';
|
|
import type { ICategoryCollectionState } from './State/ICategoryCollectionState';
|
|
|
|
type StateMachine = Map<OperatingSystem, ICategoryCollectionState>;
|
|
|
|
export class ApplicationContext implements IApplicationContext {
|
|
public readonly contextChanged = new EventSource<IApplicationContextChangedEvent>();
|
|
|
|
public collection: ICategoryCollection;
|
|
|
|
public currentOs: OperatingSystem;
|
|
|
|
public get state(): ICategoryCollectionState {
|
|
return this.states[this.collection.os];
|
|
}
|
|
|
|
private readonly states: StateMachine;
|
|
|
|
public constructor(
|
|
public readonly app: IApplication,
|
|
initialContext: OperatingSystem,
|
|
) {
|
|
this.states = initializeStates(app);
|
|
this.changeContext(initialContext);
|
|
}
|
|
|
|
public changeContext(os: OperatingSystem): void {
|
|
assertInRange(os, OperatingSystem);
|
|
if (this.currentOs === os) {
|
|
return;
|
|
}
|
|
const collection = this.app.getCollection(os);
|
|
this.collection = collection;
|
|
const event: IApplicationContextChangedEvent = {
|
|
newState: this.states[os],
|
|
oldState: this.states[this.currentOs],
|
|
};
|
|
this.contextChanged.notify(event);
|
|
this.currentOs = os;
|
|
}
|
|
}
|
|
|
|
function initializeStates(app: IApplication): StateMachine {
|
|
const machine = new Map<OperatingSystem, ICategoryCollectionState>();
|
|
for (const collection of app.collections) {
|
|
machine[collection.os] = new CategoryCollectionState(collection);
|
|
}
|
|
return machine;
|
|
}
|