Skip to content

Commit f862ff9

Browse files
authored
Merge branch 'develop' into hotfix/epic-drop
2 parents e0b9735 + b593fd0 commit f862ff9

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

client/src/components/BackLogItem/index.tsx

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
import React, { useEffect, useState } from 'react';
1+
import React, { useEffect, useState, Suspense } from 'react';
22
import { useRecoilRefresher_UNSTABLE } from 'recoil';
33
import S from './style';
44
import arrow from '@public/icons/chevron-down.svg';
55

66
import { tasksSelector } from '@/recoil/story';
7-
import BackLogTaskContainer from '../BackLogTaskContainer';
7+
import { Spinner } from '@/lib/design';
8+
9+
const BackLogTaskContainer = React.lazy(() => import('../BackLogTaskContainer'));
810

911
const BackLogItem = ({ name, id }: { name: string; id: number }) => {
1012
const [clicked, setClicked] = useState(false);
@@ -28,7 +30,11 @@ const BackLogItem = ({ name, id }: { name: string; id: number }) => {
2830
<S.ToggleImg src={arrow} click={clicked} />
2931
</S.ToggleButton>
3032
</S.ItemContainer>
31-
{clicked && <BackLogTaskContainer storyId={id} />}
33+
{clicked && (
34+
<Suspense fallback={<Spinner widthLevel={8} heightValue={100} />}>
35+
<BackLogTaskContainer storyId={id} />
36+
</Suspense>
37+
)}
3238
</div>
3339
);
3440
};

client/src/stories/Spinner.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export default {
1515

1616
const Template: Story<SpinnerProps> = (args) => <Spinner {...args} />;
1717

18-
export const DefaultSearchBar = (args: SpinnerProps) => <Template {...args}></Template>;
18+
export const DefaultSpinner = (args: SpinnerProps) => <Template {...args}></Template>;

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"test:server": "yarn workspace server test",
1414
"test:client" : "yarn workspace client test",
1515
"bundle:client" : "yarn workspace client dev:bundle",
16+
"storybook" : "yarn workspace client storybook",
1617
"ci": "echo 'hello' && yarn install --frozen-lockfile",
1718
"lint": "eslint ./"
1819
},

0 commit comments

Comments
 (0)