2022-08-04 12:56:30 +02:00
|
|
|
import create from 'zustand';
|
|
|
|
import { DASHBOARD_CONFIG, DEFAULT_WEBSITE_LIMIT } from 'lib/constants';
|
|
|
|
import { getItem, setItem } from 'lib/web';
|
|
|
|
|
|
|
|
export const initialState = {
|
|
|
|
showCharts: true,
|
|
|
|
limit: DEFAULT_WEBSITE_LIMIT,
|
2022-08-05 06:37:18 +02:00
|
|
|
websiteOrder: [],
|
2022-08-04 12:56:30 +02:00
|
|
|
editing: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
const store = create(() => ({ ...initialState, ...getItem(DASHBOARD_CONFIG) }));
|
|
|
|
|
|
|
|
export function saveDashboard(settings) {
|
2022-08-05 06:37:18 +02:00
|
|
|
store.setState(settings);
|
2022-08-04 12:56:30 +02:00
|
|
|
|
|
|
|
setItem(DASHBOARD_CONFIG, store.getState());
|
|
|
|
}
|
|
|
|
|
|
|
|
export default store;
|