@@ -2,6 +2,7 @@ import { Button } from '@affine/component/ui/button';
2
2
import { Trans } from '@affine/i18n' ;
3
3
import { useAFFiNEI18N } from '@affine/i18n/hooks' ;
4
4
import { useAsyncCallback } from '@toeverything/hooks/affine-async-hooks' ;
5
+ import { useTheme } from 'next-themes' ;
5
6
import {
6
7
type FC ,
7
8
type PropsWithChildren ,
@@ -10,7 +11,8 @@ import {
10
11
} from 'react' ;
11
12
12
13
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' ;
14
16
import * as styles from './error-detail.css' ;
15
17
16
18
export enum ErrorStatus {
@@ -30,8 +32,20 @@ export interface ErrorDetailProps extends PropsWithChildren {
30
32
}
31
33
32
34
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
+ ] ,
35
49
] ) ;
36
50
37
51
/**
@@ -49,6 +63,7 @@ export const ErrorDetail: FC<ErrorDetailProps> = props => {
49
63
const descriptions = Array . isArray ( description ) ? description : [ description ] ;
50
64
const [ isBtnLoading , setBtnLoading ] = useState ( false ) ;
51
65
const t = useAFFiNEI18N ( ) ;
66
+ const { resolvedTheme } = useTheme ( ) ;
52
67
53
68
const onBtnClick = useAsyncCallback ( async ( ) => {
54
69
try {
@@ -83,7 +98,11 @@ export const ErrorDetail: FC<ErrorDetailProps> = props => {
83
98
{ withoutImage ? null : (
84
99
< div
85
100
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
+ } }
87
106
/>
88
107
) }
89
108
</ div >
0 commit comments