mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
5.4 KiB
TypeScript
145 lines
5.4 KiB
TypeScript
import { Button } from "@mui/joy";
|
|
import { ClientError } from "nice-grpc-web";
|
|
import { useEffect, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { Link, useParams } from "react-router-dom";
|
|
import Icon from "@/components/Icon";
|
|
import showMemoEditorDialog from "@/components/MemoEditor/MemoEditorDialog";
|
|
import MemoView from "@/components/MemoView";
|
|
import MobileHeader from "@/components/MobileHeader";
|
|
import useCurrentUser from "@/hooks/useCurrentUser";
|
|
import useNavigateTo from "@/hooks/useNavigateTo";
|
|
import { MemoNamePrefix, useMemoStore } from "@/store/v1";
|
|
import { MemoRelation_Type } from "@/types/proto/api/v1/memo_relation_service";
|
|
import { Memo } from "@/types/proto/api/v1/memo_service";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
|
|
const MemoDetail = () => {
|
|
const t = useTranslate();
|
|
const params = useParams();
|
|
const navigateTo = useNavigateTo();
|
|
const currentUser = useCurrentUser();
|
|
const memoStore = useMemoStore();
|
|
const uid = params.uid;
|
|
const memo = memoStore.getMemoByUid(uid || "");
|
|
const [parentMemo, setParentMemo] = useState<Memo | undefined>(undefined);
|
|
const commentRelations =
|
|
memo?.relations.filter((relation) => relation.relatedMemo === memo.name && relation.type === MemoRelation_Type.COMMENT) || [];
|
|
const comments = commentRelations.map((relation) => memoStore.getMemoByName(relation.memo)).filter((memo) => memo) as any as Memo[];
|
|
|
|
// Prepare memo.
|
|
useEffect(() => {
|
|
if (uid) {
|
|
memoStore.searchMemos(`uid == "${uid}"`).catch((error: ClientError) => {
|
|
toast.error(error.details);
|
|
navigateTo("/403");
|
|
});
|
|
} else {
|
|
navigateTo("/404");
|
|
}
|
|
}, [uid]);
|
|
|
|
// Prepare memo comments.
|
|
useEffect(() => {
|
|
if (!memo) {
|
|
return;
|
|
}
|
|
|
|
(async () => {
|
|
if (memo.parentId) {
|
|
memoStore.getOrFetchMemoByName(`${MemoNamePrefix}${memo.parentId}`).then((memo: Memo) => {
|
|
setParentMemo(memo);
|
|
});
|
|
} else {
|
|
setParentMemo(undefined);
|
|
}
|
|
await Promise.all(commentRelations.map((relation) => memoStore.getOrFetchMemoByName(relation.memo)));
|
|
})();
|
|
}, [memo]);
|
|
|
|
if (!memo) {
|
|
return null;
|
|
}
|
|
|
|
const handleShowCommentEditor = () => {
|
|
showMemoEditorDialog({
|
|
placeholder: t("editor.add-your-comment-here"),
|
|
parentMemoName: memo.name,
|
|
onConfirm: handleCommentCreated,
|
|
});
|
|
};
|
|
|
|
const handleCommentCreated = async (memoCommentName: string) => {
|
|
await memoStore.getOrFetchMemoByName(memoCommentName);
|
|
await memoStore.getOrFetchMemoByName(memo.name, { skipCache: true });
|
|
};
|
|
|
|
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">
|
|
<MobileHeader />
|
|
<div className="w-full px-4 sm:px-6">
|
|
{parentMemo && (
|
|
<div className="w-auto inline-block mb-2">
|
|
<Link
|
|
className="px-3 py-1 border rounded-lg max-w-xs w-auto text-sm flex flex-row justify-start items-center flex-nowrap text-gray-600 dark:text-gray-400 dark:border-gray-500 hover:shadow hover:opacity-80"
|
|
to={`/m/${parentMemo.uid}`}
|
|
unstable_viewTransition
|
|
>
|
|
<Icon.ArrowUpLeftFromCircle className="w-4 h-auto shrink-0 opacity-60 mr-2" />
|
|
<span className="truncate">{parentMemo.content}</span>
|
|
</Link>
|
|
</div>
|
|
)}
|
|
<MemoView
|
|
key={`${memo.name}-${memo.displayTime}`}
|
|
className="shadow hover:shadow-xl transition-all"
|
|
memo={memo}
|
|
compact={false}
|
|
showCreator
|
|
showVisibility
|
|
showPinned
|
|
/>
|
|
<div className="pt-8 pb-16 w-full">
|
|
<h2 id="comments" className="sr-only">
|
|
{t("memo.comment.self")}
|
|
</h2>
|
|
<div className="relative mx-auto flex-grow w-full min-h-full flex flex-col justify-start items-start gap-y-1">
|
|
{comments.length === 0 ? (
|
|
currentUser && (
|
|
<div className="w-full flex flex-row justify-center items-center py-6">
|
|
<Button
|
|
variant="plain"
|
|
color="neutral"
|
|
startDecorator={<Icon.MessageCircle className="w-5 h-auto text-gray-400" />}
|
|
onClick={handleShowCommentEditor}
|
|
>
|
|
<span className="">{t("memo.comment.write-a-comment")}</span>
|
|
</Button>
|
|
</div>
|
|
)
|
|
) : (
|
|
<>
|
|
<div className="w-full flex flex-row justify-between items-center px-3 mb-2">
|
|
<div className="flex flex-row justify-start items-center">
|
|
<Icon.MessageCircle className="w-5 h-auto text-gray-400 mr-1" />
|
|
<span className="text-gray-400 text-sm">{t("memo.comment.self")}</span>
|
|
<span className="text-gray-400 text-sm ml-1">({comments.length})</span>
|
|
</div>
|
|
<Button variant="plain" color="neutral" onClick={handleShowCommentEditor}>
|
|
<span className="font-normal">{t("memo.comment.write-a-comment")}</span>
|
|
</Button>
|
|
</div>
|
|
{comments.map((comment) => (
|
|
<MemoView key={`${comment.name}-${comment.displayTime}`} memo={comment} showCreator />
|
|
))}
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default MemoDetail;
|