aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/center/BoardWithUser.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-04-16 17:43:16 +0800
committercrupest <crupest@outlook.com>2021-04-16 17:43:16 +0800
commit3fd4375920c7692082f6e8e91d763ec5c0a1d72a (patch)
treee0523cb6c73ed1c53c99f823ebbd3395165e388d /FrontEnd/src/app/views/center/BoardWithUser.tsx
parent9c0053cd70593bf6add0eab4dbb91a8479d56821 (diff)
downloadtimeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.tar.gz
timeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.tar.bz2
timeline-3fd4375920c7692082f6e8e91d763ec5c0a1d72a.zip
...
Diffstat (limited to 'FrontEnd/src/app/views/center/BoardWithUser.tsx')
-rw-r--r--FrontEnd/src/app/views/center/BoardWithUser.tsx111
1 files changed, 111 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/center/BoardWithUser.tsx b/FrontEnd/src/app/views/center/BoardWithUser.tsx
new file mode 100644
index 00000000..3263c745
--- /dev/null
+++ b/FrontEnd/src/app/views/center/BoardWithUser.tsx
@@ -0,0 +1,111 @@
+import React from "react";
+import { Row, Col } from "react-bootstrap";
+import { useTranslation } from "react-i18next";
+
+import { AuthUser } from "@/services/user";
+import { pushAlert } from "@/services/alert";
+
+import { getHttpHighlightClient } from "@/http/highlight";
+import { getHttpTimelineClient } from "@/http/timeline";
+import { getHttpBookmarkClient } from "@/http/bookmark";
+
+import TimelineBoard from "./TimelineBoard";
+
+const BoardWithUser: React.FC<{ user: AuthUser }> = ({ user }) => {
+ const { t } = useTranslation();
+
+ return (
+ <>
+ <Row className="my-3 justify-content-center">
+ <Col xs="12" md="6">
+ <TimelineBoard
+ title={t("home.bookmarkTimeline")}
+ load={() => getHttpBookmarkClient().list()}
+ editHandler={{
+ onDelete: (timeline) => {
+ return getHttpBookmarkClient()
+ .delete(timeline)
+ .catch((e) => {
+ pushAlert({
+ message: "home.message.deleteBookmarkFail",
+ type: "danger",
+ });
+ throw e;
+ });
+ },
+ onMove: (timeline, index, offset) => {
+ return getHttpBookmarkClient()
+ .move(
+ { timeline, newPosition: index + offset + 1 } // +1 because backend contract: index starts at 1
+ )
+ .catch((e) => {
+ pushAlert({
+ message: "home.message.moveBookmarkFail",
+ type: "danger",
+ });
+ throw e;
+ });
+ },
+ }}
+ />
+ </Col>
+ <Col xs="12" md="6" className="my-3 my-md-0">
+ <TimelineBoard
+ title={t("home.relatedTimeline")}
+ load={() =>
+ getHttpTimelineClient().listTimeline({ relate: user.username })
+ }
+ />
+ </Col>
+ </Row>
+ <Row className="my-3 justify-content-center">
+ <Col xs="12" md="6">
+ <TimelineBoard
+ title={t("home.highlightTimeline")}
+ load={() => getHttpHighlightClient().list()}
+ editHandler={
+ user.hasHighlightTimelineAdministrationPermission
+ ? {
+ onDelete: (timeline) => {
+ return getHttpHighlightClient()
+ .delete(timeline)
+ .catch((e) => {
+ pushAlert({
+ message: "home.message.deleteHighlightFail",
+ type: "danger",
+ });
+ throw e;
+ });
+ },
+ onMove: (timeline, index, offset) => {
+ return getHttpHighlightClient()
+ .move(
+ { timeline, newPosition: index + offset + 1 } // +1 because backend contract: index starts at 1
+ )
+ .catch((e) => {
+ pushAlert({
+ message: "home.message.moveHighlightFail",
+ type: "danger",
+ });
+ throw e;
+ });
+ },
+ }
+ : undefined
+ }
+ />
+ </Col>
+ <Col xs="12" md="6" className="my-3 my-md-0">
+ <TimelineBoard
+ title={t("home.publicTimeline")}
+ load={() =>
+ getHttpTimelineClient().listTimeline({ visibility: "Public" })
+ }
+ />
+ </Col>
+ </Row>
+ </>
+ );
+};
+
+export default BoardWithUser;