32 lines
739 B
TypeScript
32 lines
739 B
TypeScript
import { Store as PullStateStore } from 'pullstate';
|
|
|
|
import { lists, homeItems, notifications, settings, TodoListItem, HomeItem, NotificationItem, Settings } from '../mock';
|
|
|
|
type StoreProps = {
|
|
safeAreaTop: number;
|
|
safeAreaBottom: number;
|
|
menuOpen: boolean;
|
|
notificationsOpen: boolean;
|
|
currentPage: number | null;
|
|
homeItems: HomeItem[];
|
|
lists: TodoListItem[];
|
|
notifications: NotificationItem[];
|
|
settings: Settings;
|
|
selectedList: TodoListItem | undefined;
|
|
}
|
|
|
|
const Store = new PullStateStore<StoreProps>({
|
|
safeAreaTop: 0,
|
|
safeAreaBottom: 0,
|
|
menuOpen: false,
|
|
notificationsOpen: false,
|
|
currentPage: null,
|
|
homeItems,
|
|
lists,
|
|
notifications,
|
|
settings,
|
|
selectedList: undefined,
|
|
});
|
|
|
|
export default Store;
|