mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
feat: update memo editor with uploading resources
This commit is contained in:
@ -1,10 +1,8 @@
|
|||||||
import { forwardRef, ReactNode, useCallback, useEffect, useImperativeHandle, useRef } from "react";
|
import { forwardRef, ReactNode, useCallback, useEffect, useImperativeHandle, useRef } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
|
||||||
import useRefresh from "../../hooks/useRefresh";
|
import useRefresh from "../../hooks/useRefresh";
|
||||||
import "../../less/editor.less";
|
import "../../less/editor.less";
|
||||||
|
|
||||||
export interface EditorRefActions {
|
export interface EditorRefActions {
|
||||||
element: HTMLTextAreaElement;
|
|
||||||
focus: FunctionType;
|
focus: FunctionType;
|
||||||
insertText: (text: string) => void;
|
insertText: (text: string) => void;
|
||||||
setContent: (text: string) => void;
|
setContent: (text: string) => void;
|
||||||
@ -12,29 +10,19 @@ export interface EditorRefActions {
|
|||||||
getCursorPosition: () => number;
|
getCursorPosition: () => number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface EditorProps {
|
interface Props {
|
||||||
className: string;
|
className: string;
|
||||||
initialContent: string;
|
initialContent: string;
|
||||||
placeholder: string;
|
placeholder: string;
|
||||||
fullscreen: boolean;
|
fullscreen: boolean;
|
||||||
showConfirmBtn: boolean;
|
|
||||||
tools?: ReactNode;
|
tools?: ReactNode;
|
||||||
onConfirmBtnClick: (content: string) => void;
|
onPaste: (event: React.ClipboardEvent) => void;
|
||||||
onContentChange: (content: string) => void;
|
onContentChange: (content: string) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line react/display-name
|
// eslint-disable-next-line react/display-name
|
||||||
const Editor = forwardRef((props: EditorProps, ref: React.ForwardedRef<EditorRefActions>) => {
|
const Editor = forwardRef((props: Props, ref: React.ForwardedRef<EditorRefActions>) => {
|
||||||
const {
|
const { className, initialContent, placeholder, fullscreen, onPaste, onContentChange: handleContentChangeCallback } = props;
|
||||||
className,
|
|
||||||
initialContent,
|
|
||||||
placeholder,
|
|
||||||
fullscreen,
|
|
||||||
showConfirmBtn,
|
|
||||||
onConfirmBtnClick: handleConfirmBtnClickCallback,
|
|
||||||
onContentChange: handleContentChangeCallback,
|
|
||||||
} = props;
|
|
||||||
const { t } = useTranslation();
|
|
||||||
const editorRef = useRef<HTMLTextAreaElement>(null);
|
const editorRef = useRef<HTMLTextAreaElement>(null);
|
||||||
const refresh = useRefresh();
|
const refresh = useRefresh();
|
||||||
|
|
||||||
@ -54,7 +42,6 @@ const Editor = forwardRef((props: EditorProps, ref: React.ForwardedRef<EditorRef
|
|||||||
useImperativeHandle(
|
useImperativeHandle(
|
||||||
ref,
|
ref,
|
||||||
() => ({
|
() => ({
|
||||||
element: editorRef.current as HTMLTextAreaElement,
|
|
||||||
focus: () => {
|
focus: () => {
|
||||||
editorRef.current?.focus();
|
editorRef.current?.focus();
|
||||||
},
|
},
|
||||||
@ -94,25 +81,6 @@ const Editor = forwardRef((props: EditorProps, ref: React.ForwardedRef<EditorRef
|
|||||||
refresh();
|
refresh();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handleEditorKeyDown = useCallback((event: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
|
||||||
event.stopPropagation();
|
|
||||||
|
|
||||||
if (event.code === "Enter") {
|
|
||||||
if (event.metaKey || event.ctrlKey) {
|
|
||||||
handleCommonConfirmBtnClick();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleCommonConfirmBtnClick = useCallback(() => {
|
|
||||||
if (!editorRef.current) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
handleConfirmBtnClickCallback(editorRef.current.value);
|
|
||||||
editorRef.current.value = "";
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"common-editor-wrapper " + className}>
|
<div className={"common-editor-wrapper " + className}>
|
||||||
<textarea
|
<textarea
|
||||||
@ -120,19 +88,9 @@ const Editor = forwardRef((props: EditorProps, ref: React.ForwardedRef<EditorRef
|
|||||||
rows={1}
|
rows={1}
|
||||||
placeholder={placeholder}
|
placeholder={placeholder}
|
||||||
ref={editorRef}
|
ref={editorRef}
|
||||||
|
onPaste={onPaste}
|
||||||
onInput={handleEditorInput}
|
onInput={handleEditorInput}
|
||||||
onKeyDown={handleEditorKeyDown}
|
|
||||||
></textarea>
|
></textarea>
|
||||||
<div className="common-tools-wrapper">
|
|
||||||
<div className="common-tools-container">{props.tools !== undefined && props.tools}</div>
|
|
||||||
<div className="btns-container">
|
|
||||||
{showConfirmBtn && (
|
|
||||||
<button className="action-btn confirm-btn" disabled={editorRef.current?.value === ""} onClick={handleCommonConfirmBtnClick}>
|
|
||||||
{t("editor.save")} <span className="icon-text">✍️</span>
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { IEmojiData } from "emoji-picker-react";
|
import { IEmojiData } from "emoji-picker-react";
|
||||||
import React, { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
import React, { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { deleteMemoResource, getMemoResourceList, upsertMemoResource } from "../helpers/api";
|
||||||
import { UNKNOWN_ID } from "../helpers/consts";
|
import { UNKNOWN_ID } from "../helpers/consts";
|
||||||
import { editorStateService, locationService, memoService, resourceService } from "../services";
|
import { editorStateService, locationService, memoService, resourceService } from "../services";
|
||||||
import { useAppSelector } from "../store";
|
import { useAppSelector } from "../store";
|
||||||
@ -25,6 +26,7 @@ interface State {
|
|||||||
fullscreen: boolean;
|
fullscreen: boolean;
|
||||||
isUploadingResource: boolean;
|
isUploadingResource: boolean;
|
||||||
shouldShowEmojiPicker: boolean;
|
shouldShowEmojiPicker: boolean;
|
||||||
|
resourceList: Resource[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const MemoEditor: React.FC = () => {
|
const MemoEditor: React.FC = () => {
|
||||||
@ -36,9 +38,11 @@ const MemoEditor: React.FC = () => {
|
|||||||
isUploadingResource: false,
|
isUploadingResource: false,
|
||||||
fullscreen: false,
|
fullscreen: false,
|
||||||
shouldShowEmojiPicker: false,
|
shouldShowEmojiPicker: false,
|
||||||
|
resourceList: [],
|
||||||
});
|
});
|
||||||
const editorRef = useRef<EditorRefActions>(null);
|
const [allowSave, setAllowSave] = useState<boolean>(false);
|
||||||
const prevGlobalStateRef = useRef(editorState);
|
const prevGlobalStateRef = useRef(editorState);
|
||||||
|
const editorRef = useRef<EditorRefActions>(null);
|
||||||
const tagSeletorRef = useRef<HTMLDivElement>(null);
|
const tagSeletorRef = useRef<HTMLDivElement>(null);
|
||||||
const editorFontStyle = user?.setting.editorFontStyle || "normal";
|
const editorFontStyle = user?.setting.editorFontStyle || "normal";
|
||||||
const mobileEditorStyle = user?.setting.mobileEditorStyle || "normal";
|
const mobileEditorStyle = user?.setting.mobileEditorStyle || "normal";
|
||||||
@ -50,104 +54,69 @@ const MemoEditor: React.FC = () => {
|
|||||||
editorRef.current?.insertText(memoLinkText);
|
editorRef.current?.insertText(memoLinkText);
|
||||||
editorStateService.clearMarkMemo();
|
editorStateService.clearMarkMemo();
|
||||||
}
|
}
|
||||||
|
}, [editorState.markMemoId]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
if (
|
if (
|
||||||
editorState.editMemoId &&
|
editorState.editMemoId &&
|
||||||
editorState.editMemoId !== UNKNOWN_ID &&
|
editorState.editMemoId !== UNKNOWN_ID &&
|
||||||
editorState.editMemoId !== prevGlobalStateRef.current.editMemoId
|
editorState.editMemoId !== prevGlobalStateRef.current.editMemoId
|
||||||
) {
|
) {
|
||||||
const editMemo = memoService.getMemoById(editorState.editMemoId ?? UNKNOWN_ID);
|
const memo = memoService.getMemoById(editorState.editMemoId ?? UNKNOWN_ID);
|
||||||
if (editMemo) {
|
if (memo) {
|
||||||
editorRef.current?.setContent(editMemo.content ?? "");
|
getMemoResourceList(memo.id).then(({ data: { data } }) => {
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
resourceList: data,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
editorRef.current?.setContent(memo.content ?? "");
|
||||||
editorRef.current?.focus();
|
editorRef.current?.focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
prevGlobalStateRef.current = editorState;
|
prevGlobalStateRef.current = editorState;
|
||||||
}, [editorState.markMemoId, editorState.editMemoId]);
|
}, [state, editorState.editMemoId]);
|
||||||
|
|
||||||
useEffect(() => {
|
const handlePasteEvent = async (event: React.ClipboardEvent) => {
|
||||||
const handlePasteEvent = async (event: ClipboardEvent) => {
|
if (event.clipboardData && event.clipboardData.files.length > 0) {
|
||||||
if (event.clipboardData && event.clipboardData.files.length > 0) {
|
event.preventDefault();
|
||||||
event.preventDefault();
|
const file = event.clipboardData.files[0];
|
||||||
const file = event.clipboardData.files[0];
|
const resource = await handleUploadResource(file);
|
||||||
const url = await handleUploadFile(file);
|
if (resource) {
|
||||||
if (url) {
|
|
||||||
editorRef.current?.insertText(``);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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(``);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleClickEvent = () => {
|
|
||||||
handleContentChange(editorRef.current?.element.value ?? "");
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleKeyDownEvent = () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
handleContentChange(editorRef.current?.element.value ?? "");
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
editorRef.current?.element.addEventListener("paste", handlePasteEvent);
|
|
||||||
editorRef.current?.element.addEventListener("drop", handleDropEvent);
|
|
||||||
editorRef.current?.element.addEventListener("click", handleClickEvent);
|
|
||||||
editorRef.current?.element.addEventListener("keydown", handleKeyDownEvent);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
editorRef.current?.element.removeEventListener("paste", handlePasteEvent);
|
|
||||||
editorRef.current?.element.removeEventListener("drop", handleDropEvent);
|
|
||||||
editorRef.current?.element.removeEventListener("click", handleClickEvent);
|
|
||||||
editorRef.current?.element.removeEventListener("keydown", handleKeyDownEvent);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleUploadFile = useCallback(
|
|
||||||
async (file: File) => {
|
|
||||||
if (state.isUploadingResource) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setState({
|
|
||||||
...state,
|
|
||||||
isUploadingResource: true,
|
|
||||||
});
|
|
||||||
const { type } = file;
|
|
||||||
|
|
||||||
if (!type.startsWith("image")) {
|
|
||||||
toastHelper.error(t("editor.only-image-supported"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const image = await resourceService.upload(file);
|
|
||||||
const url = `/o/r/${image.id}/${image.filename}`;
|
|
||||||
return url;
|
|
||||||
} catch (error: any) {
|
|
||||||
console.error(error);
|
|
||||||
toastHelper.error(error.response.data.message);
|
|
||||||
} finally {
|
|
||||||
setState({
|
setState({
|
||||||
...state,
|
...state,
|
||||||
isUploadingResource: false,
|
resourceList: [...state.resourceList, resource],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
[state]
|
};
|
||||||
);
|
|
||||||
|
|
||||||
const handleSaveBtnClick = async (content: string) => {
|
const handleUploadResource = async (file: File) => {
|
||||||
if (content === "") {
|
setState({
|
||||||
|
...state,
|
||||||
|
isUploadingResource: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
let resource = undefined;
|
||||||
|
|
||||||
|
try {
|
||||||
|
resource = await resourceService.upload(file);
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error(error);
|
||||||
|
toastHelper.error(error.response.data.message);
|
||||||
|
}
|
||||||
|
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
isUploadingResource: false,
|
||||||
|
});
|
||||||
|
return resource;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSaveBtnClick = async () => {
|
||||||
|
const content = editorRef.current?.getContent();
|
||||||
|
if (!content) {
|
||||||
toastHelper.error(t("editor.cant-empty"));
|
toastHelper.error(t("editor.cant-empty"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -165,9 +134,12 @@ const MemoEditor: React.FC = () => {
|
|||||||
}
|
}
|
||||||
editorStateService.clearEditMemo();
|
editorStateService.clearEditMemo();
|
||||||
} else {
|
} else {
|
||||||
await memoService.createMemo({
|
const memo = await memoService.createMemo({
|
||||||
content,
|
content,
|
||||||
});
|
});
|
||||||
|
for (const resource of state.resourceList) {
|
||||||
|
await upsertMemoResource(memo.id, resource.id);
|
||||||
|
}
|
||||||
locationService.clearQuery();
|
locationService.clearQuery();
|
||||||
}
|
}
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
@ -178,19 +150,26 @@ const MemoEditor: React.FC = () => {
|
|||||||
setState({
|
setState({
|
||||||
...state,
|
...state,
|
||||||
fullscreen: false,
|
fullscreen: false,
|
||||||
|
resourceList: [],
|
||||||
});
|
});
|
||||||
setEditorContentCache("");
|
setEditorContentCache("");
|
||||||
|
editorRef.current?.setContent("");
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleCancelEditingBtnClick = useCallback(() => {
|
const handleCancelEditing = () => {
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
resourceList: [],
|
||||||
|
});
|
||||||
editorStateService.clearEditMemo();
|
editorStateService.clearEditMemo();
|
||||||
editorRef.current?.setContent("");
|
editorRef.current?.setContent("");
|
||||||
setEditorContentCache("");
|
setEditorContentCache("");
|
||||||
}, []);
|
};
|
||||||
|
|
||||||
const handleContentChange = useCallback((content: string) => {
|
const handleContentChange = (content: string) => {
|
||||||
|
setAllowSave(content !== "");
|
||||||
setEditorContentCache(content);
|
setEditorContentCache(content);
|
||||||
}, []);
|
};
|
||||||
|
|
||||||
const handleEmojiPickerBtnClick = () => {
|
const handleEmojiPickerBtnClick = () => {
|
||||||
handleChangeShouldShowEmojiPicker(!state.shouldShowEmojiPicker);
|
handleChangeShouldShowEmojiPicker(!state.shouldShowEmojiPicker);
|
||||||
@ -224,7 +203,7 @@ const MemoEditor: React.FC = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleUploadFileBtnClick = useCallback(() => {
|
const handleUploadFileBtnClick = () => {
|
||||||
const inputEl = document.createElement("input");
|
const inputEl = document.createElement("input");
|
||||||
inputEl.style.position = "fixed";
|
inputEl.style.position = "fixed";
|
||||||
inputEl.style.top = "-100vh";
|
inputEl.style.top = "-100vh";
|
||||||
@ -232,22 +211,30 @@ const MemoEditor: React.FC = () => {
|
|||||||
document.body.appendChild(inputEl);
|
document.body.appendChild(inputEl);
|
||||||
inputEl.type = "file";
|
inputEl.type = "file";
|
||||||
inputEl.multiple = true;
|
inputEl.multiple = true;
|
||||||
inputEl.accept = "image/*";
|
inputEl.accept = "*";
|
||||||
inputEl.onchange = async () => {
|
inputEl.onchange = async () => {
|
||||||
if (!inputEl.files || inputEl.files.length === 0) {
|
if (!inputEl.files || inputEl.files.length === 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const resourceList: Resource[] = [];
|
||||||
for (const file of inputEl.files) {
|
for (const file of inputEl.files) {
|
||||||
const url = await handleUploadFile(file);
|
const resource = await handleUploadResource(file);
|
||||||
if (url) {
|
if (resource) {
|
||||||
editorRef.current?.insertText(``);
|
resourceList.push(resource);
|
||||||
|
if (editorState.editMemoId) {
|
||||||
|
await upsertMemoResource(editorState.editMemoId, resource.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
resourceList: [...state.resourceList, ...resourceList],
|
||||||
|
});
|
||||||
document.body.removeChild(inputEl);
|
document.body.removeChild(inputEl);
|
||||||
};
|
};
|
||||||
inputEl.click();
|
inputEl.click();
|
||||||
}, []);
|
};
|
||||||
|
|
||||||
const handleFullscreenBtnClick = () => {
|
const handleFullscreenBtnClick = () => {
|
||||||
setState({
|
setState({
|
||||||
@ -279,6 +266,17 @@ const MemoEditor: React.FC = () => {
|
|||||||
handleChangeShouldShowEmojiPicker(false);
|
handleChangeShouldShowEmojiPicker(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleDeleteResource = async (resourceId: ResourceId) => {
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
resourceList: state.resourceList.filter((resource) => resource.id !== resourceId),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (editorState.editMemoId) {
|
||||||
|
await deleteMemoResource(editorState.editMemoId, resourceId);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const isEditing = Boolean(editorState.editMemoId && editorState.editMemoId !== UNKNOWN_ID);
|
const isEditing = Boolean(editorState.editMemoId && editorState.editMemoId !== UNKNOWN_ID);
|
||||||
|
|
||||||
const editorConfig = useMemo(
|
const editorConfig = useMemo(
|
||||||
@ -287,63 +285,80 @@ const MemoEditor: React.FC = () => {
|
|||||||
initialContent: getEditorContentCache(),
|
initialContent: getEditorContentCache(),
|
||||||
placeholder: t("editor.placeholder"),
|
placeholder: t("editor.placeholder"),
|
||||||
fullscreen: state.fullscreen,
|
fullscreen: state.fullscreen,
|
||||||
showConfirmBtn: true,
|
|
||||||
onConfirmBtnClick: handleSaveBtnClick,
|
|
||||||
onContentChange: handleContentChange,
|
onContentChange: handleContentChange,
|
||||||
}),
|
}),
|
||||||
[isEditing, state.fullscreen, i18n.language, editorFontStyle]
|
[state.fullscreen, i18n.language, editorFontStyle]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`memo-editor-container ${mobileEditorStyle} ${isEditing ? "edit-ing" : ""} ${state.fullscreen ? "fullscreen" : ""}`}>
|
<div className={`memo-editor-container ${mobileEditorStyle} ${isEditing ? "edit-ing" : ""} ${state.fullscreen ? "fullscreen" : ""}`}>
|
||||||
<div className={`tip-container ${isEditing ? "" : "!hidden"}`}>
|
<div className={`tip-container ${isEditing ? "" : "!hidden"}`}>
|
||||||
<span className="tip-text">{t("editor.editing")}</span>
|
<span className="tip-text">{t("editor.editing")}</span>
|
||||||
<button className="cancel-btn" onClick={handleCancelEditingBtnClick}>
|
<button className="cancel-btn" onClick={handleCancelEditing}>
|
||||||
{t("common.cancel")}
|
{t("common.cancel")}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<Editor
|
<Editor ref={editorRef} {...editorConfig} onPaste={handlePasteEvent} />
|
||||||
ref={editorRef}
|
<div className="common-tools-wrapper">
|
||||||
{...editorConfig}
|
<div className="common-tools-container">
|
||||||
tools={
|
<div className="action-btn tag-action">
|
||||||
<>
|
<Icon.Hash className="icon-img" />
|
||||||
<div className="action-btn tag-action">
|
<div ref={tagSeletorRef} className="tag-list" onClick={handleTagSeletorClick}>
|
||||||
<Icon.Hash className="icon-img" />
|
{tags.length > 0 ? (
|
||||||
<div ref={tagSeletorRef} className="tag-list" onClick={handleTagSeletorClick}>
|
tags.map((tag) => {
|
||||||
{tags.length > 0 ? (
|
return (
|
||||||
tags.map((tag) => {
|
<span className="item-container" key={tag}>
|
||||||
return (
|
{tag}
|
||||||
<span className="item-container" key={tag}>
|
</span>
|
||||||
{tag}
|
);
|
||||||
</span>
|
})
|
||||||
);
|
) : (
|
||||||
})
|
<p className="tip-text" onClick={(e) => e.stopPropagation()}>
|
||||||
) : (
|
{t("common.null")}
|
||||||
<p className="tip-text" onClick={(e) => e.stopPropagation()}>
|
</p>
|
||||||
{t("common.null")}
|
)}
|
||||||
</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<button className="action-btn">
|
</div>
|
||||||
<Icon.Smile className="icon-img" onClick={handleEmojiPickerBtnClick} />
|
<button className="action-btn">
|
||||||
</button>
|
<Icon.Smile className="icon-img" onClick={handleEmojiPickerBtnClick} />
|
||||||
<button className="action-btn">
|
</button>
|
||||||
<Icon.CheckSquare className="icon-img" onClick={handleCheckBoxBtnClick} />
|
<button className="action-btn">
|
||||||
</button>
|
<Icon.CheckSquare className="icon-img" onClick={handleCheckBoxBtnClick} />
|
||||||
<button className="action-btn">
|
</button>
|
||||||
<Icon.Code className="icon-img" onClick={handleCodeBlockBtnClick} />
|
<button className="action-btn">
|
||||||
</button>
|
<Icon.Code className="icon-img" onClick={handleCodeBlockBtnClick} />
|
||||||
<button className="action-btn">
|
</button>
|
||||||
<Icon.Image className="icon-img" onClick={handleUploadFileBtnClick} />
|
<button className="action-btn">
|
||||||
<span className={`tip-text ${state.isUploadingResource ? "!block" : ""}`}>Uploading</span>
|
<Icon.FileText className="icon-img" onClick={handleUploadFileBtnClick} />
|
||||||
</button>
|
<span className={`tip-text ${state.isUploadingResource ? "!block" : ""}`}>Uploading</span>
|
||||||
<button className="action-btn" onClick={handleFullscreenBtnClick}>
|
</button>
|
||||||
{state.fullscreen ? <Icon.Minimize className="icon-img" /> : <Icon.Maximize className="icon-img" />}
|
<button className="action-btn" onClick={handleFullscreenBtnClick}>
|
||||||
</button>
|
{state.fullscreen ? <Icon.Minimize className="icon-img" /> : <Icon.Maximize className="icon-img" />}
|
||||||
</>
|
</button>
|
||||||
}
|
</div>
|
||||||
/>
|
<div className="btns-container">
|
||||||
|
<button className="action-btn confirm-btn" disabled={!allowSave} onClick={handleSaveBtnClick}>
|
||||||
|
{t("editor.save")} <span className="icon-text">✍️</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{state.resourceList.length > 0 && (
|
||||||
|
<div className="resource-list-wrapper">
|
||||||
|
{state.resourceList.map((resource) => {
|
||||||
|
return (
|
||||||
|
<div key={resource.id} className="resource-container">
|
||||||
|
{resource.type.includes("image") ? (
|
||||||
|
<Icon.Image className="icon-img" onClick={handleUploadFileBtnClick} />
|
||||||
|
) : (
|
||||||
|
<Icon.FileText className="icon-img" onClick={handleUploadFileBtnClick} />
|
||||||
|
)}
|
||||||
|
<span className="name-text">{resource.filename}</span>
|
||||||
|
<Icon.X className="close-icon" onClick={() => handleDeleteResource(resource.id)} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
<EmojiPicker
|
<EmojiPicker
|
||||||
shouldShow={state.shouldShowEmojiPicker}
|
shouldShow={state.shouldShowEmojiPicker}
|
||||||
onEmojiClick={handleEmojiClick}
|
onEmojiClick={handleEmojiClick}
|
||||||
|
@ -133,6 +133,20 @@ export function deleteResourceById(id: ResourceId) {
|
|||||||
return axios.delete(`/api/resource/${id}`);
|
return axios.delete(`/api/resource/${id}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getMemoResourceList(memoId: MemoId) {
|
||||||
|
return axios.get<ResponseObject<Resource[]>>(`/api/memo/${memoId}/resource`);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function upsertMemoResource(memoId: MemoId, resourceId: ResourceId) {
|
||||||
|
return axios.post<ResponseObject<Resource>>(`/api/memo/${memoId}/resource`, {
|
||||||
|
resourceId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function deleteMemoResource(memoId: MemoId, resourceId: ResourceId) {
|
||||||
|
return axios.delete(`/api/memo/${memoId}/resource/${resourceId}`);
|
||||||
|
}
|
||||||
|
|
||||||
export function getTagList(tagFind?: TagFind) {
|
export function getTagList(tagFind?: TagFind) {
|
||||||
const queryList = [];
|
const queryList = [];
|
||||||
if (tagFind?.creatorId) {
|
if (tagFind?.creatorId) {
|
||||||
|
@ -25,44 +25,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .common-tools-wrapper {
|
|
||||||
@apply w-full flex flex-row justify-between items-center;
|
|
||||||
|
|
||||||
> .common-tools-container {
|
|
||||||
@apply flex flex-row justify-start items-center;
|
|
||||||
|
|
||||||
> .action-btn {
|
|
||||||
@apply flex flex-row justify-center items-center p-1 w-auto h-auto mr-1 select-none rounded cursor-pointer opacity-60 hover:opacity-90 hover:bg-gray-300 hover:shadow;
|
|
||||||
|
|
||||||
> .icon-img {
|
|
||||||
@apply w-5 h-5 mx-auto flex flex-row justify-center items-center;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .tip-text {
|
|
||||||
@apply hidden ml-1 text-xs leading-5 text-gray-700 border border-gray-300 rounded-xl px-2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
> .btns-container {
|
|
||||||
@apply grow-0 shrink-0 flex flex-row justify-end items-center;
|
|
||||||
|
|
||||||
> .action-btn {
|
|
||||||
@apply border-none select-none cursor-pointer py-1 px-3 rounded text-sm hover:opacity-80;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .cancel-btn {
|
|
||||||
@apply text-gray-500 bg-transparent mr-2;
|
|
||||||
}
|
|
||||||
|
|
||||||
> .confirm-btn {
|
|
||||||
@apply shadow cursor-pointer px-3 py-0 leading-8 bg-green-600 text-white text-sm hover:opacity-80 disabled:cursor-not-allowed disabled:opacity-60;
|
|
||||||
|
|
||||||
> .icon-text {
|
|
||||||
@apply text-base ml-1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -63,28 +63,88 @@
|
|||||||
|
|
||||||
> .memo-editor {
|
> .memo-editor {
|
||||||
@apply flex flex-col justify-start items-start relative w-full h-auto bg-white;
|
@apply flex flex-col justify-start items-start relative w-full h-auto bg-white;
|
||||||
|
}
|
||||||
|
|
||||||
.tag-action {
|
> .common-tools-wrapper {
|
||||||
@apply relative;
|
@apply w-full flex flex-row justify-between items-center;
|
||||||
|
|
||||||
&:hover {
|
> .common-tools-container {
|
||||||
> .tag-list {
|
@apply flex flex-row justify-start items-center;
|
||||||
@apply flex;
|
|
||||||
|
> .action-btn {
|
||||||
|
@apply flex flex-row justify-center items-center p-1 w-auto h-auto mr-1 select-none rounded cursor-pointer opacity-60 hover:opacity-90 hover:bg-gray-300 hover:shadow;
|
||||||
|
|
||||||
|
&.tag-action {
|
||||||
|
@apply relative;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
> .tag-list {
|
||||||
|
@apply flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .tag-list {
|
||||||
|
@apply hidden flex-col justify-start items-start absolute top-6 left-0 mt-1 p-1 z-1 rounded w-32 max-h-52 overflow-auto font-mono bg-black;
|
||||||
|
|
||||||
|
> .item-container {
|
||||||
|
@apply w-full text-white cursor-pointer rounded text-sm leading-6 px-2 hover:bg-gray-700;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .tip-text {
|
||||||
|
@apply w-full text-sm text-gray-200 leading-6 px-2 cursor-default;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
> .tag-list {
|
> .icon-img {
|
||||||
@apply hidden flex-col justify-start items-start absolute top-6 left-0 mt-1 p-1 z-1 rounded w-32 max-h-52 overflow-auto font-mono bg-black;
|
@apply w-5 h-5 mx-auto flex flex-row justify-center items-center;
|
||||||
|
|
||||||
> .item-container {
|
|
||||||
@apply w-full text-white cursor-pointer rounded text-sm leading-6 px-2 hover:bg-gray-700;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
> .tip-text {
|
> .tip-text {
|
||||||
@apply w-full text-sm text-gray-200 leading-6 px-2 cursor-default;
|
@apply hidden ml-1 text-xs leading-5 text-gray-700 border border-gray-300 rounded-xl px-2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> .btns-container {
|
||||||
|
@apply grow-0 shrink-0 flex flex-row justify-end items-center;
|
||||||
|
|
||||||
|
> .action-btn {
|
||||||
|
@apply border-none select-none cursor-pointer py-1 px-3 rounded text-sm hover:opacity-80;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .cancel-btn {
|
||||||
|
@apply text-gray-500 bg-transparent mr-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .confirm-btn {
|
||||||
|
@apply shadow cursor-pointer px-3 py-0 leading-8 bg-green-600 text-white text-sm hover:opacity-80 disabled:cursor-not-allowed disabled:opacity-60;
|
||||||
|
|
||||||
|
> .icon-text {
|
||||||
|
@apply text-base ml-1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .resource-list-wrapper {
|
||||||
|
@apply w-full flex flex-row justify-start flex-wrap;
|
||||||
|
|
||||||
|
> .resource-container {
|
||||||
|
@apply mt-1 mr-1 flex flex-row justify-start items-center flex-nowrap bg-gray-50 px-2 py-1 rounded cursor-pointer hover:bg-gray-100;
|
||||||
|
|
||||||
|
> .icon-img {
|
||||||
|
@apply w-4 h-auto mr-1 text-gray-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .name-text {
|
||||||
|
@apply text-gray-500 text-sm max-w-xs truncate font-mono;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .close-icon {
|
||||||
|
@apply w-4 h-auto ml-1 text-gray-500 hover:text-gray-800;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.emoji-picker-react {
|
.emoji-picker-react {
|
||||||
|
@ -93,6 +93,7 @@ const memoService = {
|
|||||||
const { data } = (await api.createMemo(memoCreate)).data;
|
const { data } = (await api.createMemo(memoCreate)).data;
|
||||||
const memo = convertResponseModelMemo(data);
|
const memo = convertResponseModelMemo(data);
|
||||||
store.dispatch(createMemo(memo));
|
store.dispatch(createMemo(memo));
|
||||||
|
return memo;
|
||||||
},
|
},
|
||||||
|
|
||||||
patchMemo: async (memoPatch: MemoPatch): Promise<Memo> => {
|
patchMemo: async (memoPatch: MemoPatch): Promise<Memo> => {
|
||||||
|
Reference in New Issue
Block a user