aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/home/index.tsx
blob: 3c80fb0cdbfe84f90a7700ac0237679225f22ba4 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import * as React from "react";
import { useNavigate } from "react-router-dom";

import { highlightTimelineUsername } from "@/common";

import { Page } from "@/http/common";
import { getHttpBookmarkClient, TimelineBookmark } from "@/http/bookmark";

import SearchInput from "../common/SearchInput";
import TimelineListView from "./TimelineListView";
import WebsiteIntroduction from "./WebsiteIntroduction";

import "./index.css";

const highlightTimelineMessageMap = {
  loading: "home.loadingHighlightTimelines",
  done: "home.loadedHighlightTimelines",
  error: "home.errorHighlightTimelines",
} as const;

const HomeV2: React.FC = () => {
  const navigate = useNavigate();

  const [navText, setNavText] = React.useState<string>("");

  const [highlightTimelineState, setHighlightTimelineState] = React.useState<
    "loading" | "done" | "error"
  >("loading");
  const [highlightTimelines, setHighlightTimelines] = React.useState<
    Page<TimelineBookmark> | undefined
  >();

  React.useEffect(() => {
    if (highlightTimelineState === "loading") {
      let subscribe = true;
      void getHttpBookmarkClient()
        .list(highlightTimelineUsername)
        .then(
          (data) => {
            if (subscribe) {
              setHighlightTimelineState("done");
              setHighlightTimelines(data);
            }
          },
          () => {
            if (subscribe) {
              setHighlightTimelineState("error");
              setHighlightTimelines(undefined);
            }
          }
        );
      return () => {
        subscribe = false;
      };
    }
  }, [highlightTimelineState]);

  return (
    <>
      <SearchInput
        className="mx-2 my-3 home-search"
        value={navText}
        onChange={setNavText}
        onButtonClick={() => {
          navigate(`search?q=${navText}`);
        }}
        alwaysOneline
      />
      <WebsiteIntroduction className="m-2" />
      <TimelineListView
        headerText={highlightTimelineMessageMap[highlightTimelineState]}
        timelines={highlightTimelines?.items}
      />
    </>
  );
};

export default HomeV2;