web-apps/apps/spreadsheeteditor/mobile/src/store/mainStore.js

38 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-12-10 13:14:52 +00:00
// import {storeDocumentSettings} from './documentSettings';
2021-01-28 11:45:38 +00:00
import {storeFocusObjects} from "./focusObjects";
2020-12-10 13:14:52 +00:00
import {storeUsers} from '../../../../common/mobile/lib/store/users';
import {storeWorksheets} from './sheets';
import {storeFunctions} from './functions';
2021-02-02 16:24:38 +00:00
import {storePalette} from "./palette";
2021-02-09 18:42:00 +00:00
import {storeTextSettings} from "./textSettings";
import {storeApplicationSettings} from "./applicationSettings";
2021-02-02 16:24:38 +00:00
import {storeShapeSettings} from "./shapeSettings";
2021-02-04 18:00:21 +00:00
import {storeCellSettings} from "./cellSettings";
import {storeSpreadsheetInfo} from "./spreadsheetInfo";
import {storeAppOptions} from "./appOptions";
2020-12-10 13:14:52 +00:00
// import {storeImageSettings} from "./imageSettings";
// import {storeTableSettings} from "./tableSettings";
import {storeChartSettings} from "./chartSettings";
2021-02-18 19:15:50 +00:00
import {storeSpreadsheetSettings} from "./spreadsheetSettings";
2020-12-10 13:14:52 +00:00
export const stores = {
2021-01-28 11:45:38 +00:00
storeFocusObjects: new storeFocusObjects(),
2021-02-18 19:15:50 +00:00
storeSpreadsheetSettings: new storeSpreadsheetSettings(),
storeApplicationSettings: new storeApplicationSettings(),
2020-12-10 13:14:52 +00:00
users: new storeUsers(),
sheets: new storeWorksheets(),
storeFunctions: new storeFunctions(),
2021-02-09 18:42:00 +00:00
storeTextSettings: new storeTextSettings(),
storeSpreadsheetInfo: new storeSpreadsheetInfo(),
storeAppOptions: new storeAppOptions(),
2020-12-10 13:14:52 +00:00
// storeParagraphSettings: new storeParagraphSettings(),
2021-02-02 16:24:38 +00:00
storeShapeSettings: new storeShapeSettings(),
storeChartSettings: new storeChartSettings(),
2021-02-04 18:00:21 +00:00
storePalette: new storePalette(),
storeCellSettings: new storeCellSettings()
2020-12-10 13:14:52 +00:00
// storeImageSettings: new storeImageSettings(),
// storeTableSettings: new storeTableSettings()
};