blob: 458166ac90c88ba080022591aef2092d5dacd401 (
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
62
|
import React from "react";
import { Link } from "react-router-dom";
import { Trans } from "react-i18next";
import { getAllCachedTimelineNames } from "../data/timeline";
import UserTimelineLogo from "../common/UserTimelineLogo";
import TimelineLogo from "../common/TimelineLogo";
export interface OfflineBoardProps {
onReload: () => void;
}
const OfflineBoard: React.FC<OfflineBoardProps> = ({ onReload }) => {
const [timelines, setTimelines] = React.useState<string[]>([]);
React.useEffect(() => {
let subscribe = true;
void getAllCachedTimelineNames().then((t) => {
if (subscribe) setTimelines(t);
});
return () => {
subscribe = false;
};
});
return (
<>
<Trans i18nKey="home.offlinePrompt">
0
<a
href="#"
onClick={(e) => {
onReload();
e.preventDefault();
}}
>
1
</a>
2
</Trans>
{timelines.map((timeline) => {
const isPersonal = timeline.startsWith("@");
const url = isPersonal
? `/users/${timeline.slice(1)}`
: `/timelines/${timeline}`;
return (
<div key={timeline} className="timeline-board-item">
{isPersonal ? (
<UserTimelineLogo className="icon" />
) : (
<TimelineLogo className="icon" />
)}
<Link to={url}>{timeline}</Link>
</div>
);
})}
</>
);
};
export default OfflineBoard;
|