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
|
"use client"
import { Suspense, useCallback, useEffect, useState } from "react"
import { Group, Panel, Separator, useDefaultLayout } from "react-resizable-panels"
import { useUserInterfaceStore } from "@/lib/stores/user-interface-store"
import { classNames } from "@/lib/utilities"
import { useIsMobile } from "@/lib/hooks/use-is-mobile"
import { ErrorBoundary } from "./error-boundary"
import { SidebarContent } from "./sidebar-content"
import { CommandPalette } from "./command-palette"
import { AddFeedDialog } from "./add-feed-dialog"
import { SearchOverlay } from "./search-overlay"
import { KeyboardShortcutsDialog } from "./keyboard-shortcuts-dialog"
import { MfaChallenge } from "./mfa-challenge"
import { useKeyboardNavigation } from "@/lib/hooks/use-keyboard-navigation"
import { createSupabaseBrowserClient } from "@/lib/supabase/client"
const DENSITY_FONT_SIZE_MAP: Record<string, string> = {
compact: "0.875rem",
default: "1rem",
spacious: "1.125rem",
}
export function ReaderLayoutShell({
sidebarFooter,
children,
}: {
sidebarFooter: React.ReactNode
children: React.ReactNode
}) {
const [requiresMfaVerification, setRequiresMfaVerification] = useState(false)
const [isMfaCheckComplete, setIsMfaCheckComplete] = useState(false)
const isSidebarCollapsed = useUserInterfaceStore(
(state) => state.isSidebarCollapsed
)
const toggleSidebar = useUserInterfaceStore((state) => state.toggleSidebar)
const setSidebarCollapsed = useUserInterfaceStore(
(state) => state.setSidebarCollapsed
)
const displayDensity = useUserInterfaceStore(
(state) => state.displayDensity
)
const isSearchOpen = useUserInterfaceStore((state) => state.isSearchOpen)
const setSearchOpen = useUserInterfaceStore((state) => state.setSearchOpen)
const focusedPanel = useUserInterfaceStore((state) => state.focusedPanel)
const focusFollowsInteraction = useUserInterfaceStore(
(state) => state.focusFollowsInteraction
)
const isMobile = useIsMobile()
const [sidebarMinimumWidth, setSidebarMinimumWidth] = useState("150px")
const [sidebarDefaultWidth, setSidebarDefaultWidth] = useState("220px")
const measureSidebarWidths = useCallback(() => {
const firstNavigationItem = document.querySelector("[data-sidebar-nav-item]")
if (!firstNavigationItem) return
const canvas = document.createElement("canvas")
const canvasContext = canvas.getContext("2d")
if (!canvasContext) return
const children = firstNavigationItem.querySelectorAll(":scope > *")
let totalTextWidth = 0
for (const child of children) {
const computedStyle = getComputedStyle(child)
canvasContext.font = `${computedStyle.fontWeight} ${computedStyle.fontSize} ${computedStyle.fontFamily}`
totalTextWidth += Math.ceil(
canvasContext.measureText(child.textContent ?? "").width
)
}
if (children.length < 2) {
const parentStyle = getComputedStyle(firstNavigationItem)
canvasContext.font = `400 0.625rem ${parentStyle.fontFamily}`
totalTextWidth += Math.ceil(canvasContext.measureText("999+").width)
}
const linkHorizontalPadding = 16
const navigationContainerPadding = 16
const minimumGap = 8
const measuredMinimumWidth =
totalTextWidth +
linkHorizontalPadding +
navigationContainerPadding +
minimumGap
setSidebarMinimumWidth(`${measuredMinimumWidth}px`)
setSidebarDefaultWidth(`${Math.round(measuredMinimumWidth * 1.5)}px`)
}, [])
const sidebarLayout = useDefaultLayout({
id: "asa-sidebar-layout",
panelIds: ["sidebar", "main-content"],
storage: typeof window !== "undefined" ? localStorage : { getItem: () => null, setItem: () => {} },
})
useKeyboardNavigation()
useEffect(() => {
if (isSidebarCollapsed || isMobile) return
const timeoutIdentifier = setTimeout(measureSidebarWidths, 100)
return () => clearTimeout(timeoutIdentifier)
}, [isSidebarCollapsed, isMobile, measureSidebarWidths])
useEffect(() => {
async function checkAssuranceLevel() {
const supabaseClient = createSupabaseBrowserClient()
const { data } = await supabaseClient.auth.mfa.getAuthenticatorAssuranceLevel()
if (
data &&
data.currentLevel === "aal1" &&
data.nextLevel === "aal2"
) {
setRequiresMfaVerification(true)
}
setIsMfaCheckComplete(true)
}
checkAssuranceLevel()
}, [])
useEffect(() => {
if (window.innerWidth < 768) {
setSidebarCollapsed(true)
}
}, [setSidebarCollapsed])
useEffect(() => {
document.body.style.setProperty(
"--base-font-size",
DENSITY_FONT_SIZE_MAP[displayDensity] ?? "0.8125rem"
)
}, [displayDensity])
useEffect(() => {
if (!focusFollowsInteraction) return
function handlePointerDown(event: PointerEvent) {
const target = event.target as HTMLElement
const zone = target.closest("[data-panel-zone]")
if (!zone) return
const panelZone = zone.getAttribute("data-panel-zone")
if (
panelZone === "sidebar" ||
panelZone === "entryList" ||
panelZone === "detailPanel"
) {
useUserInterfaceStore.getState().setFocusedPanel(panelZone)
}
}
function handleScroll(event: Event) {
const target = event.target as HTMLElement
if (!target || !target.closest) return
const zone = target.closest("[data-panel-zone]")
if (!zone) return
const panelZone = zone.getAttribute("data-panel-zone")
if (
panelZone === "sidebar" ||
panelZone === "entryList" ||
panelZone === "detailPanel"
) {
const currentPanel = useUserInterfaceStore.getState().focusedPanel
if (currentPanel !== panelZone) {
useUserInterfaceStore.getState().setFocusedPanel(panelZone)
}
}
}
document.addEventListener("pointerdown", handlePointerDown)
document.addEventListener("scroll", handleScroll, true)
return () => {
document.removeEventListener("pointerdown", handlePointerDown)
document.removeEventListener("scroll", handleScroll, true)
}
}, [focusFollowsInteraction])
if (!isMfaCheckComplete) {
return (
<div className="flex h-screen items-center justify-center bg-background-primary">
<span className="text-text-dim">loading ...</span>
</div>
)
}
if (requiresMfaVerification) {
return <MfaChallenge onVerified={() => setRequiresMfaVerification(false)} />
}
return (
<div className="flex h-screen">
{isMobile ? (
<>
<div
className={classNames(
"fixed inset-0 z-30 bg-black/50 transition-opacity",
!isSidebarCollapsed
? "pointer-events-auto opacity-100"
: "pointer-events-none opacity-0"
)}
onClick={toggleSidebar}
/>
<aside
data-panel-zone="sidebar"
className={classNames(
"fixed z-40 flex h-full w-64 shrink-0 flex-col border-r border-border bg-background-secondary transition-transform duration-200",
isSidebarCollapsed ? "-translate-x-full" : "translate-x-0"
)}
>
<div className="flex items-center justify-between p-4">
<h2 className="text-text-primary">asa.news</h2>
<button
type="button"
onClick={toggleSidebar}
className="px-1 py-0.5 text-lg leading-none text-text-dim transition-colors hover:text-text-secondary"
>
×
</button>
</div>
<ErrorBoundary>
<Suspense>
<SidebarContent />
</Suspense>
</ErrorBoundary>
{sidebarFooter}
</aside>
<main className="flex-1 overflow-hidden">
<div className="flex h-full flex-col">
{isSidebarCollapsed && (
<div className="flex items-center border-b border-border px-2 py-1">
<button
type="button"
onClick={toggleSidebar}
className="px-2 py-1 text-lg leading-none text-text-secondary transition-colors hover:text-text-primary"
>
☰
</button>
</div>
)}
<div className="flex-1 overflow-hidden">{children}</div>
</div>
</main>
</>
) : (
<div className="flex-1 overflow-hidden">
<Group
orientation="horizontal"
defaultLayout={sidebarLayout.defaultLayout}
onLayoutChanged={sidebarLayout.onLayoutChanged}
>
{!isSidebarCollapsed && (
<>
<Panel id="sidebar" defaultSize={sidebarDefaultWidth} minSize={sidebarMinimumWidth} maxSize="35%">
<aside
data-panel-zone="sidebar"
className={classNames(
"flex h-full flex-col border-r border-border bg-background-secondary",
focusedPanel === "sidebar"
? "border-r-text-dim"
: ""
)}
>
<div className="flex items-center justify-between p-4">
<h2 className="text-text-primary">asa.news</h2>
<button
type="button"
onClick={toggleSidebar}
className="px-1 py-0.5 text-lg leading-none text-text-dim transition-colors hover:text-text-secondary"
>
×
</button>
</div>
<ErrorBoundary>
<Suspense>
<SidebarContent />
</Suspense>
</ErrorBoundary>
{sidebarFooter}
</aside>
</Panel>
<Separator className="w-px bg-border transition-colors hover:bg-text-dim" />
</>
)}
<Panel id="main-content">
<main className="h-full overflow-hidden">
<div className="flex h-full flex-col">
{isSidebarCollapsed && (
<div className="flex items-center border-b border-border px-2 py-1">
<button
type="button"
onClick={toggleSidebar}
className="px-2 py-1 text-lg leading-none text-text-secondary transition-colors hover:text-text-primary"
>
☰
</button>
</div>
)}
<div className="flex-1 overflow-hidden">{children}</div>
</div>
</main>
</Panel>
</Group>
</div>
)}
<CommandPalette />
<AddFeedDialog />
{isSearchOpen && (
<SearchOverlay onClose={() => setSearchOpen(false)} />
)}
<KeyboardShortcutsDialog />
</div>
)
}
|