diff options
author | crupest <crupest@outlook.com> | 2023-08-02 02:52:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-08-02 02:52:07 +0800 |
commit | 645a88e7e35d15cec6106709c42b071bec045e0d (patch) | |
tree | 8c34d8ac3ba177f725e31b55bdf689a303cfee9a /FrontEnd/src/migrating/center/index.tsx | |
parent | 0c5c9d51c51d07aecb6f4a01586c81c824141cb2 (diff) | |
download | timeline-645a88e7e35d15cec6106709c42b071bec045e0d.tar.gz timeline-645a88e7e35d15cec6106709c42b071bec045e0d.tar.bz2 timeline-645a88e7e35d15cec6106709c42b071bec045e0d.zip |
...
Diffstat (limited to 'FrontEnd/src/migrating/center/index.tsx')
-rw-r--r-- | FrontEnd/src/migrating/center/index.tsx | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/FrontEnd/src/migrating/center/index.tsx b/FrontEnd/src/migrating/center/index.tsx new file mode 100644 index 00000000..77af2c20 --- /dev/null +++ b/FrontEnd/src/migrating/center/index.tsx @@ -0,0 +1,60 @@ +import * as React from "react"; +import { useNavigate } from "react-router-dom"; + +import { useUserLoggedIn } from "@/services/user"; + +import SearchInput from "../common/SearchInput"; +import Button from "../common/button/Button"; +import CenterBoards from "./CenterBoards"; +import TimelineCreateDialog from "./TimelineCreateDialog"; + +import "./index.css"; + +const HomePage: React.FC = () => { + const navigate = useNavigate(); + + const user = useUserLoggedIn(); + + const [navText, setNavText] = React.useState<string>(""); + + const [dialog, setDialog] = React.useState<"create" | null>(null); + + return ( + <> + <div className="container"> + <div className="row my-3 justify-content-center"> + <div className="col col-12 col-md-8"> + <SearchInput + className="justify-content-center" + value={navText} + onChange={setNavText} + onButtonClick={() => { + navigate(`search?q=${navText}`); + }} + additionalButton={ + user != null && ( + <Button + text="home.createButton" + color="success" + onClick={() => { + setDialog("create"); + }} + /> + ) + } + /> + </div> + </div> + <CenterBoards /> + </div> + <TimelineCreateDialog + open={dialog === "create"} + close={() => { + setDialog(null); + }} + /> + </> + ); +}; + +export default HomePage; |