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.
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import {
|
|
type Ref, shallowReadonly, shallowRef, triggerRef,
|
|
} from 'vue';
|
|
import type { TreeRoot } from '@/presentation/components/Scripts/View/Tree/TreeView/TreeRoot/TreeRoot';
|
|
import { useCurrentTreeNodes } from '@/presentation/components/Scripts/View/Tree/TreeView/UseCurrentTreeNodes';
|
|
import type { QueryableNodes } from '@/presentation/components/Scripts/View/Tree/TreeView/TreeRoot/NodeCollection/Query/QueryableNodes';
|
|
import { QueryableNodesStub } from './QueryableNodesStub';
|
|
|
|
export class UseCurrentTreeNodesStub {
|
|
public treeRootRef: Readonly<Ref<TreeRoot>> | undefined;
|
|
|
|
private nodes = shallowRef<QueryableNodes>(new QueryableNodesStub());
|
|
|
|
public withQueryableNodes(nodes: QueryableNodes): this {
|
|
this.nodes.value = nodes;
|
|
return this;
|
|
}
|
|
|
|
public triggerNewNodes(nodes: QueryableNodes) {
|
|
this.nodes.value = nodes;
|
|
triggerRef(this.nodes);
|
|
}
|
|
|
|
public get(): typeof useCurrentTreeNodes {
|
|
return (treeRootRef: Readonly<Ref<TreeRoot>>) => {
|
|
this.treeRootRef = treeRootRef;
|
|
return {
|
|
nodes: shallowReadonly(this.nodes),
|
|
};
|
|
};
|
|
}
|
|
}
|