excalidraw/src/actions/actionToggleStats.tsx

18 lines
367 B
TypeScript
Raw Normal View History

import { register } from "./register";
export const actionToggleStats = register({
name: "stats",
perform(elements, appState) {
this.checked = !this.checked;
return {
appState: {
...appState,
showStats: !appState.showStats,
},
commitToHistory: false,
};
},
checked: false,
contextItemLabel: "stats.title",
});