(action: StateAction)
| 55 | } |
| 56 | |
| 57 | function saveStateSnapshot(action: StateAction): void { |
| 58 | stateSnapshots[action] = { |
| 59 | snippetId: state.snippetId, |
| 60 | folderId: state.folderId, |
| 61 | tagId: state.tagId, |
| 62 | snippetContentIndex: state.snippetContentIndex, |
| 63 | libraryFilter: state.libraryFilter, |
| 64 | codeLayoutMode: codeLayoutMode.value, |
| 65 | isSidebarHidden: isSidebarHidden.value, |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | function restoreStateSnapshot(action: StateAction): void { |
| 70 | const snapshot = stateSnapshots[action] |