summaryrefslogtreecommitdiff
path: root/apps/web/lib/stores/user-interface-store.ts
blob: 29841ec3a2d5272f0ad9f3e2265027781edb78ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import { create } from "zustand"
import { persist, createJSONStorage } from "zustand/middleware"

type EntryListViewMode = "compact" | "comfortable" | "expanded"

type DisplayDensity = "compact" | "default" | "spacious"

type FontSize = "small" | "default" | "large"

type TimeDisplayFormat = "relative" | "absolute"

type ScrollbarStyle = "custom" | "native" | "hidden"

type ToolbarPosition = "top" | "bottom"

type FocusedPanel = "sidebar" | "entryList" | "detailPanel"

type SettingsTab =
  | "subscriptions"
  | "folders"
  | "muted-phrases"
  | "custom-feeds"
  | "import-export"
  | "appearance"
  | "account"
  | "billing"
  | "api"
  | "danger"

interface UserInterfaceState {
  isSidebarCollapsed: boolean
  isCommandPaletteOpen: boolean
  isAddFeedDialogOpen: boolean
  isSearchOpen: boolean
  selectedEntryIdentifier: string | null
  focusedEntryIdentifier: string | null
  focusedPanel: FocusedPanel
  focusedSidebarIndex: number
  entryListViewMode: EntryListViewMode
  displayDensity: DisplayDensity
  activeSettingsTab: SettingsTab
  showFeedFavicons: boolean
  focusFollowsInteraction: boolean
  fontSize: FontSize
  timeDisplayFormat: TimeDisplayFormat
  showEntryImages: boolean
  showReadingTime: boolean
  showFoldersAboveFeeds: boolean
  showEntryFavicons: boolean
  scrollbarStyle: ScrollbarStyle
  autoRefreshTimeline: boolean
  prioritiseUnreadEntries: boolean
  toolbarPosition: ToolbarPosition
  isEntryListAtTop: boolean
  isShortcutsDialogOpen: boolean
  expandedFolderIdentifiers: string[]
  currentFeedIdentifier: string | null
  currentFolderIdentifier: string | null
  navigableEntryIdentifiers: string[]
  resetSidebarLayout: (() => void) | null
  resetDetailLayout: (() => void) | null

  setCurrentFeedIdentifier: (identifier: string | null) => void
  setCurrentFolderIdentifier: (identifier: string | null) => void
  toggleSidebar: () => void
  setSidebarCollapsed: (isCollapsed: boolean) => void
  setCommandPaletteOpen: (isOpen: boolean) => void
  setAddFeedDialogOpen: (isOpen: boolean) => void
  setSearchOpen: (isOpen: boolean) => void
  setSelectedEntryIdentifier: (identifier: string | null) => void
  setFocusedEntryIdentifier: (identifier: string | null) => void
  setFocusedPanel: (panel: FocusedPanel) => void
  setFocusedSidebarIndex: (index: number) => void
  setEntryListViewMode: (mode: EntryListViewMode) => void
  setDisplayDensity: (density: DisplayDensity) => void
  setActiveSettingsTab: (tab: SettingsTab) => void
  setShowFeedFavicons: (show: boolean) => void
  setFocusFollowsInteraction: (enabled: boolean) => void
  setFontSize: (size: FontSize) => void
  setTimeDisplayFormat: (format: TimeDisplayFormat) => void
  setShowEntryImages: (show: boolean) => void
  setShowReadingTime: (show: boolean) => void
  setShowFoldersAboveFeeds: (show: boolean) => void
  setShowEntryFavicons: (show: boolean) => void
  setScrollbarStyle: (style: ScrollbarStyle) => void
  setAutoRefreshTimeline: (enabled: boolean) => void
  setPrioritiseUnreadEntries: (enabled: boolean) => void
  setToolbarPosition: (position: ToolbarPosition) => void
  setIsEntryListAtTop: (isAtTop: boolean) => void
  setShortcutsDialogOpen: (isOpen: boolean) => void
  toggleShortcutsDialog: () => void
  toggleFolderExpansion: (folderIdentifier: string) => void
  setNavigableEntryIdentifiers: (identifiers: string[]) => void
  setResetSidebarLayout: (callback: (() => void) | null) => void
  setResetDetailLayout: (callback: (() => void) | null) => void
}

export const useUserInterfaceStore = create<UserInterfaceState>()(
  persist(
    (set) => ({
      isSidebarCollapsed: false,
      isCommandPaletteOpen: false,
      isAddFeedDialogOpen: false,
      isSearchOpen: false,
      selectedEntryIdentifier: null,
      focusedEntryIdentifier: null,
      focusedPanel: "entryList",
      focusedSidebarIndex: 0,
      entryListViewMode: "comfortable",
      displayDensity: "default",
      activeSettingsTab: "subscriptions",
      showFeedFavicons: true,
      focusFollowsInteraction: false,
      fontSize: "default",
      timeDisplayFormat: "relative",
      showEntryImages: true,
      showReadingTime: true,
      showFoldersAboveFeeds: false,
      showEntryFavicons: false,
      scrollbarStyle: "custom",
      autoRefreshTimeline: false,
      prioritiseUnreadEntries: false,
      toolbarPosition: "top",
      isEntryListAtTop: true,
      isShortcutsDialogOpen: false,
      expandedFolderIdentifiers: [],
      currentFeedIdentifier: null,
      currentFolderIdentifier: null,
      navigableEntryIdentifiers: [],
      resetSidebarLayout: null,
      resetDetailLayout: null,

      setCurrentFeedIdentifier: (identifier) =>
        set({ currentFeedIdentifier: identifier }),

      setCurrentFolderIdentifier: (identifier) =>
        set({ currentFolderIdentifier: identifier }),

      toggleSidebar: () =>
        set((state) => ({ isSidebarCollapsed: !state.isSidebarCollapsed })),

      setSidebarCollapsed: (isCollapsed) =>
        set({ isSidebarCollapsed: isCollapsed }),

      setCommandPaletteOpen: (isOpen) => set({ isCommandPaletteOpen: isOpen }),

      setAddFeedDialogOpen: (isOpen) => set({ isAddFeedDialogOpen: isOpen }),

      setSearchOpen: (isOpen) => set({ isSearchOpen: isOpen }),

      setSelectedEntryIdentifier: (identifier) =>
        set({ selectedEntryIdentifier: identifier }),

      setFocusedEntryIdentifier: (identifier) =>
        set({ focusedEntryIdentifier: identifier }),

      setFocusedPanel: (panel) => set({ focusedPanel: panel }),

      setFocusedSidebarIndex: (index) => set({ focusedSidebarIndex: index }),

      setEntryListViewMode: (mode) => set({ entryListViewMode: mode }),

      setDisplayDensity: (density) => set({ displayDensity: density }),

      setActiveSettingsTab: (tab) => set({ activeSettingsTab: tab }),

      setShowFeedFavicons: (show) => set({ showFeedFavicons: show }),

      setFocusFollowsInteraction: (enabled) =>
        set({ focusFollowsInteraction: enabled }),

      setFontSize: (size) => set({ fontSize: size }),

      setTimeDisplayFormat: (format) => set({ timeDisplayFormat: format }),

      setShowEntryImages: (show) => set({ showEntryImages: show }),

      setShowReadingTime: (show) => set({ showReadingTime: show }),

      setShowFoldersAboveFeeds: (show) => set({ showFoldersAboveFeeds: show }),

      setShowEntryFavicons: (show) => set({ showEntryFavicons: show }),

      setScrollbarStyle: (style) => set({ scrollbarStyle: style }),

      setAutoRefreshTimeline: (enabled) =>
        set({ autoRefreshTimeline: enabled }),

      setPrioritiseUnreadEntries: (enabled) =>
        set({ prioritiseUnreadEntries: enabled }),

      setToolbarPosition: (position) => set({ toolbarPosition: position }),

      setIsEntryListAtTop: (isAtTop) => set({ isEntryListAtTop: isAtTop }),

      setShortcutsDialogOpen: (isOpen) =>
        set({ isShortcutsDialogOpen: isOpen }),

      toggleShortcutsDialog: () =>
        set((state) => ({
          isShortcutsDialogOpen: !state.isShortcutsDialogOpen,
        })),

      toggleFolderExpansion: (folderIdentifier) =>
        set((state) => {
          const current = state.expandedFolderIdentifiers
          const isExpanded = current.includes(folderIdentifier)
          return {
            expandedFolderIdentifiers: isExpanded
              ? current.filter((id) => id !== folderIdentifier)
              : [...current, folderIdentifier],
          }
        }),

      setNavigableEntryIdentifiers: (identifiers) =>
        set({ navigableEntryIdentifiers: identifiers }),

      setResetSidebarLayout: (callback) =>
        set({ resetSidebarLayout: callback }),

      setResetDetailLayout: (callback) =>
        set({ resetDetailLayout: callback }),
    }),
    {
      name: "asa-news-ui-preferences",
      storage: createJSONStorage(() => {
        if (typeof window === "undefined") {
          return {
            getItem: () => null,
            setItem: () => {},
            removeItem: () => {},
          }
        }
        return localStorage
      }),
      partialize: (state) => ({
        entryListViewMode: state.entryListViewMode,
        displayDensity: state.displayDensity,
        showFeedFavicons: state.showFeedFavicons,
        focusFollowsInteraction: state.focusFollowsInteraction,
        expandedFolderIdentifiers: state.expandedFolderIdentifiers,
        fontSize: state.fontSize,
        timeDisplayFormat: state.timeDisplayFormat,
        showEntryImages: state.showEntryImages,
        showReadingTime: state.showReadingTime,
        showFoldersAboveFeeds: state.showFoldersAboveFeeds,
        showEntryFavicons: state.showEntryFavicons,
        scrollbarStyle: state.scrollbarStyle,
        autoRefreshTimeline: state.autoRefreshTimeline,
        prioritiseUnreadEntries: state.prioritiseUnreadEntries,
        toolbarPosition: state.toolbarPosition,
      }),
    }
  )
)