This commit unifies the concepts of executables having same ID structure. It paves the way for more complex ID structure and using IDs in collection files as part of new ID solution (#262). Using string IDs also leads to more expressive test code. This commit also refactors the rest of the code to adopt to the changes. This commit: - Separate concerns from entities for data access (in repositories) and executables. Executables use `Identifiable` meanwhile repositories use `RepositoryEntity`. - Refactor unnecessary generic parameters for enttities and ids, enforcing string gtype everwyhere. - Changes numeric IDs to string IDs for categories to unify the retrieval and construction for executables, using pseudo-ids (their names) just like scripts. - Remove `BaseEntity` for simplicity. - Simplify usage and construction of executable objects. Move factories responsible for creation of category/scripts to domain layer. Do not longer export `CollectionCategorY` and `CollectionScript`. - Use named typed for string IDs for better differentation of different ID contexts in code.
48 lines
1.6 KiB
TypeScript
48 lines
1.6 KiB
TypeScript
import {
|
|
type Ref, computed, shallowReadonly,
|
|
} from 'vue';
|
|
import type { ICategoryCollection } from '@/domain/Collection/ICategoryCollection';
|
|
import { injectKey } from '@/presentation/injectionSymbols';
|
|
import type { ExecutableId } from '@/domain/Executables/Identifiable';
|
|
import { parseSingleCategory, parseAllCategories } from './CategoryNodeMetadataConverter';
|
|
import { convertToNodeInput } from './TreeNodeMetadataConverter';
|
|
import type { TreeInputNodeData } from '../TreeView/Bindings/TreeInputNodeData';
|
|
import type { NodeMetadata } from '../NodeContent/NodeMetadata';
|
|
|
|
export function useTreeViewNodeInput(
|
|
categoryIdRef: Readonly<Ref<ExecutableId | undefined>>,
|
|
parser: CategoryNodeParser = {
|
|
parseSingle: parseSingleCategory,
|
|
parseAll: parseAllCategories,
|
|
},
|
|
nodeConverter = convertToNodeInput,
|
|
) {
|
|
const { currentState } = injectKey((keys) => keys.useCollectionState);
|
|
|
|
const nodes = computed<readonly TreeInputNodeData[]>(() => {
|
|
const nodeMetadataList = parseNodes(categoryIdRef.value, currentState.value.collection, parser);
|
|
const nodeInputs = nodeMetadataList.map((node) => nodeConverter(node));
|
|
return nodeInputs;
|
|
});
|
|
|
|
return {
|
|
treeViewInputNodes: shallowReadonly(nodes),
|
|
};
|
|
}
|
|
|
|
function parseNodes(
|
|
categoryId: ExecutableId | undefined,
|
|
categoryCollection: ICategoryCollection,
|
|
parser: CategoryNodeParser,
|
|
): NodeMetadata[] {
|
|
if (categoryId !== undefined) {
|
|
return parser.parseSingle(categoryId, categoryCollection);
|
|
}
|
|
return parser.parseAll(categoryCollection);
|
|
}
|
|
|
|
export interface CategoryNodeParser {
|
|
readonly parseSingle: typeof parseSingleCategory;
|
|
readonly parseAll: typeof parseAllCategories;
|
|
}
|