This commit introduces `useUserSelectionState` compositional hook. it centralizes and allows reusing the logic for tracking and mutation user selection state across the application. The change aims to increase code reusability, simplify the code, improve testability, and adhere to the single responsibility principle. It makes the code more reliable against race conditions and removes the need for tracking deep changes. Other supporting changes: - Introduce `CardStateIndicator` component for displaying the card state indicator icon, improving the testability and separation of concerns. - Refactor `SelectionTypeHandler` to use functional code with more clear interfaces to simplify the code. It reduces complexity, increases maintainability and increase readability by explicitly separating mutating functions. - Add new unit tests and extend improving ones to cover the new logic introduced in this commit. Remove the need to mount a wrapper component to simplify and optimize some tests, using parameter injection to inject dependencies intead.
85 lines
3.1 KiB
TypeScript
85 lines
3.1 KiB
TypeScript
import { inject, type InjectionKey } from 'vue';
|
|
import type { useCollectionState } from '@/presentation/components/Shared/Hooks/UseCollectionState';
|
|
import type { useApplication } from '@/presentation/components/Shared/Hooks/UseApplication';
|
|
import type { useRuntimeEnvironment } from '@/presentation/components/Shared/Hooks/UseRuntimeEnvironment';
|
|
import type { useClipboard } from '@/presentation/components/Shared/Hooks/Clipboard/UseClipboard';
|
|
import type { useCurrentCode } from '@/presentation/components/Shared/Hooks/UseCurrentCode';
|
|
import type { useAutoUnsubscribedEvents } from '@/presentation/components/Shared/Hooks/UseAutoUnsubscribedEvents';
|
|
import type { useUserSelectionState } from '@/presentation/components/Shared/Hooks/UseUserSelectionState';
|
|
|
|
export const InjectionKeys = {
|
|
useCollectionState: defineTransientKey<ReturnType<typeof useCollectionState>>('useCollectionState'),
|
|
useApplication: defineSingletonKey<ReturnType<typeof useApplication>>('useApplication'),
|
|
useRuntimeEnvironment: defineSingletonKey<ReturnType<typeof useRuntimeEnvironment>>('useRuntimeEnvironment'),
|
|
useAutoUnsubscribedEvents: defineTransientKey<ReturnType<typeof useAutoUnsubscribedEvents>>('useAutoUnsubscribedEvents'),
|
|
useClipboard: defineTransientKey<ReturnType<typeof useClipboard>>('useClipboard'),
|
|
useCurrentCode: defineTransientKey<ReturnType<typeof useCurrentCode>>('useCurrentCode'),
|
|
useUserSelectionState: defineTransientKey<ReturnType<typeof useUserSelectionState>>('useUserSelectionState'),
|
|
};
|
|
|
|
export interface InjectionKeyWithLifetime<T> {
|
|
readonly lifetime: InjectionKeyLifetime;
|
|
readonly key: InjectionKey<T> & symbol;
|
|
}
|
|
|
|
export interface SingletonKey<T> extends InjectionKeyWithLifetime<T> {
|
|
readonly lifetime: InjectionKeyLifetime.Singleton;
|
|
readonly key: InjectionKey<T> & symbol;
|
|
}
|
|
|
|
export interface TransientKey<T> extends InjectionKeyWithLifetime<() => T> {
|
|
readonly lifetime: InjectionKeyLifetime.Transient;
|
|
readonly key: InjectionKey<() => T> & symbol;
|
|
}
|
|
|
|
export type AnyLifetimeInjectionKey<T> = InjectionKeyWithLifetime<T> | TransientKey<T>;
|
|
|
|
export type InjectionKeySelector<T> = (keys: typeof InjectionKeys) => AnyLifetimeInjectionKey<T>;
|
|
|
|
export function injectKey<T>(
|
|
keySelector: InjectionKeySelector<T>,
|
|
vueInjector = inject,
|
|
): T {
|
|
const key = keySelector(InjectionKeys);
|
|
const injectedValue = injectRequired(key.key, vueInjector);
|
|
if (key.lifetime === InjectionKeyLifetime.Transient) {
|
|
const factory = injectedValue as () => T;
|
|
const value = factory();
|
|
return value;
|
|
}
|
|
|
|
return injectedValue as T;
|
|
}
|
|
|
|
export enum InjectionKeyLifetime {
|
|
Singleton,
|
|
Transient,
|
|
}
|
|
|
|
function defineSingletonKey<T>(key: string): SingletonKey<T> {
|
|
return {
|
|
lifetime: InjectionKeyLifetime.Singleton,
|
|
key: Symbol(key),
|
|
};
|
|
}
|
|
|
|
function defineTransientKey<T>(key: string): TransientKey<T> {
|
|
return {
|
|
lifetime: InjectionKeyLifetime.Transient,
|
|
key: Symbol(key),
|
|
};
|
|
}
|
|
|
|
function injectRequired<T>(
|
|
key: InjectionKey<T>,
|
|
vueInjector = inject,
|
|
): T {
|
|
const injectedValue = vueInjector(key);
|
|
|
|
if (injectedValue === undefined) {
|
|
throw new Error(`Failed to inject value for key: ${key.description}`);
|
|
}
|
|
|
|
return injectedValue;
|
|
}
|