Files
standardnotes-app-web/app/assets/javascripts/UIModels/AppState/ActionsMenuState.ts
2022-04-13 22:02:34 +05:30

23 lines
524 B
TypeScript

import { UuidString } from '@standardnotes/snjs'
import { action, makeObservable, observable } from 'mobx'
export class ActionsMenuState {
hiddenSections: Record<UuidString, boolean> = {}
constructor() {
makeObservable(this, {
hiddenSections: observable,
toggleSectionVisibility: action,
reset: action,
})
}
toggleSectionVisibility = (uuid: UuidString): void => {
this.hiddenSections[uuid] = !this.hiddenSections[uuid]
}
reset = (): void => {
this.hiddenSections = {}
}
}