import { useMantineTheme } from '@mantine/core'; import create from 'zustand'; import { useConfigContext } from '../../../../config/provider'; export const useGridstackStore = create((set, get) => ({ mainAreaWidth: null, currentShapeSize: null, setMainAreaWidth: (w: number) => set((v) => ({ ...v, mainAreaWidth: w, currentShapeSize: getCurrentShapeSize(w) })), })); interface GridstackStoreType { mainAreaWidth: null | number; currentShapeSize: null | 'sm' | 'md' | 'lg'; setMainAreaWidth: (width: number) => void; } export const useNamedWrapperColumnCount = (): 'small' | 'medium' | 'large' | null => { const mainAreaWidth = useGridstackStore((x) => x.mainAreaWidth); const { sm, xl } = useMantineTheme().breakpoints; if (!mainAreaWidth) return null; if (mainAreaWidth >= xl) return 'large'; if (mainAreaWidth >= sm) return 'medium'; return 'small'; }; export const useWrapperColumnCount = () => { const { config } = useConfigContext(); const numberOfSidebars = (config?.settings.customization.layout.enabledLeftSidebar ? 1 : 0) + (config?.settings.customization.layout.enabledRightSidebar ? 1 : 0); switch (useNamedWrapperColumnCount()) { case 'large': return 15 - numberOfSidebars * 2; case 'medium': return 9 - numberOfSidebars * 2; case 'small': return 3; default: return null; } }; function getCurrentShapeSize(size: number) { return size >= 1400 ? 'lg' : size >= 768 ? 'md' : 'sm'; }