-
-
Notifications
You must be signed in to change notification settings - Fork 529
Expand file tree
/
Copy pathDisplayOptionsMenu.tsx
More file actions
504 lines (460 loc) · 18.6 KB
/
DisplayOptionsMenu.tsx
File metadata and controls
504 lines (460 loc) · 18.6 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
import {
CollectionSort,
CollectionSortProperty,
IconType,
isSmartView,
isSystemView,
PrefKey,
SystemViewId,
TagMutator,
TagPreferences,
VectorIconNameOrEmoji,
PrefDefaults,
isTag,
} from '@standardnotes/snjs'
import { observer } from 'mobx-react-lite'
import { FunctionComponent, useCallback, useEffect, useState } from 'react'
import Icon from '@/Components/Icon/Icon'
import Menu from '@/Components/Menu/Menu'
import { DisplayOptionsMenuProps } from './DisplayOptionsMenuProps'
import NewNotePreferences from './NewNotePreferences'
import { PreferenceMode } from './PreferenceMode'
import { classNames } from '@standardnotes/utils'
import NoSubscriptionBanner from '@/Components/NoSubscriptionBanner/NoSubscriptionBanner'
import MenuRadioButtonItem from '@/Components/Menu/MenuRadioButtonItem'
import MenuSwitchButtonItem from '@/Components/Menu/MenuSwitchButtonItem'
import { Pill } from '@/Components/Preferences/PreferencesComponents/Content'
import { MutuallyExclusiveMediaQueryBreakpoints, useMediaQuery } from '@/Hooks/useMediaQuery'
import { PaneLayout } from '@/Controllers/PaneController/PaneLayout'
import MenuSection from '@/Components/Menu/MenuSection'
import usePreference from '@/Hooks/usePreference'
const DailyEntryModeEnabled = true
const SortIcon = ({ enabled, reverse }: { enabled: boolean; reverse: boolean | undefined }) => {
if (!enabled) {
return null
}
return (
<Icon
type={reverse ? 'arrows-sort-up' : 'arrows-sort-down'}
className="h-6 w-6 text-neutral md:h-5 md:w-6"
size="custom"
/>
)
}
const TabButton: FunctionComponent<{
label: string
mode: PreferenceMode
icon?: VectorIconNameOrEmoji
currentMode: PreferenceMode
setCurrentMode: (mode: PreferenceMode) => void
}> = ({ mode, label, icon, currentMode, setCurrentMode }) => {
const isSelected = currentMode === mode
return (
<button
className={classNames(
'relative cursor-pointer rounded-full border-2 border-solid border-transparent px-2 py-1 text-mobile-menu-item focus:shadow-none md:py-0 lg:text-sm',
isSelected
? 'bg-info text-info-contrast'
: 'bg-transparent text-text hover:bg-info-backdrop focus:bg-info-backdrop',
)}
onClick={() => {
setCurrentMode(mode)
}}
>
<div className="flex items-center justify-center">
{icon && (
<Icon
size="custom"
type={icon as IconType}
className={classNames(
'mr-1 h-4.5 w-4.5 cursor-pointer md:h-3.5 md:w-3.5',
isSelected ? 'text-info-contrast' : 'text-neutral',
)}
/>
)}
<div>{label}</div>
</div>
</button>
)
}
const DisplayOptionsMenu: FunctionComponent<DisplayOptionsMenuProps> = ({
application,
isFilesSmartView,
selectedTag,
paneController,
}) => {
const isRegularTag = isTag(selectedTag)
const isSystemTag = isSmartView(selectedTag) && isSystemView(selectedTag)
const selectedTagPreferences = isSystemTag
? application.getPreference(PrefKey.SystemViewPreferences)?.[selectedTag.uuid as SystemViewId]
: selectedTag.preferences
const hasSubscription = application.subscriptionController.hasFirstPartyOnlineOrOfflineSubscription()
const [currentMode, setCurrentMode] = useState<PreferenceMode>(
(hasSubscription && isRegularTag) || selectedTagPreferences ? 'tag' : 'global',
)
const [preferences, setPreferences] = useState<TagPreferences>({})
const controlsDisabled = currentMode === 'tag' && !hasSubscription
const isDailyEntry = selectedTagPreferences?.entryMode === 'daily'
const notesListLayout = usePreference(PrefKey.NotesListLayout)
const reloadPreferences = useCallback(() => {
const globalValues: TagPreferences = {
sortBy: application.getPreference(PrefKey.SortNotesBy, PrefDefaults[PrefKey.SortNotesBy]),
sortReverse: application.getPreference(PrefKey.SortNotesReverse, PrefDefaults[PrefKey.SortNotesReverse]),
showArchived: application.getPreference(PrefKey.NotesShowArchived, PrefDefaults[PrefKey.NotesShowArchived]),
showTrashed: application.getPreference(PrefKey.NotesShowTrashed, PrefDefaults[PrefKey.NotesShowTrashed]),
hideProtected: application.getPreference(PrefKey.NotesHideProtected, PrefDefaults[PrefKey.NotesHideProtected]),
hidePinned: application.getPreference(PrefKey.NotesHidePinned, PrefDefaults[PrefKey.NotesHidePinned]),
hideNotePreview: application.getPreference(
PrefKey.NotesHideNotePreview,
PrefDefaults[PrefKey.NotesHideNotePreview],
),
hideDate: application.getPreference(PrefKey.NotesHideDate, PrefDefaults[PrefKey.NotesHideDate]),
hideTags: application.getPreference(PrefKey.NotesHideTags, PrefDefaults[PrefKey.NotesHideTags]),
hideEditorIcon: application.getPreference(PrefKey.NotesHideEditorIcon, PrefDefaults[PrefKey.NotesHideEditorIcon]),
newNoteTitleFormat: application.getPreference(
PrefKey.NewNoteTitleFormat,
PrefDefaults[PrefKey.NewNoteTitleFormat],
),
customNoteTitleFormat: application.getPreference(
PrefKey.CustomNoteTitleFormat,
PrefDefaults[PrefKey.CustomNoteTitleFormat],
),
}
if (currentMode === 'global') {
setPreferences(globalValues)
} else {
setPreferences({
...globalValues,
...selectedTagPreferences,
})
}
}, [application, currentMode, selectedTagPreferences])
useEffect(() => {
reloadPreferences()
}, [reloadPreferences])
const changeGlobalPreferences = useCallback(
async (properties: Partial<TagPreferences>) => {
for (const key of Object.keys(properties)) {
const value = properties[key as keyof TagPreferences]
await application.setPreference(key as PrefKey, value).catch(console.error)
reloadPreferences()
}
},
[application, reloadPreferences],
)
const changeSystemViewPreferences = useCallback(
async (properties: Partial<TagPreferences>) => {
if (!selectedTag) {
return
}
if (!isSystemTag) {
return
}
const systemViewPreferences = application.getPreference(PrefKey.SystemViewPreferences) || {}
const systemViewPreferencesForTag = systemViewPreferences[selectedTag.uuid as SystemViewId] || {}
await application.setPreference(PrefKey.SystemViewPreferences, {
...systemViewPreferences,
[selectedTag.uuid as SystemViewId]: {
...systemViewPreferencesForTag,
...properties,
},
})
reloadPreferences()
},
[application, isSystemTag, reloadPreferences, selectedTag],
)
const changePreferences = useCallback(
async (properties: Partial<TagPreferences>) => {
if (currentMode === 'global') {
await changeGlobalPreferences(properties)
} else if (isSystemTag) {
await changeSystemViewPreferences(properties)
} else {
await application.changeAndSaveItem.execute<TagMutator>(selectedTag, (mutator) => {
mutator.preferences = {
...mutator.preferences,
...properties,
}
})
}
},
[currentMode, isSystemTag, changeGlobalPreferences, changeSystemViewPreferences, application, selectedTag],
)
const resetTagPreferences = useCallback(async () => {
if (isSystemTag) {
await application.setPreference(PrefKey.SystemViewPreferences, {
...application.getPreference(PrefKey.SystemViewPreferences),
[selectedTag.uuid as SystemViewId]: undefined,
})
reloadPreferences()
return
}
void application.changeAndSaveItem.execute<TagMutator>(selectedTag, (mutator) => {
mutator.preferences = undefined
})
}, [application, isSystemTag, reloadPreferences, selectedTag])
const toggleSortReverse = useCallback(() => {
void changePreferences({ sortReverse: !preferences.sortReverse })
}, [preferences, changePreferences])
const toggleSortBy = useCallback(
(sort: CollectionSortProperty) => {
if (preferences.sortBy === sort) {
toggleSortReverse()
} else {
void changePreferences({ sortBy: sort })
}
},
[preferences.sortBy, toggleSortReverse, changePreferences],
)
const toggleSortByDateModified = useCallback(() => {
toggleSortBy(CollectionSort.UpdatedAt)
}, [toggleSortBy])
const toggleSortByCreationDate = useCallback(() => {
toggleSortBy(CollectionSort.CreatedAt)
}, [toggleSortBy])
const toggleSortByTitle = useCallback(() => {
toggleSortBy(CollectionSort.Title)
}, [toggleSortBy])
const toggleHidePreview = useCallback(() => {
void changePreferences({ hideNotePreview: !preferences.hideNotePreview })
}, [preferences, changePreferences])
const toggleHideDate = useCallback(() => {
void changePreferences({ hideDate: !preferences.hideDate })
}, [preferences, changePreferences])
const toggleHideTags = useCallback(() => {
void changePreferences({ hideTags: !preferences.hideTags })
}, [preferences, changePreferences])
const toggleHidePinned = useCallback(() => {
void changePreferences({ hidePinned: !preferences.hidePinned })
}, [preferences, changePreferences])
const toggleShowArchived = useCallback(() => {
void changePreferences({ showArchived: !preferences.showArchived })
}, [preferences, changePreferences])
const toggleShowTrashed = useCallback(() => {
void changePreferences({ showTrashed: !preferences.showTrashed })
}, [preferences, changePreferences])
const toggleHideProtected = useCallback(() => {
void changePreferences({ hideProtected: !preferences.hideProtected })
}, [preferences, changePreferences])
const toggleEditorIcon = useCallback(() => {
void changePreferences({ hideEditorIcon: !preferences.hideEditorIcon })
}, [preferences, changePreferences])
const toggleEntryMode = useCallback(() => {
void changePreferences({ entryMode: isDailyEntry ? 'normal' : 'daily' })
}, [isDailyEntry, changePreferences])
const toggleTableView = useCallback(() => {
const useTableView = !preferences.useTableView
void changePreferences({ useTableView })
if (useTableView) {
paneController.setPaneLayout(PaneLayout.TableView)
}
}, [preferences.useTableView, changePreferences, paneController])
const toggleNotesListLayout = useCallback(() => {
const nextLayout = notesListLayout === 'tiles' ? 'rows' : 'tiles'
application.setPreference(PrefKey.NotesListLayout, nextLayout).catch(console.error)
}, [application, notesListLayout])
const isMobileScreen = useMediaQuery(MutuallyExclusiveMediaQueryBreakpoints.sm)
const isTableViewEnabled = Boolean(isFilesSmartView || preferences.useTableView)
const shouldHideNonApplicableOptions = isTableViewEnabled && !isMobileScreen
return (
<Menu className="text-sm" a11yLabel="Notes list options menu">
<div className="my-1 px-3 text-base font-semibold uppercase text-text lg:text-xs">Preferences for</div>
<div className={classNames('mt-1.5 flex w-full justify-between px-3', !controlsDisabled && 'mb-3')}>
<div className="flex items-center gap-1.5">
<TabButton label="Global" mode="global" currentMode={currentMode} setCurrentMode={setCurrentMode} />
<TabButton
label={selectedTag.title}
icon={selectedTag.iconString}
mode="tag"
currentMode={currentMode}
setCurrentMode={setCurrentMode}
/>
</div>
{currentMode === 'tag' && (
<button className="text-base lg:text-sm" onClick={resetTagPreferences}>
Reset
</button>
)}
</div>
{controlsDisabled && (
<NoSubscriptionBanner
className="m-2 mb-3 mt-2"
application={application}
title="Upgrade for per-tag preferences"
message={
DailyEntryModeEnabled
? 'Create powerful workflows and organizational layouts with per-tag display preferences and the all-new Daily Notebook calendar layout.'
: 'Create powerful workflows and organizational layouts with per-tag display preferences.'
}
/>
)}
<MenuSection title="Sort by">
<MenuRadioButtonItem
disabled={controlsDisabled || isDailyEntry}
className="py-2"
onClick={toggleSortByDateModified}
checked={preferences.sortBy === CollectionSort.UpdatedAt}
>
<div className="ml-1 flex flex-grow items-center justify-between md:ml-2">
<span>Date modified</span>
<SortIcon enabled={preferences.sortBy === CollectionSort.UpdatedAt} reverse={preferences.sortReverse} />
</div>
</MenuRadioButtonItem>
<MenuRadioButtonItem
disabled={controlsDisabled || isDailyEntry}
className="py-2"
onClick={toggleSortByCreationDate}
checked={preferences.sortBy === CollectionSort.CreatedAt}
>
<div className="ml-1 flex flex-grow items-center justify-between md:ml-2">
<span>Creation date</span>
<SortIcon enabled={preferences.sortBy === CollectionSort.CreatedAt} reverse={preferences.sortReverse} />
</div>
</MenuRadioButtonItem>
<MenuRadioButtonItem
disabled={controlsDisabled || isDailyEntry}
className="py-2"
onClick={toggleSortByTitle}
checked={preferences.sortBy === CollectionSort.Title}
>
<div className="ml-1 flex flex-grow items-center justify-between md:ml-2">
<span>Title</span>
<SortIcon enabled={preferences.sortBy === CollectionSort.Title} reverse={preferences.sortReverse} />
</div>
</MenuRadioButtonItem>
</MenuSection>
<MenuSection title="View">
{!shouldHideNonApplicableOptions && !isFilesSmartView && (
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hideNotePreview}
onChange={toggleHidePreview}
>
<div className="max-w-3/4 flex flex-col">Show note preview</div>
</MenuSwitchButtonItem>
)}
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hideDate}
onChange={toggleHideDate}
>
Show date
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hideTags}
onChange={toggleHideTags}
>
Show tags
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hideEditorIcon}
onChange={toggleEditorIcon}
>
Show icon
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={notesListLayout === 'tiles'}
onChange={toggleNotesListLayout}
>
Tiled list layout
</MenuSwitchButtonItem>
</MenuSection>
{!shouldHideNonApplicableOptions && (
<MenuSection title="Other">
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hidePinned}
onChange={toggleHidePinned}
>
Show pinned
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={!preferences.hideProtected}
onChange={toggleHideProtected}
>
Show protected
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={Boolean(preferences.showArchived)}
onChange={toggleShowArchived}
>
Show archived
</MenuSwitchButtonItem>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={Boolean(preferences.showTrashed)}
onChange={toggleShowTrashed}
>
Show trashed
</MenuSwitchButtonItem>
</MenuSection>
)}
{currentMode === 'tag' && !isSystemTag && DailyEntryModeEnabled && !isTableViewEnabled && (
<MenuSection>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={isDailyEntry}
onChange={toggleEntryMode}
>
<div className="flex flex-col pr-5">
<div className="flex flex-row items-center">
<div className="text-base font-semibold uppercase text-text lg:text-xs">Daily Notebook</div>
<Pill className="!py-0.5 px-1.5" style="success">
Labs
</Pill>
</div>
<div className="mt-1">Capture new notes daily with a calendar-based layout</div>
</div>
</MenuSwitchButtonItem>
</MenuSection>
)}
{currentMode === 'tag' && !isSystemTag && !isDailyEntry && (
<MenuSection>
<MenuSwitchButtonItem
disabled={controlsDisabled}
className="py-1 hover:bg-contrast focus:bg-info-backdrop"
checked={isTableViewEnabled}
onChange={toggleTableView}
>
<div className="flex flex-col pr-5">
<div className="flex flex-row items-center">
<div className="text-base font-semibold uppercase text-text lg:text-xs">Table view</div>
<Pill className="!py-0.5 px-1.5" style="success">
Labs
</Pill>
</div>
<div className="mt-1">Display the notes and files in the current tag in a table layout</div>
</div>
</MenuSwitchButtonItem>
</MenuSection>
)}
{!shouldHideNonApplicableOptions && (!isSystemTag || currentMode === 'global') && (
<MenuSection title="New note defaults">
<NewNotePreferences
disabled={controlsDisabled}
application={application}
selectedTag={selectedTag}
mode={currentMode}
changePreferencesCallback={changePreferences}
/>
</MenuSection>
)}
</Menu>
)
}
export default observer(DisplayOptionsMenu)