Skip to content

Commit 48f4d6a

Browse files
committed
fix(core): error page 500 status dark mode (#5180)
close #5155
1 parent 246fbd8 commit 48f4d6a

File tree

3 files changed

+66
-4
lines changed

3 files changed

+66
-4
lines changed

packages/frontend/core/src/components/affine/affine-error-boundary/error-basic/error-detail.tsx

+23-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Button } from '@affine/component/ui/button';
22
import { Trans } from '@affine/i18n';
33
import { useAFFiNEI18N } from '@affine/i18n/hooks';
44
import { useAsyncCallback } from '@toeverything/hooks/affine-async-hooks';
5+
import { useTheme } from 'next-themes';
56
import {
67
type FC,
78
type PropsWithChildren,
@@ -10,7 +11,8 @@ import {
1011
} from 'react';
1112

1213
import imageUrlFor404 from '../error-assets/404-status.assets.svg';
13-
import imageUrlFor500 from '../error-assets/500-status.assets.svg';
14+
import imageUrlForDark500 from '../error-assets/dark-500-status.assets.svg';
15+
import imageUrlForLight500 from '../error-assets/light-500-status.assets.svg';
1416
import * as styles from './error-detail.css';
1517

1618
export enum ErrorStatus {
@@ -30,8 +32,20 @@ export interface ErrorDetailProps extends PropsWithChildren {
3032
}
3133

3234
const imageMap = new Map([
33-
[ErrorStatus.NotFound, imageUrlFor404],
34-
[ErrorStatus.Unexpected, imageUrlFor500],
35+
[
36+
ErrorStatus.NotFound,
37+
{
38+
light: imageUrlFor404, // TODO: Ask designer for dark/light mode image.
39+
dark: imageUrlFor404,
40+
},
41+
],
42+
[
43+
ErrorStatus.Unexpected,
44+
{
45+
light: imageUrlForLight500, // TODO: Split assets lib and use image hook to handle light and dark.
46+
dark: imageUrlForDark500,
47+
},
48+
],
3549
]);
3650

3751
/**
@@ -49,6 +63,7 @@ export const ErrorDetail: FC<ErrorDetailProps> = props => {
4963
const descriptions = Array.isArray(description) ? description : [description];
5064
const [isBtnLoading, setBtnLoading] = useState(false);
5165
const t = useAFFiNEI18N();
66+
const { resolvedTheme } = useTheme();
5267

5368
const onBtnClick = useAsyncCallback(async () => {
5469
try {
@@ -83,7 +98,11 @@ export const ErrorDetail: FC<ErrorDetailProps> = props => {
8398
{withoutImage ? null : (
8499
<div
85100
className={styles.errorImage}
86-
style={{ backgroundImage: `url(${imageMap.get(status)})` }}
101+
style={{
102+
backgroundImage: `url(${imageMap.get(status)?.[
103+
resolvedTheme as 'light' | 'dark'
104+
]})`,
105+
}}
87106
/>
88107
)}
89108
</div>

0 commit comments

Comments
 (0)