mirror of
https://github.com/usememos/memos.git
synced 2025-04-18 11:27:25 +02:00
241 lines
8.1 KiB
TypeScript
241 lines
8.1 KiB
TypeScript
import copy from "copy-to-clipboard";
|
|
import dayjs from "dayjs";
|
|
import { memo, useEffect, useRef, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { useEditorStore, useLocationStore, useMemoStore, useUserStore } from "../store/module";
|
|
import Icon from "./Icon";
|
|
import toastHelper from "./Toast";
|
|
import MemoContent from "./MemoContent";
|
|
import MemoResources from "./MemoResources";
|
|
import showShareMemo from "./ShareMemoDialog";
|
|
import showPreviewImageDialog from "./PreviewImageDialog";
|
|
import showChangeMemoCreatedTsDialog from "./ChangeMemoCreatedTsDialog";
|
|
import "../less/memo.less";
|
|
|
|
interface Props {
|
|
memo: Memo;
|
|
highlightWord?: string;
|
|
}
|
|
|
|
export const getFormatedMemoTimeStr = (time: number, locale = "en"): string => {
|
|
if (Date.now() - time < 1000 * 60 * 60 * 24) {
|
|
return dayjs(time).locale(locale).fromNow();
|
|
} else {
|
|
return dayjs(time).locale(locale).format("YYYY/MM/DD HH:mm:ss");
|
|
}
|
|
};
|
|
|
|
const Memo: React.FC<Props> = (props: Props) => {
|
|
const { memo, highlightWord } = props;
|
|
const { t, i18n } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const editorStore = useEditorStore();
|
|
const locationStore = useLocationStore();
|
|
const userStore = useUserStore();
|
|
const memoStore = useMemoStore();
|
|
const [displayTimeStr, setDisplayTimeStr] = useState<string>(getFormatedMemoTimeStr(memo.displayTs, i18n.language));
|
|
const memoContainerRef = useRef<HTMLDivElement>(null);
|
|
const isVisitorMode = userStore.isVisitorMode();
|
|
|
|
useEffect(() => {
|
|
let intervalFlag: any = -1;
|
|
if (Date.now() - memo.displayTs < 1000 * 60 * 60 * 24) {
|
|
intervalFlag = setInterval(() => {
|
|
setDisplayTimeStr(getFormatedMemoTimeStr(memo.displayTs, i18n.language));
|
|
}, 1000 * 1);
|
|
}
|
|
|
|
return () => {
|
|
clearInterval(intervalFlag);
|
|
};
|
|
}, [i18n.language]);
|
|
|
|
const handleViewMemoDetailPage = () => {
|
|
navigate(`/m/${memo.id}`);
|
|
};
|
|
|
|
const handleCopyContent = () => {
|
|
copy(memo.content);
|
|
toastHelper.success(t("message.succeed-copy-content"));
|
|
};
|
|
|
|
const handleTogglePinMemoBtnClick = async () => {
|
|
try {
|
|
if (memo.pinned) {
|
|
await memoStore.unpinMemo(memo.id);
|
|
} else {
|
|
await memoStore.pinMemo(memo.id);
|
|
}
|
|
} catch (error) {
|
|
// do nth
|
|
}
|
|
};
|
|
|
|
const handleEditMemoClick = () => {
|
|
editorStore.setEditMemoWithId(memo.id);
|
|
};
|
|
|
|
const handleArchiveMemoClick = async () => {
|
|
try {
|
|
await memoStore.patchMemo({
|
|
id: memo.id,
|
|
rowStatus: "ARCHIVED",
|
|
});
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toastHelper.error(error.response.data.message);
|
|
}
|
|
|
|
if (editorStore.getState().editMemoId === memo.id) {
|
|
editorStore.clearEditMemo();
|
|
}
|
|
};
|
|
|
|
const handleGenMemoImageBtnClick = () => {
|
|
showShareMemo(memo);
|
|
};
|
|
|
|
const handleMemoContentClick = async (e: React.MouseEvent) => {
|
|
const targetEl = e.target as HTMLElement;
|
|
|
|
if (targetEl.className === "tag-span") {
|
|
const tagName = targetEl.innerText.slice(1);
|
|
const currTagQuery = locationStore.getState().query?.tag;
|
|
if (currTagQuery === tagName) {
|
|
locationStore.setTagQuery(undefined);
|
|
} else {
|
|
locationStore.setTagQuery(tagName);
|
|
}
|
|
} else if (targetEl.classList.contains("todo-block")) {
|
|
if (userStore.isVisitorMode()) {
|
|
return;
|
|
}
|
|
|
|
const status = targetEl.dataset?.value;
|
|
const todoElementList = [...(memoContainerRef.current?.querySelectorAll(`span.todo-block[data-value=${status}]`) ?? [])];
|
|
for (const element of todoElementList) {
|
|
if (element === targetEl) {
|
|
const index = todoElementList.indexOf(element);
|
|
const tempList = memo.content.split(status === "DONE" ? /- \[x\] / : /- \[ \] /);
|
|
let finalContent = "";
|
|
|
|
for (let i = 0; i < tempList.length; i++) {
|
|
if (i === 0) {
|
|
finalContent += `${tempList[i]}`;
|
|
} else {
|
|
if (i === index + 1) {
|
|
finalContent += status === "DONE" ? "- [ ] " : "- [x] ";
|
|
} else {
|
|
finalContent += status === "DONE" ? "- [x] " : "- [ ] ";
|
|
}
|
|
finalContent += `${tempList[i]}`;
|
|
}
|
|
}
|
|
await memoStore.patchMemo({
|
|
id: memo.id,
|
|
content: finalContent,
|
|
});
|
|
}
|
|
}
|
|
} else if (targetEl.tagName === "IMG") {
|
|
const imgUrl = targetEl.getAttribute("src");
|
|
if (imgUrl) {
|
|
showPreviewImageDialog([imgUrl], 0);
|
|
}
|
|
} else if (targetEl.tagName === "BUTTON" && targetEl.className === "codeblock-copy-btn") {
|
|
copy(targetEl.parentElement?.children[1].textContent ?? "");
|
|
toastHelper.success(t("message.succeed-copy-code"));
|
|
}
|
|
};
|
|
|
|
const handleMemoContentDoubleClick = (e: React.MouseEvent) => {
|
|
const targetEl = e.target as HTMLElement;
|
|
|
|
if (targetEl.className === "tag-span") {
|
|
return;
|
|
} else if (targetEl.classList.contains("todo-block")) {
|
|
return;
|
|
}
|
|
|
|
editorStore.setEditMemoWithId(memo.id);
|
|
};
|
|
|
|
const handleMemoDisplayTimeClick = () => {
|
|
showChangeMemoCreatedTsDialog(memo.id);
|
|
};
|
|
|
|
const handleMemoVisibilityClick = (visibility: Visibility) => {
|
|
const currVisibilityQuery = locationStore.getState().query?.visibility;
|
|
if (currVisibilityQuery === visibility) {
|
|
locationStore.setMemoVisibilityQuery(undefined);
|
|
} else {
|
|
locationStore.setMemoVisibilityQuery(visibility);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className={`memo-wrapper ${"memos-" + memo.id} ${memo.pinned ? "pinned" : ""}`} ref={memoContainerRef}>
|
|
{memo.pinned && <div className="corner-container"></div>}
|
|
<div className="memo-top-wrapper">
|
|
<div className="status-text-container">
|
|
<span className="time-text" onDoubleClick={handleMemoDisplayTimeClick}>
|
|
{displayTimeStr}
|
|
</span>
|
|
{memo.visibility !== "PRIVATE" && !isVisitorMode && (
|
|
<span
|
|
className={`status-text ${memo.visibility.toLocaleLowerCase()}`}
|
|
onClick={() => handleMemoVisibilityClick(memo.visibility)}
|
|
>
|
|
{memo.visibility}
|
|
</span>
|
|
)}
|
|
</div>
|
|
{!isVisitorMode && (
|
|
<div className="btns-container">
|
|
<span className="btn more-action-btn">
|
|
<Icon.MoreHorizontal className="icon-img" />
|
|
</span>
|
|
<div className="more-action-btns-wrapper">
|
|
<div className="more-action-btns-container">
|
|
<div className="btns-container">
|
|
<div className="btn" onClick={handleTogglePinMemoBtnClick}>
|
|
<Icon.Flag className={`icon-img ${memo.pinned ? "text-green-600" : ""}`} />
|
|
<span className="tip-text">{memo.pinned ? t("common.unpin") : t("common.pin")}</span>
|
|
</div>
|
|
<div className="btn" onClick={handleEditMemoClick}>
|
|
<Icon.Edit3 className="icon-img" />
|
|
<span className="tip-text">{t("common.edit")}</span>
|
|
</div>
|
|
<div className="btn" onClick={handleGenMemoImageBtnClick}>
|
|
<Icon.Share className="icon-img" />
|
|
<span className="tip-text">{t("common.share")}</span>
|
|
</div>
|
|
</div>
|
|
<span className="btn" onClick={handleCopyContent}>
|
|
{t("memo.copy")}
|
|
</span>
|
|
<span className="btn" onClick={handleViewMemoDetailPage}>
|
|
{t("memo.view-detail")}
|
|
</span>
|
|
<span className="btn archive-btn" onClick={handleArchiveMemoClick}>
|
|
{t("common.archive")}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<MemoContent
|
|
content={memo.content}
|
|
highlightWord={highlightWord}
|
|
onMemoContentClick={handleMemoContentClick}
|
|
onMemoContentDoubleClick={handleMemoContentDoubleClick}
|
|
/>
|
|
<MemoResources resourceList={memo.resourceList} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(Memo);
|