2020-04-10 18:09:29 -04:00
|
|
|
import oc from "open-color";
|
2020-02-19 08:25:01 -08:00
|
|
|
import { AppState, FlooredNumber } from "./types";
|
2020-01-11 20:34:21 -08:00
|
|
|
import { getDateTime } from "./utils";
|
2020-04-08 01:31:28 +03:00
|
|
|
import { t } from "./i18n";
|
2020-01-11 20:34:21 -08:00
|
|
|
|
2020-02-24 16:29:54 +01:00
|
|
|
export const DEFAULT_FONT = "20px Virgil";
|
2020-04-08 21:00:27 +01:00
|
|
|
export const DEFAULT_TEXT_ALIGN = "left";
|
2020-01-11 20:34:21 -08:00
|
|
|
|
|
|
|
export function getDefaultAppState(): AppState {
|
|
|
|
return {
|
2020-04-11 17:10:56 +01:00
|
|
|
wysiwygElement: null,
|
2020-03-26 18:28:26 +01:00
|
|
|
isLoading: false,
|
2020-04-03 12:50:51 +01:00
|
|
|
errorMessage: null,
|
2020-01-11 20:34:21 -08:00
|
|
|
draggingElement: null,
|
|
|
|
resizingElement: null,
|
2020-02-01 15:49:18 +04:00
|
|
|
multiElement: null,
|
2020-01-19 23:32:24 +01:00
|
|
|
editingElement: null,
|
2020-01-11 20:34:21 -08:00
|
|
|
elementType: "selection",
|
2020-01-20 15:52:19 -08:00
|
|
|
elementLocked: false,
|
2020-01-11 20:34:21 -08:00
|
|
|
exportBackground: true,
|
2020-04-10 18:09:29 -04:00
|
|
|
currentItemStrokeColor: oc.black,
|
2020-01-11 20:34:21 -08:00
|
|
|
currentItemBackgroundColor: "transparent",
|
2020-01-25 18:58:57 +01:00
|
|
|
currentItemFillStyle: "hachure",
|
|
|
|
currentItemStrokeWidth: 1,
|
|
|
|
currentItemRoughness: 1,
|
|
|
|
currentItemOpacity: 100,
|
2020-02-24 16:29:54 +01:00
|
|
|
currentItemFont: DEFAULT_FONT,
|
2020-04-08 21:00:27 +01:00
|
|
|
currentItemTextAlign: DEFAULT_TEXT_ALIGN,
|
2020-04-10 18:09:29 -04:00
|
|
|
viewBackgroundColor: oc.white,
|
2020-02-19 08:25:01 -08:00
|
|
|
scrollX: 0 as FlooredNumber,
|
|
|
|
scrollY: 0 as FlooredNumber,
|
2020-01-11 20:34:21 -08:00
|
|
|
cursorX: 0,
|
|
|
|
cursorY: 0,
|
2020-04-04 16:12:19 +01:00
|
|
|
cursorButton: "up",
|
2020-02-01 16:52:10 +00:00
|
|
|
scrolledOutside: false,
|
2020-04-08 01:31:28 +03:00
|
|
|
name: `${t("labels.untitled")}-${getDateTime()}`,
|
2020-04-07 14:02:42 +01:00
|
|
|
username: "",
|
2020-03-11 19:42:18 +01:00
|
|
|
isCollaborating: false,
|
2020-02-03 21:52:21 +04:00
|
|
|
isResizing: false,
|
2020-04-02 17:40:26 +09:00
|
|
|
isRotating: false,
|
2020-02-05 22:47:10 +04:00
|
|
|
selectionElement: null,
|
2020-02-15 21:03:32 +01:00
|
|
|
zoom: 1,
|
2020-03-01 14:39:03 -05:00
|
|
|
openMenu: null,
|
2020-02-21 14:34:18 -05:00
|
|
|
lastPointerDownWith: "mouse",
|
2020-03-08 10:20:55 -07:00
|
|
|
selectedElementIds: {},
|
2020-03-12 12:19:56 +01:00
|
|
|
collaborators: new Map(),
|
2020-03-28 16:59:36 -07:00
|
|
|
shouldCacheIgnoreZoom: false,
|
2020-04-05 15:58:00 +03:00
|
|
|
showShortcutsDialog: false,
|
2020-01-11 20:34:21 -08:00
|
|
|
};
|
|
|
|
}
|
2020-02-01 15:49:18 +04:00
|
|
|
|
2020-02-04 17:39:08 +04:00
|
|
|
export function clearAppStateForLocalStorage(appState: AppState) {
|
|
|
|
const {
|
|
|
|
draggingElement,
|
|
|
|
resizingElement,
|
|
|
|
multiElement,
|
|
|
|
editingElement,
|
2020-02-05 22:47:10 +04:00
|
|
|
selectionElement,
|
2020-02-04 17:39:08 +04:00
|
|
|
isResizing,
|
2020-04-02 17:40:26 +09:00
|
|
|
isRotating,
|
2020-03-12 12:19:56 +01:00
|
|
|
collaborators,
|
|
|
|
isCollaborating,
|
2020-03-26 18:28:26 +01:00
|
|
|
isLoading,
|
2020-04-03 12:50:51 +01:00
|
|
|
errorMessage,
|
2020-04-05 15:58:00 +03:00
|
|
|
showShortcutsDialog,
|
2020-02-04 17:39:08 +04:00
|
|
|
...exportedState
|
|
|
|
} = appState;
|
|
|
|
return exportedState;
|
|
|
|
}
|
|
|
|
|
2020-02-05 22:47:10 +04:00
|
|
|
export function clearAppStatePropertiesForHistory(
|
|
|
|
appState: AppState,
|
|
|
|
): Partial<AppState> {
|
|
|
|
return {
|
2020-04-06 00:49:54 +05:30
|
|
|
selectedElementIds: appState.selectedElementIds,
|
2020-02-05 22:47:10 +04:00
|
|
|
exportBackground: appState.exportBackground,
|
|
|
|
currentItemStrokeColor: appState.currentItemStrokeColor,
|
|
|
|
currentItemBackgroundColor: appState.currentItemBackgroundColor,
|
|
|
|
currentItemFillStyle: appState.currentItemFillStyle,
|
|
|
|
currentItemStrokeWidth: appState.currentItemStrokeWidth,
|
|
|
|
currentItemRoughness: appState.currentItemRoughness,
|
|
|
|
currentItemOpacity: appState.currentItemOpacity,
|
|
|
|
currentItemFont: appState.currentItemFont,
|
2020-04-08 21:00:27 +01:00
|
|
|
currentItemTextAlign: appState.currentItemTextAlign,
|
2020-02-05 22:47:10 +04:00
|
|
|
viewBackgroundColor: appState.viewBackgroundColor,
|
|
|
|
name: appState.name,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-01 15:49:18 +04:00
|
|
|
export function cleanAppStateForExport(appState: AppState) {
|
|
|
|
return {
|
|
|
|
viewBackgroundColor: appState.viewBackgroundColor,
|
|
|
|
};
|
|
|
|
}
|