|
|
|
import { useCallback, useContext, useEffect, useMemo, useRef } from "react";
|
|
|
|
import appContext from "../stores/appContext";
|
|
|
|
import { globalStateService, locationService, memoService, resourceService } from "../services";
|
|
|
|
import utils from "../helpers/utils";
|
|
|
|
import { storage } from "../helpers/storage";
|
|
|
|
import toastHelper from "./Toast";
|
|
|
|
import Editor, { EditorProps, EditorRefActions } from "./Editor/Editor";
|
|
|
|
import "../less/memo-editor.less";
|
|
|
|
|
|
|
|
interface Props {}
|
|
|
|
|
|
|
|
const MemoEditor: React.FC<Props> = () => {
|
|
|
|
const { globalState } = useContext(appContext);
|
|
|
|
const editorRef = useRef<EditorRefActions>(null);
|
|
|
|
const prevGlobalStateRef = useRef(globalState);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (globalState.markMemoId) {
|
|
|
|
const editorCurrentValue = editorRef.current?.getContent();
|
|
|
|
const memoLinkText = `${editorCurrentValue ? "\n" : ""}Mark: [@MEMO](${globalState.markMemoId})`;
|
|
|
|
editorRef.current?.insertText(memoLinkText);
|
|
|
|
globalStateService.setMarkMemoId("");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (globalState.editMemoId && globalState.editMemoId !== prevGlobalStateRef.current.editMemoId) {
|
|
|
|
const editMemo = memoService.getMemoById(globalState.editMemoId);
|
|
|
|
if (editMemo) {
|
|
|
|
editorRef.current?.setContent(editMemo.content ?? "");
|
|
|
|
editorRef.current?.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prevGlobalStateRef.current = globalState;
|
|
|
|
}, [globalState.markMemoId, globalState.editMemoId]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!editorRef.current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const handlePasteEvent = async (event: ClipboardEvent) => {
|
|
|
|
if (event.clipboardData && event.clipboardData.files.length > 0) {
|
|
|
|
event.preventDefault();
|
|
|
|
const file = event.clipboardData.files[0];
|
|
|
|
const url = await handleUploadFile(file);
|
|
|
|
if (url) {
|
|
|
|
editorRef.current?.insertText(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDropEvent = async (event: DragEvent) => {
|
|
|
|
if (event.dataTransfer && event.dataTransfer.files.length > 0) {
|
|
|
|
event.preventDefault();
|
|
|
|
const file = event.dataTransfer.files[0];
|
|
|
|
const url = await handleUploadFile(file);
|
|
|
|
if (url) {
|
|
|
|
editorRef.current?.insertText(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
editorRef.current.element.addEventListener("paste", handlePasteEvent);
|
|
|
|
editorRef.current.element.addEventListener("drop", handleDropEvent);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
editorRef.current?.element.removeEventListener("paste", handlePasteEvent);
|
|
|
|
editorRef.current?.element.removeEventListener("drop", handleDropEvent);
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleUploadFile = useCallback(async (file: File) => {
|
|
|
|
const { type } = file;
|
|
|
|
|
|
|
|
if (!type.startsWith("image")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const image = await resourceService.upload(file);
|
|
|
|
const url = `/r/${image.id}/${image.filename}`;
|
|
|
|
|
|
|
|
return url;
|
|
|
|
} catch (error: any) {
|
|
|
|
toastHelper.error(error);
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleSaveBtnClick = useCallback(async (content: string) => {
|
|
|
|
if (content === "") {
|
|
|
|
toastHelper.error("内容不能为空呀");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { editMemoId } = globalStateService.getState();
|
|
|
|
|
|
|
|
content = content.replaceAll(" ", " ");
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (editMemoId) {
|
|
|
|
const prevMemo = memoService.getMemoById(editMemoId);
|
|
|
|
|
|
|
|
if (prevMemo && prevMemo.content !== content) {
|
|
|
|
const editedMemo = await memoService.updateMemo(prevMemo.id, content);
|
|
|
|
editedMemo.updatedAt = utils.getDateTimeString(Date.now());
|
|
|
|
memoService.editMemo(editedMemo);
|
|
|
|
}
|
|
|
|
globalStateService.setEditMemoId("");
|
|
|
|
} else {
|
|
|
|
const newMemo = await memoService.createMemo(content);
|
|
|
|
memoService.pushMemo(newMemo);
|
|
|
|
locationService.clearQuery();
|
|
|
|
}
|
|
|
|
} catch (error: any) {
|
|
|
|
toastHelper.error(error.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
setEditorContentCache("");
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleCancelBtnClick = useCallback(() => {
|
|
|
|
globalStateService.setEditMemoId("");
|
|
|
|
editorRef.current?.setContent("");
|
|
|
|
setEditorContentCache("");
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleContentChange = useCallback((content: string) => {
|
|
|
|
const tempDiv = document.createElement("div");
|
|
|
|
tempDiv.innerHTML = content;
|
|
|
|
if (tempDiv.innerText.trim() === "") {
|
|
|
|
content = "";
|
|
|
|
}
|
|
|
|
setEditorContentCache(content);
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleTagTextBtnClick = useCallback(() => {
|
|
|
|
if (!editorRef.current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const currentValue = editorRef.current.getContent();
|
|
|
|
const selectionStart = editorRef.current.element.selectionStart;
|
|
|
|
const prevString = currentValue.slice(0, selectionStart);
|
|
|
|
const nextString = currentValue.slice(selectionStart);
|
|
|
|
let cursorIndex = prevString.length;
|
|
|
|
|
|
|
|
if (prevString.endsWith("# ") && nextString.startsWith(" ")) {
|
|
|
|
editorRef.current.setContent(prevString.slice(0, prevString.length - 2) + nextString.slice(1));
|
|
|
|
cursorIndex = prevString.length - 2;
|
|
|
|
} else {
|
|
|
|
editorRef.current.element.value = prevString + "# " + nextString;
|
|
|
|
cursorIndex = prevString.length + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
editorRef.current?.element.setSelectionRange(cursorIndex, cursorIndex);
|
|
|
|
editorRef.current?.focus();
|
|
|
|
});
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const handleUploadFileBtnClick = useCallback(() => {
|
|
|
|
const inputEl = document.createElement("input");
|
|
|
|
inputEl.type = "file";
|
|
|
|
inputEl.multiple = false;
|
|
|
|
inputEl.accept = "image/png, image/gif, image/jpeg";
|
|
|
|
inputEl.onchange = async () => {
|
|
|
|
if (!inputEl.files || inputEl.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const file = inputEl.files[0];
|
|
|
|
const url = await handleUploadFile(file);
|
|
|
|
if (url) {
|
|
|
|
editorRef.current?.insertText(url);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
inputEl.click();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const showEditStatus = Boolean(globalState.editMemoId);
|
|
|
|
|
|
|
|
const editorConfig: EditorProps = useMemo(
|
|
|
|
() => ({
|
|
|
|
className: "memo-editor",
|
|
|
|
initialContent: getEditorContentCache(),
|
|
|
|
placeholder: "现在的想法是...",
|
|
|
|
showConfirmBtn: true,
|
|
|
|
showCancelBtn: showEditStatus,
|
|
|
|
showTools: true,
|
|
|
|
onConfirmBtnClick: handleSaveBtnClick,
|
|
|
|
onCancelBtnClick: handleCancelBtnClick,
|
|
|
|
onTagTextBtnClick: handleTagTextBtnClick,
|
|
|
|
onUploadFileBtnClick: handleUploadFileBtnClick,
|
|
|
|
onContentChange: handleContentChange,
|
|
|
|
}),
|
|
|
|
[showEditStatus]
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={"memo-editor-wrapper " + (showEditStatus ? "edit-ing" : "")}>
|
|
|
|
<p className={"tip-text " + (showEditStatus ? "" : "hidden")}>正在修改中...</p>
|
|
|
|
<Editor ref={editorRef} {...editorConfig} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
function getEditorContentCache(): string {
|
|
|
|
return storage.get(["editorContentCache"]).editorContentCache ?? "";
|
|
|
|
}
|
|
|
|
|
|
|
|
function setEditorContentCache(content: string) {
|
|
|
|
storage.set({
|
|
|
|
editorContentCache: content,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MemoEditor;
|