mirror of
https://github.com/usememos/memos.git
synced 2025-04-13 00:52:07 +02:00
89 lines
3.1 KiB
TypeScript
89 lines
3.1 KiB
TypeScript
import clsx from "clsx";
|
|
import copy from "copy-to-clipboard";
|
|
import { useContext, useEffect } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { Link } from "react-router-dom";
|
|
import Icon from "@/components/Icon";
|
|
import MemoResourceListView from "@/components/MemoResourceListView";
|
|
import useLoading from "@/hooks/useLoading";
|
|
import { useMemoStore } from "@/store/v1";
|
|
import MemoContent from "..";
|
|
import { RendererContext } from "../types";
|
|
import Error from "./Error";
|
|
|
|
interface Props {
|
|
resourceId: string;
|
|
params: string;
|
|
}
|
|
|
|
const EmbeddedMemo = ({ resourceId: uid, params: paramsStr }: Props) => {
|
|
const context = useContext(RendererContext);
|
|
const loadingState = useLoading();
|
|
const memoStore = useMemoStore();
|
|
const memo = memoStore.getMemoByUid(uid);
|
|
const resourceName = `memos/${uid}`;
|
|
|
|
useEffect(() => {
|
|
memoStore.fetchMemoByUid(uid).finally(() => loadingState.setFinish());
|
|
}, [uid]);
|
|
|
|
if (loadingState.isLoading) {
|
|
return null;
|
|
}
|
|
if (!memo) {
|
|
return <Error message={`Memo not found: ${uid}`} />;
|
|
}
|
|
|
|
const params = new URLSearchParams(paramsStr);
|
|
const useSnippet = params.has("snippet");
|
|
const inlineMode = params.has("inline");
|
|
if (!useSnippet && (memo.name === context.memoName || context.embeddedMemos.has(resourceName))) {
|
|
return <Error message={`Nested Rendering Error: ![[${resourceName}]]`} />;
|
|
}
|
|
|
|
// Add the memo to the set of embedded memos. This is used to prevent infinite loops when a memo embeds itself.
|
|
context.embeddedMemos.add(resourceName);
|
|
const contentNode = useSnippet ? (
|
|
<div className={clsx("text-gray-800 dark:text-gray-400", inlineMode ? "" : "line-clamp-3")}>{memo.snippet}</div>
|
|
) : (
|
|
<>
|
|
<MemoContent
|
|
contentClassName={inlineMode ? "" : "line-clamp-3"}
|
|
memoName={memo.name}
|
|
nodes={memo.nodes}
|
|
embeddedMemos={context.embeddedMemos}
|
|
/>
|
|
<MemoResourceListView resources={memo.resources} />
|
|
</>
|
|
);
|
|
if (inlineMode) {
|
|
return <div className="w-full">{contentNode}</div>;
|
|
}
|
|
|
|
const copyMemoUid = (uid: string) => {
|
|
copy(uid);
|
|
toast.success("Copied memo UID to clipboard");
|
|
};
|
|
|
|
return (
|
|
<div className="relative flex flex-col justify-start items-start w-full px-3 py-2 bg-zinc-50 dark:bg-zinc-900 rounded-lg border border-gray-200 dark:border-zinc-700 hover:shadow">
|
|
<div className="w-full mb-1 flex flex-row justify-between items-center text-gray-400 dark:text-gray-500">
|
|
<div className="text-sm leading-5 select-none">
|
|
<relative-time datetime={memo.displayTime?.toISOString()} format="datetime" tense="past"></relative-time>
|
|
</div>
|
|
<div className="flex justify-end items-center gap-1">
|
|
<span className="text-xs opacity-60 leading-5 cursor-pointer hover:opacity-80" onClick={() => copyMemoUid(memo.uid)}>
|
|
{memo.uid.slice(0, 8)}
|
|
</span>
|
|
<Link className="opacity-60 hover:opacity-80" to={`/m/${memo.uid}`} unstable_viewTransition>
|
|
<Icon.ArrowUpRight className="w-5 h-auto" />
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
{contentNode}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmbeddedMemo;
|