mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-10 21:22:26 +03:00
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import { assignDeep, hasOwnProperty } from '~/support';
|
|
import type { PartialOptions, ReadonlyOptions } from '~/options';
|
|
|
|
export type SetupElements<T extends Record<string, any>> = [elements: T, destroy: () => void];
|
|
|
|
export type SetupUpdate<Args extends any[], R> = (
|
|
changedOptions: PartialOptions,
|
|
force: boolean,
|
|
...args: Args
|
|
) => R;
|
|
|
|
export type SetupUpdateCheckOption = <T>(path: string) => [value: T, changed: boolean];
|
|
|
|
export type SetupUpdateSegment<Hints extends Record<string, any>> = (
|
|
updateHints: Hints,
|
|
checkOption: SetupUpdateCheckOption,
|
|
force: boolean
|
|
) => Partial<Hints> | void;
|
|
|
|
export type SetupState<T extends Record<string, any>> = [
|
|
get: () => T,
|
|
set: (newState: Partial<T>) => void
|
|
];
|
|
|
|
export type Setup<
|
|
DynamicState,
|
|
StaticState extends Record<string, any> = Record<string, any>,
|
|
Args extends any[] = [],
|
|
R = void
|
|
> = [update: SetupUpdate<Args, R>, state: (() => DynamicState) & StaticState, destroy: () => void];
|
|
|
|
const getPropByPath = <T>(obj: any, path: string): T =>
|
|
obj
|
|
? path.split('.').reduce((o, prop) => (o && hasOwnProperty(o, prop) ? o[prop] : undefined), obj)
|
|
: undefined;
|
|
|
|
export const createOptionCheck =
|
|
(
|
|
options: ReadonlyOptions,
|
|
changedOptions: PartialOptions,
|
|
force?: boolean
|
|
): SetupUpdateCheckOption =>
|
|
(path: string) =>
|
|
[getPropByPath(options, path), force || getPropByPath(changedOptions, path) !== undefined];
|
|
|
|
export const createState = <S extends Record<string, any>>(initialState: S): SetupState<S> => {
|
|
let state: S = initialState;
|
|
return [
|
|
() => state,
|
|
(newState: Partial<S>) => {
|
|
state = assignDeep({}, state, newState);
|
|
},
|
|
];
|
|
};
|