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.
121 lines
3.9 KiB
TypeScript
121 lines
3.9 KiB
TypeScript
import { memo, useCallback, useMemo, useRef, useState } from "react";
|
|
import { useLocation } from "react-router-dom";
|
|
import { useInstance } from "@/contexts/InstanceContext";
|
|
import useCurrentUser from "@/hooks/useCurrentUser";
|
|
import { useUser } from "@/hooks/useUserQueries";
|
|
import { findTagMetadata } from "@/lib/tag";
|
|
import { cn } from "@/lib/utils";
|
|
import { State } from "@/types/proto/api/v1/common_pb";
|
|
import { isSuperUser } from "@/utils/user";
|
|
import MemoEditor from "../MemoEditor";
|
|
import PreviewImageDialog from "../PreviewImageDialog";
|
|
import { MemoBody, MemoCommentListView, MemoHeader } from "./components";
|
|
import { MEMO_CARD_BASE_CLASSES } from "./constants";
|
|
import { useImagePreview } from "./hooks";
|
|
import { computeCommentAmount, MemoViewContext } from "./MemoViewContext";
|
|
import type { MemoViewProps } from "./types";
|
|
|
|
const MemoView: React.FC<MemoViewProps> = (props: MemoViewProps) => {
|
|
const { memo: memoData, className, parentPage: parentPageProp, compact, showCreator, showVisibility, showPinned } = props;
|
|
const cardRef = useRef<HTMLDivElement>(null);
|
|
const [showEditor, setShowEditor] = useState(false);
|
|
|
|
const currentUser = useCurrentUser();
|
|
const { tagsSetting } = useInstance();
|
|
const creator = useUser(memoData.creator).data;
|
|
const isArchived = memoData.state === State.ARCHIVED;
|
|
const readonly = memoData.creator !== currentUser?.name && !isSuperUser(currentUser);
|
|
const parentPage = parentPageProp || "/";
|
|
|
|
// Blur content when any tag has blur_content enabled in the instance tag settings.
|
|
const [showBlurredContent, setShowBlurredContent] = useState(false);
|
|
const blurred = memoData.tags?.some((tag) => findTagMetadata(tag, tagsSetting)?.blurContent) ?? false;
|
|
const toggleBlurVisibility = useCallback(() => setShowBlurredContent((prev) => !prev), []);
|
|
|
|
const { previewState, openPreview, setPreviewOpen } = useImagePreview();
|
|
|
|
const openEditor = useCallback(() => setShowEditor(true), []);
|
|
const closeEditor = useCallback(() => setShowEditor(false), []);
|
|
|
|
const location = useLocation();
|
|
const isInMemoDetailPage = location.pathname.startsWith(`/${memoData.name}`) || location.pathname.startsWith("/memos/shares/");
|
|
const showCommentPreview = !isInMemoDetailPage && computeCommentAmount(memoData) > 0;
|
|
|
|
const contextValue = useMemo(
|
|
() => ({
|
|
memo: memoData,
|
|
creator,
|
|
currentUser,
|
|
parentPage,
|
|
isArchived,
|
|
readonly,
|
|
showBlurredContent,
|
|
blurred,
|
|
openEditor,
|
|
toggleBlurVisibility,
|
|
openPreview,
|
|
}),
|
|
[
|
|
memoData,
|
|
creator,
|
|
currentUser,
|
|
parentPage,
|
|
isArchived,
|
|
readonly,
|
|
showBlurredContent,
|
|
blurred,
|
|
openEditor,
|
|
toggleBlurVisibility,
|
|
openPreview,
|
|
],
|
|
);
|
|
|
|
if (showEditor) {
|
|
return (
|
|
<MemoEditor
|
|
autoFocus
|
|
className="mb-2"
|
|
cacheKey={`inline-memo-editor-${memoData.name}`}
|
|
memo={memoData}
|
|
parentMemoName={memoData.parent || undefined}
|
|
onConfirm={closeEditor}
|
|
onCancel={closeEditor}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const article = (
|
|
<article
|
|
className={cn(MEMO_CARD_BASE_CLASSES, showCommentPreview ? "mb-0 rounded-b-none" : "mb-2", className)}
|
|
ref={cardRef}
|
|
tabIndex={readonly ? -1 : 0}
|
|
>
|
|
<MemoHeader showCreator={showCreator} showVisibility={showVisibility} showPinned={showPinned} />
|
|
|
|
<MemoBody compact={compact} />
|
|
|
|
<PreviewImageDialog
|
|
open={previewState.open}
|
|
onOpenChange={setPreviewOpen}
|
|
imgUrls={previewState.urls}
|
|
initialIndex={previewState.index}
|
|
/>
|
|
</article>
|
|
);
|
|
|
|
return (
|
|
<MemoViewContext.Provider value={contextValue}>
|
|
{showCommentPreview ? (
|
|
<div className="w-full mb-2">
|
|
{article}
|
|
<MemoCommentListView />
|
|
</div>
|
|
) : (
|
|
article
|
|
)}
|
|
</MemoViewContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default memo(MemoView);
|