actionToggleStats.tsx 365 B

12345678910111213141516
  1. import { register } from "./register";
  2. export const actionToggleStats = register({
  3. name: "stats",
  4. perform(elements, appState) {
  5. return {
  6. appState: {
  7. ...appState,
  8. showStats: !this.checked!(appState),
  9. },
  10. commitToHistory: false,
  11. };
  12. },
  13. checked: (appState) => appState.showStats,
  14. contextItemLabel: "stats.title",
  15. });