import React from "react"; import { Action } from "./types"; import { ColorPicker } from "../components/ColorPicker"; import { getDefaultAppState } from "../appState"; import { trash, zoomIn, zoomOut } from "../components/icons"; import { ToolButton } from "../components/ToolButton"; import { t } from "../i18n"; import { getNormalizedZoom } from "../scene"; export const actionChangeViewBackgroundColor: Action = { name: "changeViewBackgroundColor", perform: (_, appState, value) => { return { appState: { ...appState, viewBackgroundColor: value } }; }, PanelComponent: ({ appState, updateData }) => { return (
updateData(color)} />
); }, commitToHistory: () => true, }; export const actionClearCanvas: Action = { name: "clearCanvas", commitToHistory: () => true, perform: () => { return { elements: [], appState: getDefaultAppState(), }; }, PanelComponent: ({ updateData }) => ( { if (window.confirm(t("alerts.clearReset"))) { // TODO: Defined globally, since file handles aren't yet serializable. // Once `FileSystemFileHandle` can be serialized, make this // part of `AppState`. (window as any).handle = null; updateData(null); } }} /> ), }; const ZOOM_STEP = 0.1; export const actionZoomIn: Action = { name: "zoomIn", perform: (elements, appState) => { return { appState: { ...appState, zoom: getNormalizedZoom(appState.zoom + ZOOM_STEP), }, }; }, PanelComponent: ({ updateData }) => ( { updateData(null); }} /> ), }; export const actionZoomOut: Action = { name: "zoomOut", perform: (elements, appState) => { return { appState: { ...appState, zoom: getNormalizedZoom(appState.zoom - ZOOM_STEP), }, }; }, PanelComponent: ({ updateData }) => ( { updateData(null); }} /> ), };