File size: 11,307 Bytes
1e92f2d |
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 |
import './segment-boundary-trigger.css'
import { useCallback, useState, useRef, useMemo } from 'react'
import { Menu } from '@base-ui-components/react/menu'
import type {
SegmentBoundaryType,
SegmentNodeState,
} from '../../../userspace/app/segment-explorer-node'
import { normalizeBoundaryFilename } from '../../../../server/app-render/segment-explorer-path'
import { useClickOutsideAndEscape } from '../errors/dev-tools-indicator/utils'
const composeRefs = (...refs: (React.Ref<HTMLButtonElement> | undefined)[]) => {
return (node: HTMLButtonElement | null) => {
refs.forEach((ref) => {
if (typeof ref === 'function') {
ref(node)
} else if (ref) {
ref.current = node
}
})
}
}
export function SegmentBoundaryTrigger({
nodeState,
boundaries,
}: {
nodeState: SegmentNodeState
boundaries: Record<SegmentBoundaryType, string | null>
}) {
const currNode = nodeState
const { pagePath, boundaryType, setBoundaryType: onSelectBoundary } = currNode
const [isOpen, setIsOpen] = useState(false)
// TODO: move this shadowRoot ref util to a shared hook or into context
const [shadowRoot] = useState<ShadowRoot>(() => {
const ownerDocument = document
const portalNode = ownerDocument.querySelector('nextjs-portal')!
return portalNode.shadowRoot! as ShadowRoot
})
const shadowRootRef = useRef<ShadowRoot>(shadowRoot)
const triggerRef = useRef<HTMLButtonElement>(null)
const popupRef = useRef<HTMLDivElement>(null)
// Click outside of popup should close the menu
useClickOutsideAndEscape(
popupRef,
triggerRef,
isOpen,
() => {
setIsOpen(false)
},
triggerRef.current?.ownerDocument
)
const firstDefinedBoundary = Object.values(boundaries).find((v) => v !== null)
const possibleExtension =
(firstDefinedBoundary || '').split('.').pop() || 'js'
const fileNames = useMemo(() => {
return Object.fromEntries(
Object.entries(boundaries).map(([key, filePath]) => {
const fileName = normalizeBoundaryFilename(
(filePath || '').split('/').pop() || `${key}.${possibleExtension}`
)
return [key, fileName]
})
) as Record<keyof typeof boundaries, string>
}, [boundaries, possibleExtension])
const fileName = (pagePath || '').split('/').pop() || ''
const pageFileName = normalizeBoundaryFilename(
boundaryType
? `page.${possibleExtension}`
: fileName || `page.${possibleExtension}`
)
const triggerOptions = [
{
label: fileNames.loading,
value: 'loading',
icon: <LoadingIcon />,
disabled: !boundaries.loading,
},
{
label: fileNames.error,
value: 'error',
icon: <ErrorIcon />,
disabled: !boundaries.error,
},
{
label: fileNames['not-found'],
value: 'not-found',
icon: <NotFoundIcon />,
disabled: !boundaries['not-found'],
},
]
const resetOption = {
label: boundaryType ? 'Reset' : pageFileName,
value: 'reset',
icon: <ResetIcon />,
disabled: boundaryType === null,
}
const openInEditor = useCallback(({ filePath }: { filePath: string }) => {
const params = new URLSearchParams({
file: filePath,
isAppRelativePath: '1',
})
fetch(
`${
process.env.__NEXT_ROUTER_BASEPATH || ''
}/__nextjs_launch-editor?${params.toString()}`
// Log the failures to console, not track them as console errors in error overlay
).catch(console.warn)
}, [])
const handleSelect = useCallback(
(value: string) => {
switch (value) {
case 'not-found':
case 'loading':
case 'error':
onSelectBoundary(value)
break
case 'reset':
onSelectBoundary(null)
break
case 'open-editor':
if (pagePath) {
openInEditor({ filePath: pagePath })
}
break
default:
break
}
},
[onSelectBoundary, pagePath, openInEditor]
)
const MergedRefTrigger = (
triggerProps: React.ComponentProps<'button'> & {
ref?: React.Ref<HTMLButtonElement>
}
) => {
const mergedRef = composeRefs(triggerProps.ref, triggerRef)
return <Trigger {...triggerProps} ref={mergedRef} />
}
const hasBoundary = useMemo(() => {
const hasPageOrBoundary =
nodeState.type !== 'layout' && nodeState.type !== 'template'
return (
hasPageOrBoundary && Object.values(boundaries).some((v) => v !== null)
)
}, [nodeState.type, boundaries])
return (
<Menu.Root delay={0} modal={false} open={isOpen} onOpenChange={setIsOpen}>
<Menu.Trigger
className="segment-boundary-trigger"
data-nextjs-dev-overlay-segment-boundary-trigger-button
render={MergedRefTrigger}
disabled={!hasBoundary}
/>
{/* @ts-expect-error remove this expect-error once shadowRoot is supported as container */}
<Menu.Portal container={shadowRootRef}>
<Menu.Positioner
className="segment-boundary-dropdown-positioner"
side="bottom"
align="center"
sideOffset={6}
arrowPadding={8}
ref={popupRef}
>
<Menu.Popup className="segment-boundary-dropdown">
{
<Menu.Group>
<Menu.GroupLabel className="segment-boundary-group-label">
Toggle Overrides
</Menu.GroupLabel>
{triggerOptions.map((option) => (
<Menu.Item
key={option.value}
className="segment-boundary-dropdown-item"
onClick={() => handleSelect(option.value)}
disabled={option.disabled}
>
{option.icon}
{option.label}
</Menu.Item>
))}
</Menu.Group>
}
<Menu.Group>
{
<Menu.Item
key={resetOption.value}
className="segment-boundary-dropdown-item"
onClick={() => handleSelect(resetOption.value)}
disabled={resetOption.disabled}
>
{resetOption.icon}
{resetOption.label}
</Menu.Item>
}
</Menu.Group>
</Menu.Popup>
</Menu.Positioner>
</Menu.Portal>
</Menu.Root>
)
}
function LoadingIcon() {
return (
<svg
width="20px"
height="20px"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_2759_1866)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10 3.5C13.5899 3.5 16.5 6.41015 16.5 10C16.5 13.5899 13.5899 16.5 10 16.5C6.41015 16.5 3.5 13.5899 3.5 10C3.5 6.41015 6.41015 3.5 10 3.5ZM2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10ZM10.75 9.62402V6H9.25V9.875C9.25 10.1898 9.39858 10.486 9.65039 10.6748L11.5498 12.0996L12.1504 12.5498L13.0498 11.3496L12.4502 10.9004L10.75 9.62402Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_2759_1866">
<rect
width="16"
height="16"
fill="white"
transform="translate(2 2)"
/>
</clipPath>
</defs>
</svg>
)
}
function ErrorIcon() {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_2759_1881)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M3.5 7.30762V12.6924L7.30762 16.5H12.6924L16.5 12.6924V7.30762L12.6924 3.5H7.30762L3.5 7.30762ZM18 12.8994L17.9951 12.998C17.9724 13.2271 17.8712 13.4423 17.707 13.6064L13.6064 17.707L13.5332 17.7734C13.3806 17.8985 13.1944 17.9757 12.998 17.9951L12.8994 18H7.10059L7.00195 17.9951C6.80562 17.9757 6.6194 17.8985 6.4668 17.7734L6.39355 17.707L2.29297 13.6064C2.12883 13.4423 2.02756 13.2271 2.00488 12.998L2 12.8994V7.10059C2 6.83539 2.10546 6.58109 2.29297 6.39355L6.39355 2.29297C6.55771 2.12883 6.77294 2.02756 7.00195 2.00488L7.10059 2H12.8994L12.998 2.00488C13.2271 2.02756 13.4423 2.12883 13.6064 2.29297L17.707 6.39355C17.8945 6.58109 18 6.83539 18 7.10059V12.8994ZM9.25 5.75H10.75L10.75 10.75H9.25L9.25 5.75ZM10 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 10 12C9.44772 12 9 12.4477 9 13C9 13.5523 9.44772 14 10 14Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_2759_1881">
<rect
width="16"
height="16"
fill="white"
transform="translate(2 2)"
/>
</clipPath>
</defs>
</svg>
)
}
function NotFoundIcon() {
return (
<svg
width="20px"
height="20px"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10.5586 2.5C11.1341 2.50004 11.6588 2.8294 11.9091 3.34766L17.8076 15.5654C18.1278 16.2292 17.6442 16.9997 16.9072 17H3.09274C2.35574 16.9997 1.8721 16.2292 2.19235 15.5654L8.09079 3.34766C8.34109 2.8294 8.86583 2.50004 9.44137 2.5H10.5586ZM3.89059 15.5H16.1093L10.5586 4H9.44137L3.89059 15.5ZM9.24997 6.75H10.75L10.75 10.75H9.24997L9.24997 6.75ZM9.99997 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 9.99997 12C9.44768 12 8.99997 12.4477 8.99997 13C8.99997 13.5523 9.44768 14 9.99997 14Z"
fill="currentColor"
/>
</svg>
)
}
function ResetIcon() {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.96484 3C13.8463 3.00018 17 6.13012 17 10C17 13.8699 13.8463 16.9998 9.96484 17C7.62404 17 5.54877 15.8617 4.27051 14.1123L3.82812 13.5068L5.03906 12.6221L5.48145 13.2275C6.48815 14.6053 8.12092 15.5 9.96484 15.5C13.0259 15.4998 15.5 13.0335 15.5 10C15.5 6.96654 13.0259 4.50018 9.96484 4.5C7.42905 4.5 5.29544 6.19429 4.63867 8.5H8V10H2.75C2.33579 10 2 9.66421 2 9.25V4H3.5V7.2373C4.57781 4.74376 7.06749 3 9.96484 3Z"
fill="currentColor"
/>
</svg>
)
}
function SwitchIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg strokeLinejoin="round" viewBox="0 0 16 16" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M8.7071 2.39644C8.31658 2.00592 7.68341 2.00592 7.29289 2.39644L4.46966 5.21966L3.93933 5.74999L4.99999 6.81065L5.53032 6.28032L7.99999 3.81065L10.4697 6.28032L11 6.81065L12.0607 5.74999L11.5303 5.21966L8.7071 2.39644ZM5.53032 9.71966L4.99999 9.18933L3.93933 10.25L4.46966 10.7803L7.29289 13.6035C7.68341 13.9941 8.31658 13.9941 8.7071 13.6035L11.5303 10.7803L12.0607 10.25L11 9.18933L10.4697 9.71966L7.99999 12.1893L5.53032 9.71966Z"
fill="currentColor"
></path>
</svg>
)
}
function Trigger(props: React.ComponentProps<'button'>) {
return (
<button {...props}>
<span className="segment-boundary-trigger-text">
<SwitchIcon className="plus-icon" />
</span>
</button>
)
}
|