mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
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,
|
|
websiteOrder: [],
|
|
editing: false,
|
|
};
|
|
|
|
const store = create(() => ({ ...initialState, ...getItem(DASHBOARD_CONFIG) }));
|
|
|
|
export function saveDashboard(settings) {
|
|
store.setState(settings);
|
|
|
|
setItem(DASHBOARD_CONFIG, store.getState());
|
|
}
|
|
|
|
export default store;
|