blob: 4b30fcc4ee7437465644af196c8b2123f65d8a1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
import React from 'react';
import { Row, Col } from 'reactstrap';
import { TimelineInfo } from '../data/timeline';
import { getHttpTimelineClient } from '../http/timeline';
import TimelineBoard from './TimelineBoard';
import OfflineBoard from './OfflineBoard';
const BoardWithoutUser: React.FC = () => {
const [publicTimelines, setPublicTimelines] = React.useState<
TimelineInfo[] | 'offline' | 'loading'
>('loading');
React.useEffect(() => {
let subscribe = true;
if (publicTimelines === 'loading') {
void getHttpTimelineClient()
.listTimeline({ visibility: 'Public' })
.then(
(timelines) => {
if (subscribe) {
setPublicTimelines(timelines);
}
},
() => {
setPublicTimelines('offline');
}
);
}
return () => {
subscribe = false;
};
}, [publicTimelines]);
return (
<Row className="my-2 justify-content-center">
{publicTimelines === 'offline' ? (
<Col sm="8" lg="6">
<OfflineBoard
onReload={() => {
setPublicTimelines('loading');
}}
/>
</Col>
) : (
<Col sm="8" lg="6">
<TimelineBoard
timelines={publicTimelines}
onReload={() => {
setPublicTimelines('loading');
}}
/>
</Col>
)}
</Row>
);
};
export default BoardWithoutUser;
|