Skip to content

Commit

Permalink
feat: 에러 페이지 구현 (#809)
Browse files Browse the repository at this point in the history
* feat: 에러 페이지 구현

* test: 에러 페이지 테스트에서 개선된 페이지의 텍스트를 반영

* feat: 대체 이미지 png로 설정
  • Loading branch information
pakxe authored and jinhokim98 committed Oct 24, 2024
1 parent 1b9aba2 commit 7b835c9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('ErrorCatcher', () => {
});

await waitFor(() => {
expect(screen.getByText('알 수 없는 오류입니다.')).toBeInTheDocument();
expect(screen.getByText('알 수 없는 오류가 발생했습니다.')).toBeInTheDocument();
});
});
});
24 changes: 19 additions & 5 deletions client/src/pages/ErrorPage/ErrorPage.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
import Top from '@components/Design/components/Top/Top';
import Image from '@components/Design/components/Image/Image';

import {MainLayout} from '@HDesign/index';
import {Flex, MainLayout, Text} from '@HDesign/index';

import getImageUrl from '@utils/getImageUrl';

const ErrorPage = () => {
return (
<MainLayout>
<Top>
<Top.Line text="알 수 없는 오류입니다." emphasize={['알 수 없는 오류입니다.']} />
</Top>
<Flex
justifyContent="center"
alignItems="center"
flexDirection="column"
gap="1rem"
height="80vh"
css={{alignContent: 'center'}}
>
<Image src={getImageUrl('cryingDog', 'webp')} fallbackSrc={getImageUrl('cryingDog', 'png')} width="160px" />
<Text size="subTitle">알 수 없는 오류가 발생했습니다.</Text>
<Text size="body" css={{textAlign: 'center'}}>
계속 발생한다면 잠시 후 다시 시도해주세요. <br />
인터넷 연결 상태가 좋지 않으면 발생할 수 있습니다.
</Text>
</Flex>
</MainLayout>
);
};
Expand Down

0 comments on commit 7b835c9

Please sign in to comment.