123456789101112131415161718192021222324 |
- import { AppState } from "./types";
- import { getDateTime } from "./utils";
- const DEFAULT_PROJECT_NAME = `excalidraw-${getDateTime()}`;
- export function getDefaultAppState(): AppState {
- return {
- draggingElement: null,
- resizingElement: null,
- editingElement: null,
- elementType: "selection",
- elementLocked: false,
- exportBackground: true,
- currentItemStrokeColor: "#000000",
- currentItemBackgroundColor: "transparent",
- currentItemFont: "20px Virgil",
- viewBackgroundColor: "#ffffff",
- scrollX: 0,
- scrollY: 0,
- cursorX: 0,
- cursorY: 0,
- name: DEFAULT_PROJECT_NAME
- };
- }
|