-
Notifications
You must be signed in to change notification settings - Fork 27.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57e4e81
commit c4d42c9
Showing
3 changed files
with
111 additions
and
9 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
...components/Errors/error-overlay-floating-header/error-overlay-floating-header.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import type { Meta, StoryObj } from '@storybook/react' | ||
import { ErrorOverlayFloatingHeader } from './error-overlay-floating-header' | ||
import { withShadowPortal } from '../../../storybook/with-shadow-portal' | ||
|
||
const meta: Meta<typeof ErrorOverlayFloatingHeader> = { | ||
title: 'ErrorOverlayFloatingHeader', | ||
component: ErrorOverlayFloatingHeader, | ||
parameters: { | ||
layout: 'fullscreen', | ||
}, | ||
decorators: [withShadowPortal], | ||
} | ||
|
||
export default meta | ||
type Story = StoryObj<typeof ErrorOverlayFloatingHeader> | ||
|
||
export const Default: Story = { | ||
args: { | ||
readyErrors: [ | ||
{ | ||
id: 0, | ||
runtime: true, | ||
error: new Error('First error message'), | ||
frames: [], | ||
}, | ||
{ | ||
id: 1, | ||
runtime: true, | ||
error: new Error('Second error message'), | ||
frames: [], | ||
}, | ||
{ | ||
id: 2, | ||
runtime: true, | ||
error: new Error('Third error message'), | ||
frames: [], | ||
}, | ||
], | ||
activeIdx: 1, | ||
versionInfo: { | ||
installed: '15.0.0', | ||
staleness: 'stale-major', | ||
}, | ||
}, | ||
} |
55 changes: 55 additions & 0 deletions
55
...nternal/components/Errors/error-overlay-floating-header/error-overlay-floating-header.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import type { ReadyRuntimeError } from '../../../helpers/get-error-by-type' | ||
import type { VersionInfo } from '../../../../../../../../server/dev/parse-version-info' | ||
|
||
import { ErrorPagination } from '../ErrorPagination/ErrorPagination' | ||
import { VersionStalenessInfo } from '../../VersionStalenessInfo' | ||
import { noop as css } from '../../../helpers/noop-template' | ||
|
||
type ErrorOverlayFloatingHeaderProps = { | ||
readyErrors?: ReadyRuntimeError[] | ||
activeIdx?: number | ||
setActiveIndex?: (index: number) => void | ||
versionInfo?: VersionInfo | ||
} | ||
|
||
export function ErrorOverlayFloatingHeader({ | ||
readyErrors, | ||
activeIdx, | ||
setActiveIndex, | ||
versionInfo, | ||
}: ErrorOverlayFloatingHeaderProps) { | ||
return ( | ||
<div className="error-overlay-floating-header"> | ||
{/* TODO: better passing data instead of nullish coalescing */} | ||
<ErrorPagination | ||
readyErrors={readyErrors ?? []} | ||
activeIdx={activeIdx ?? 0} | ||
onActiveIndexChange={setActiveIndex ?? (() => {})} | ||
/> | ||
<VersionStalenessInfo versionInfo={versionInfo} /> | ||
</div> | ||
) | ||
} | ||
|
||
export const styles = css` | ||
.error-overlay-floating-header { | ||
display: flex; | ||
width: 100%; | ||
margin-right: auto; | ||
margin-left: auto; | ||
margin-bottom: var(--size-2); | ||
outline: none; | ||
@media (min-width: 576px) { | ||
max-width: 540px; | ||
} | ||
@media (min-width: 768px) { | ||
max-width: 720px; | ||
} | ||
@media (min-width: 992px) { | ||
max-width: 960px; | ||
} | ||
} | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters