mirror of https://github.com/portainer/portainer
92 lines
2.0 KiB
TypeScript
92 lines
2.0 KiB
TypeScript
import {
|
|
Context,
|
|
createContext,
|
|
ReactNode,
|
|
useCallback,
|
|
useContext,
|
|
useMemo,
|
|
useState,
|
|
} from 'react';
|
|
|
|
import { useLocalStorage } from '@/portainer/hooks/useLocalStorage';
|
|
|
|
interface TableSettingsContextInterface<T> {
|
|
settings: T;
|
|
setTableSettings(partialSettings: Partial<T>): void;
|
|
setTableSettings(mutation: (settings: T) => T): void;
|
|
}
|
|
|
|
const TableSettingsContext = createContext<TableSettingsContextInterface<
|
|
Record<string, unknown>
|
|
> | null>(null);
|
|
TableSettingsContext.displayName = 'TableSettingsContext';
|
|
|
|
export function useTableSettings<T>() {
|
|
const Context = getContextType<T>();
|
|
|
|
const context = useContext(Context);
|
|
|
|
if (context === null) {
|
|
throw new Error('must be nested under TableSettingsProvider');
|
|
}
|
|
|
|
return context;
|
|
}
|
|
|
|
interface ProviderProps<T> {
|
|
children: ReactNode;
|
|
defaults?: T;
|
|
storageKey: string;
|
|
}
|
|
|
|
export function TableSettingsProvider<T>({
|
|
children,
|
|
defaults,
|
|
storageKey,
|
|
}: ProviderProps<T>) {
|
|
const Context = getContextType<T>();
|
|
|
|
const [storage, setStorage] = useLocalStorage<T>(
|
|
keyBuilder(storageKey),
|
|
defaults as T
|
|
);
|
|
|
|
const [settings, setTableSettings] = useState(storage);
|
|
|
|
const handleChange = useCallback(
|
|
(mutation: Partial<T> | ((settings: T) => T)): void => {
|
|
setTableSettings((settings) => {
|
|
const newTableSettings =
|
|
mutation instanceof Function
|
|
? mutation(settings)
|
|
: { ...settings, ...mutation };
|
|
|
|
setStorage(newTableSettings);
|
|
|
|
return newTableSettings;
|
|
});
|
|
},
|
|
[setStorage]
|
|
);
|
|
|
|
const contextValue = useMemo(
|
|
() => ({
|
|
settings,
|
|
setTableSettings: handleChange,
|
|
}),
|
|
[settings, handleChange]
|
|
);
|
|
|
|
return <Context.Provider value={contextValue}>{children}</Context.Provider>;
|
|
|
|
function keyBuilder(key: string) {
|
|
return `datatable_TableSettings_${key}`;
|
|
}
|
|
}
|
|
|
|
function getContextType<T>() {
|
|
return TableSettingsContext as unknown as Context<
|
|
TableSettingsContextInterface<T>
|
|
>;
|
|
}
|