mirror of https://github.com/usememos/memos.git
205 lines
8.8 KiB
TypeScript
205 lines
8.8 KiB
TypeScript
import { Button, IconButton } from "@mui/joy";
|
|
import clsx from "clsx";
|
|
import { useEffect, useRef, useState } from "react";
|
|
import ActivityCalendar from "@/components/ActivityCalendar";
|
|
import Empty from "@/components/Empty";
|
|
import Icon from "@/components/Icon";
|
|
import showMemoEditorDialog from "@/components/MemoEditor/MemoEditorDialog";
|
|
import MemoFilter from "@/components/MemoFilter";
|
|
import MemoView from "@/components/MemoView";
|
|
import MobileHeader from "@/components/MobileHeader";
|
|
import { TimelineSidebar, TimelineSidebarDrawer } from "@/components/TimelineSidebar";
|
|
import { memoServiceClient } from "@/grpcweb";
|
|
import { DAILY_TIMESTAMP, DEFAULT_LIST_MEMOS_PAGE_SIZE } from "@/helpers/consts";
|
|
import { getTimeStampByDate } from "@/helpers/datetime";
|
|
import useCurrentUser from "@/hooks/useCurrentUser";
|
|
import useFilterWithUrlParams from "@/hooks/useFilterWithUrlParams";
|
|
import useResponsiveWidth from "@/hooks/useResponsiveWidth";
|
|
import i18n from "@/i18n";
|
|
import { useMemoList, useMemoStore } from "@/store/v1";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
|
|
const Timeline = () => {
|
|
const t = useTranslate();
|
|
const { md } = useResponsiveWidth();
|
|
const user = useCurrentUser();
|
|
const memoStore = useMemoStore();
|
|
const memoList = useMemoList();
|
|
const { tag: tagQuery, text: textQuery } = useFilterWithUrlParams();
|
|
const [activityStats, setActivityStats] = useState<Record<string, number>>({});
|
|
const [selectedDateString, setSelectedDateString] = useState<string>(new Date().toDateString());
|
|
const [isRequesting, setIsRequesting] = useState(true);
|
|
const nextPageTokenRef = useRef<string | undefined>(undefined);
|
|
const sortedMemos = memoList.value.sort((a, b) => getTimeStampByDate(a.displayTime) - getTimeStampByDate(b.displayTime));
|
|
const monthString = new Date(selectedDateString).getFullYear() + "-" + (new Date(selectedDateString).getMonth() + 1);
|
|
|
|
useEffect(() => {
|
|
setIsRequesting(true);
|
|
nextPageTokenRef.current = undefined;
|
|
setTimeout(async () => {
|
|
memoList.reset();
|
|
const nextPageToken = await fetchMemos();
|
|
nextPageTokenRef.current = nextPageToken;
|
|
setIsRequesting(false);
|
|
});
|
|
}, [selectedDateString, tagQuery, textQuery]);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
const filters = [`row_status == "NORMAL"`];
|
|
const contentSearch: string[] = [];
|
|
if (textQuery) {
|
|
contentSearch.push(JSON.stringify(textQuery));
|
|
}
|
|
if (contentSearch.length > 0) {
|
|
filters.push(`content_search == [${contentSearch.join(", ")}]`);
|
|
}
|
|
if (tagQuery) {
|
|
filters.push(`tag == "${tagQuery}"`);
|
|
}
|
|
const { stats } = await memoServiceClient.getUserMemosStats({
|
|
name: user.name,
|
|
timezone: Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
filter: filters.join(" && "),
|
|
});
|
|
|
|
setActivityStats(
|
|
Object.fromEntries(
|
|
Object.entries(stats).filter(([date]) => {
|
|
const d = new Date(date);
|
|
return `${d.getFullYear()}-${d.getMonth() + 1}` === monthString;
|
|
}),
|
|
),
|
|
);
|
|
})();
|
|
}, [sortedMemos.length]);
|
|
|
|
const fetchMemos = async () => {
|
|
const filters = [`creator == "${user.name}"`, `row_status == "NORMAL"`];
|
|
const contentSearch: string[] = [];
|
|
if (textQuery) {
|
|
contentSearch.push(JSON.stringify(textQuery));
|
|
}
|
|
if (contentSearch.length > 0) {
|
|
filters.push(`content_search == [${contentSearch.join(", ")}]`);
|
|
}
|
|
if (tagQuery) {
|
|
filters.push(`tag == "${tagQuery}"`);
|
|
}
|
|
if (selectedDateString) {
|
|
const selectedDateStamp = getTimeStampByDate(selectedDateString);
|
|
filters.push(
|
|
...[`display_time_after == ${selectedDateStamp / 1000}`, `display_time_before == ${(selectedDateStamp + DAILY_TIMESTAMP) / 1000}`],
|
|
);
|
|
}
|
|
const { nextPageToken } = await memoStore.fetchMemos({
|
|
pageSize: DEFAULT_LIST_MEMOS_PAGE_SIZE,
|
|
filter: filters.join(" && "),
|
|
pageToken: nextPageTokenRef.current,
|
|
});
|
|
return nextPageToken;
|
|
};
|
|
|
|
const handleNewMemo = () => {
|
|
showMemoEditorDialog({});
|
|
};
|
|
|
|
return (
|
|
<section className="@container w-full max-w-4xl min-h-full flex flex-col justify-start items-center sm:pt-3 md:pt-6 pb-8">
|
|
{!md && (
|
|
<MobileHeader>
|
|
<TimelineSidebarDrawer />
|
|
</MobileHeader>
|
|
)}
|
|
<div className={clsx("w-full flex flex-row justify-start items-start px-4 sm:px-6 gap-4")}>
|
|
<div className={clsx(md ? "w-[calc(100%-15rem)]" : "w-full")}>
|
|
<div className="w-full shadow flex flex-col justify-start items-start px-4 py-3 rounded-xl bg-white dark:bg-zinc-800 text-black dark:text-gray-300">
|
|
<div className="relative w-full flex flex-row justify-between items-center">
|
|
<div>
|
|
<div
|
|
className="py-1 flex flex-row justify-start items-center select-none opacity-80"
|
|
onClick={() => setSelectedDateString(new Date().toDateString())}
|
|
>
|
|
<Icon.GanttChartSquare className="w-6 h-auto mr-1 opacity-80" />
|
|
<span className="text-lg">{t("timeline.title")}</span>
|
|
</div>
|
|
</div>
|
|
<div className="flex justify-end items-center gap-2">
|
|
<IconButton variant="outlined" size="sm" onClick={() => handleNewMemo()}>
|
|
<Icon.Plus className="w-5 h-auto" />
|
|
</IconButton>
|
|
</div>
|
|
</div>
|
|
<div className="w-full h-auto flex flex-col justify-start items-start">
|
|
<MemoFilter className="p-2 my-2 rounded-lg dark:bg-zinc-900" />
|
|
|
|
<div className={clsx("flex flex-col justify-start items-start w-full mt-2 last:mb-4")}>
|
|
<div className={clsx("flex shrink-0 flex-row w-full pl-1 mt-2 mb-2")}>
|
|
<div className={clsx("w-full flex flex-col")}>
|
|
<span className="font-medium text-3xl sm:text-4xl">
|
|
{new Date(selectedDateString).toLocaleDateString(i18n.language, { month: "short", day: "numeric" })}
|
|
</span>
|
|
<span className="opacity-60 text-lg">{new Date(monthString).getFullYear()}</span>
|
|
</div>
|
|
<ActivityCalendar
|
|
month={monthString}
|
|
selectedDate={selectedDateString}
|
|
data={activityStats}
|
|
onClick={(date) => setSelectedDateString(date)}
|
|
/>
|
|
</div>
|
|
|
|
<div className={clsx("w-full flex flex-col justify-start items-start")}>
|
|
{sortedMemos.map((memo, index) => (
|
|
<div
|
|
key={`${memo.name}-${memo.displayTime}`}
|
|
className={clsx("relative w-full flex flex-col justify-start items-start pl-4 sm:pl-10 pt-0")}
|
|
>
|
|
<MemoView className="!border max-w-full !border-gray-100 dark:!border-zinc-700" memo={memo} />
|
|
<div className="absolute -left-2 sm:left-2 top-4 h-full">
|
|
{index !== sortedMemos.length - 1 && (
|
|
<div className="absolute top-2 left-[7px] h-full w-0.5 bg-gray-200 dark:bg-gray-700 block"></div>
|
|
)}
|
|
<div className="border-4 rounded-full border-white relative dark:border-zinc-800">
|
|
<Icon.Circle className="w-2 h-auto bg-gray-200 text-gray-200 dark:bg-gray-700 dark:text-gray-700 rounded-full" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
{isRequesting ? (
|
|
<div className="flex flex-row justify-center items-center w-full my-4 text-gray-400">
|
|
<Icon.Loader className="w-4 h-auto animate-spin mr-1" />
|
|
<p className="text-sm italic">{t("memo.fetching-data")}</p>
|
|
</div>
|
|
) : !nextPageTokenRef.current ? (
|
|
sortedMemos.length === 0 && (
|
|
<div className="w-full mt-12 mb-8 flex flex-col justify-center items-center italic">
|
|
<Empty />
|
|
<p className="mt-2 text-gray-600 dark:text-gray-400">{t("message.no-data")}</p>
|
|
</div>
|
|
)
|
|
) : (
|
|
<div className="w-full flex flex-row justify-center items-center my-4">
|
|
<Button variant="plain" endDecorator={<Icon.ArrowDown className="w-5 h-auto" />} onClick={fetchMemos}>
|
|
{t("memo.fetch-more")}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{md && (
|
|
<div className="sticky top-0 left-0 shrink-0 -mt-6 w-56 h-full">
|
|
<TimelineSidebar className="py-6" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Timeline;
|