Skip to content

Commit c10fc99

Browse files
authored
Merge pull request #137 from hello-slide/fix/show-aniamtion
Fix/show aniamtion
2 parents 4022115 + 462add8 commit c10fc99

File tree

23 files changed

+211
-236
lines changed

23 files changed

+211
-236
lines changed

@types/changelog.d.ts

-13
This file was deleted.

components/about/AboutPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const AboutPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="HelloSlideについて">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

components/changelog/ChangelogPage.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
* Copyright (C) 2021 hello-slide
88
**********************************************************/
99
import {Box, Center, Text, Flex, Spacer, Divider} from '@chakra-ui/react';
10-
import ChangeLogType from '../../@types/changelog';
10+
import {ChangelogData} from '../../utils/changelog/parse';
1111
import InfoText from '../common/InfoText';
12+
import Markdown from '../markdown/Markdown';
1213

13-
const ChangelogPage: React.FC<{logData: ChangeLogType[]}> = ({logData}) => {
14+
const ChangelogPage: React.FC<{logData: ChangelogData[]}> = ({logData}) => {
1415
return (
1516
<InfoText title="変更履歴">
1617
{logData.map(value => {
1718
return (
1819
<Center key={value.version}>
1920
<Box
20-
width={{base: '700px', sm: '80%', md: '700px'}}
21+
width={{base: '80%', sm: '80%', md: '700px'}}
2122
margin="1rem 0 1rem 0"
2223
>
2324
<Flex>
@@ -41,7 +42,9 @@ const ChangelogPage: React.FC<{logData: ChangeLogType[]}> = ({logData}) => {
4142
</Flex>
4243
</Flex>
4344
<Divider borderWidth="1px" />
44-
<Box margin=".5rem 1rem 0 1rem">{value.text}</Box>
45+
<Box margin="0 1rem 0 1rem">
46+
<Markdown text={value.details} />
47+
</Box>
4548
</Box>
4649
</Center>
4750
);

components/common/Load.tsx

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/**********************************************************
2+
* Load Spinner
3+
*
4+
* @author Yuto Watanabe <[email protected]>
5+
* @version 1.0.0
6+
*
7+
* Copyright (C) 2021 hello-slide
8+
**********************************************************/
9+
import {Box, Spinner, Flex} from '@chakra-ui/react';
10+
import React from 'react';
11+
12+
const Load: React.FC<{isLoad: boolean}> = ({isLoad}) => {
13+
return (
14+
<>
15+
{!isLoad || (
16+
<>
17+
<Box
18+
backgroundColor="gray.400"
19+
opacity=".5"
20+
position="fixed"
21+
width="100vw"
22+
height="100vh"
23+
zIndex="9999"
24+
top="0"
25+
left="0"
26+
></Box>
27+
<Flex
28+
width="100vw"
29+
height="100vh"
30+
position="fixed"
31+
top="0"
32+
left="0"
33+
zIndex="9999"
34+
flexDirection="column"
35+
justifyContent="center"
36+
alignItems="center"
37+
>
38+
<Spinner thickness="4px" speed="0.65s" color="blue.500" size="xl" />
39+
</Flex>
40+
</>
41+
)}
42+
</>
43+
);
44+
};
45+
46+
export default Load;

components/common/Loading.tsx

+2-30
Original file line numberDiff line numberDiff line change
@@ -6,42 +6,14 @@
66
*
77
* Copyright (C) 2021 hello-slide
88
**********************************************************/
9-
import {Box, Spinner, Flex} from '@chakra-ui/react';
109
import {useRecoilValue} from 'recoil';
1110
import {LoadState} from '../../utils/state/atom';
11+
import Load from './Load';
1212

1313
const Loading = () => {
1414
const isLoad = useRecoilValue(LoadState);
1515

16-
return (
17-
<>
18-
<Box
19-
backgroundColor="gray.400"
20-
opacity=".5"
21-
position="fixed"
22-
width="100vw"
23-
height="100vh"
24-
zIndex="9999"
25-
top="0"
26-
left="0"
27-
hidden={!isLoad}
28-
></Box>
29-
<Flex
30-
width="100vw"
31-
height="100vh"
32-
position="fixed"
33-
top="0"
34-
left="0"
35-
zIndex="9999"
36-
flexDirection="column"
37-
justifyContent="center"
38-
alignItems="center"
39-
hidden={!isLoad}
40-
>
41-
<Spinner thickness="4px" speed="0.65s" color="blue.500" size="xl" />
42-
</Flex>
43-
</>
44-
);
16+
return <Load isLoad={isLoad} />;
4517
};
4618

4719
export default Loading;

components/markdown/MdComponents/Headers.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const H3: React.FC = ({children}) => {
4343

4444
export const H4: React.FC = ({children}) => {
4545
return (
46-
<Box marginBottom="1.5rem" marginTop="4rem">
46+
<Box marginBottom="1rem" marginTop="1.5rem">
4747
<Heading fontSize="1.4rem" paddingLeft=".5rem">
4848
{children}
4949
</Heading>
@@ -53,7 +53,7 @@ export const H4: React.FC = ({children}) => {
5353

5454
export const H5: React.FC = ({children}) => {
5555
return (
56-
<Box marginBottom="1.5rem" marginTop="4rem">
56+
<Box marginBottom="1rem" marginTop="1.5rem">
5757
<Heading fontSize="1.3rem" paddingLeft=".5rem">
5858
{children}
5959
</Heading>
@@ -63,7 +63,7 @@ export const H5: React.FC = ({children}) => {
6363

6464
export const H6: React.FC = ({children}) => {
6565
return (
66-
<Box marginBottom="1.5rem" marginTop="4rem">
66+
<Box marginBottom="1rem" marginTop="1.5rem">
6767
<Heading fontSize="1.2rem" paddingLeft=".5rem">
6868
{children}
6969
</Heading>

components/privacyPolicy/PrivacyPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const PrivacyPage: React.FC<{contents: string}> = ({contents}) => {
1414
return (
1515
<InfoText title="プライバシーポリシー">
1616
<Center>
17-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
17+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1818
<Markdown text={contents} />
1919
</Box>
2020
</Center>

components/question/QuestionPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const QuestionPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="よくある質問">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

components/show/ShowController.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ import SlidePageData from '../../@types/pageItem';
1414
import useShowClose from '../../hooks/useShowClose';
1515
import GetPage from '../../utils/api/getPage';
1616
import ListPages from '../../utils/api/listPage';
17-
import {SlideshowDataState, LoadState} from '../../utils/state/atom';
17+
import {SlideshowDataState} from '../../utils/state/atom';
18+
import Load from '../common/Load';
1819
import ChangeContents from './ChangeContetns';
1920

2021
const ShowController: React.FC<{id: string}> = ({id}) => {
2122
const toast = useToast();
2223
const setSlideshowData = useSetRecoilState(SlideshowDataState);
2324
const [index, setIndex] = React.useState(0);
2425
const [pageList, setPageList] = React.useState<Page[]>([]);
25-
const setIsLoad = useSetRecoilState(LoadState);
26+
const [load, setIsLoad] = React.useState(false);
2627
const closeShow = useShowClose();
2728
let maxPage = 3; // header page * 2 and end page.
2829

@@ -134,6 +135,7 @@ const ShowController: React.FC<{id: string}> = ({id}) => {
134135

135136
return (
136137
<>
138+
<Load isLoad={load} />
137139
<Flex
138140
position="absolute"
139141
zIndex="1000"

components/terms/TermsPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const TermsPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="利用規約">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

components/usage/UsagePage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const UsagePage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="使い方">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

components/visitor/VisitorController.tsx

+21
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,42 @@
77
* Copyright (C) 2021 hello-slide
88
**********************************************************/
99
import React from 'react';
10+
import {useSetRecoilState} from 'recoil';
1011
import useVisitorSocket from '../../hooks/useVisitorSocket';
12+
import {LoadState} from '../../utils/state/atom';
1113
import Home from './contents/Home';
1214
import Load from './contents/Load';
1315
import Question from './contents/Question';
1416
import Quiz from './contents/Quiz';
1517

1618
const VisitorController: React.FC<{id: string | string[]}> = ({id}) => {
1719
const [topic, isEnd, setId, setAnswer] = useVisitorSocket();
20+
const setLoad = useSetRecoilState(LoadState);
1821

1922
React.useEffect(() => {
2023
if (id && typeof id === 'string') {
2124
setId(id);
2225
}
2326
}, [id]);
2427

28+
React.useEffect(() => {
29+
let isMount = true;
30+
if (!topic?.a) {
31+
setLoad(true);
32+
33+
setTimeout(() => {
34+
if (isMount) {
35+
setLoad(false);
36+
}
37+
}, 1000);
38+
}
39+
40+
return () => {
41+
setLoad(false);
42+
isMount = false;
43+
};
44+
}, [topic]);
45+
2546
if (isEnd) {
2647
return <Home />;
2748
} else {

components/visitor/VisitorPage.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
**********************************************************/
99
import {Box} from '@chakra-ui/react';
1010
import React from 'react';
11+
import NoSSR from 'react-no-ssr';
1112
import VisitorController from './VisitorController';
1213

1314
const VisitorPage: React.FC<{id: string | string[]}> = ({id}) => {
@@ -22,7 +23,9 @@ const VisitorPage: React.FC<{id: string | string[]}> = ({id}) => {
2223

2324
return (
2425
<Box ref={ref} width="100%" height="100vh">
25-
<VisitorController id={id} />
26+
<NoSSR>
27+
<VisitorController id={id} />
28+
</NoSSR>
2629
</Box>
2730
);
2831
};

components/visitor/contents/Load.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ const Load = () => {
1414
<Center height="100%">
1515
<Box>
1616
<Heading>しばらくお待ち下さい...</Heading>
17-
<Center marginY="2rem">
18-
<Spinner size="xl" />
19-
</Center>
2017
</Box>
2118
</Center>
2219
);

components/visitor/contents/Quiz.tsx

+7-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import {Box, Center, Heading, SimpleGrid} from '@chakra-ui/react';
1010
import React from 'react';
1111
import Confetti from 'react-confetti';
12-
import useWindowSize from 'react-use/lib/useWindowSize';
1312
import {Topic} from '../../../@types/socket';
1413
import {VisitorAns} from '../../../@types/socket';
1514

@@ -28,8 +27,6 @@ const Quiz: React.FC<{
2827
const [result, setResult] = React.useState<Result>(Result.NoResult);
2928
const [lock, setLock] = React.useState(false);
3029

31-
const {width, height} = useWindowSize();
32-
3330
React.useEffect(() => {
3431
setAnswerIndex(10);
3532
setLock(false);
@@ -67,8 +64,13 @@ const Quiz: React.FC<{
6764
const Celebration = () => {
6865
switch (result) {
6966
case Result.Pass:
70-
console.log('pass');
71-
return <Confetti width={width} height={height} recycle={false} />;
67+
return (
68+
<Confetti
69+
width={screen.width}
70+
height={screen.height}
71+
recycle={false}
72+
/>
73+
);
7274
case Result.Fail:
7375
// TODO: add fail animation.
7476
return <></>;

contents/changelog.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[
22
{
33
"version": "1.0.0",
4-
"date": "2021/09/13",
5-
"text": "初回リリース"
4+
"date": "2021/09/13"
5+
},
6+
{
7+
"version": "1.0.1",
8+
"date": "2021/09/15"
69
}
710
]

contents/changelogs/1.0.0.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#### 祝! 初回リリース
2+
3+
やっと、初回リリースしました。
4+
5+
6月あたりに、「夏休みに大きなプロジェクトを回したいっ!!」と考えてから数ヶ月がたち実際にサービスをリリースできたことは誇っていいのではないのでしょうか。いや、私は誇ります自分すげーーーーー

contents/changelogs/1.0.1.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#### バグ修正などしました
2+
3+
私、学生なので夏休み中は時間取れたんですけど授業が始まってしまったのでこれから更新遅くなりそう…
4+
(インターンもしたいお金欲しいサーバー代結構きつい…)
5+
6+
- リアルタイム時にホストがページを移行してすぐに回答DBを削除する処理が走るため数秒ロード中にした
7+
- 参加者がクイズで正解したときの紙吹雪が途中で終わってしまう問題を修正。issue: [#135](https://github.com/hello-slide/front/issues/135)
8+
- 全画面でスライドショーを開始した場合にロードの画面(スピナー)が表示されない問題を修正。issue: [#129](https://github.com/hello-slide/front/issues/129)
9+
- Cookie処理エラーを修正。issue: [#136](https://github.com/hello-slide/front/issues/136)

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hello-slide",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -35,7 +35,6 @@
3535
"react-icons": "^4.2.0",
3636
"react-markdown": "^7.0.1",
3737
"react-no-ssr": "^1.1.0",
38-
"react-use": "^17.3.1",
3938
"recharts": "^2.1.2",
4039
"recoil": "^0.4.1",
4140
"screenfull": "^5.1.0"

0 commit comments

Comments
 (0)