mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 20:31:10 +02:00
chore: support double-click to edit memo (#207)
This commit is contained in:
parent
020b211660
commit
d1a4348048
@ -171,6 +171,20 @@ const Memo: React.FC<Props> = (props: Props) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleMemoContentDoubleClick = (e: React.MouseEvent) => {
|
||||||
|
const targetEl = e.target as HTMLElement;
|
||||||
|
|
||||||
|
if (targetEl.className === "memo-link-text") {
|
||||||
|
return;
|
||||||
|
} else if (targetEl.className === "tag-span") {
|
||||||
|
return;
|
||||||
|
} else if (targetEl.classList.contains("todo-block")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
editorStateService.setEditMemoWithId(memo.id);
|
||||||
|
};
|
||||||
|
|
||||||
const handleExpandBtnClick = () => {
|
const handleExpandBtnClick = () => {
|
||||||
const expandButtonStatus = Boolean(!state.expandButtonStatus);
|
const expandButtonStatus = Boolean(!state.expandButtonStatus);
|
||||||
if (!expandButtonStatus) {
|
if (!expandButtonStatus) {
|
||||||
@ -228,6 +242,7 @@ const Memo: React.FC<Props> = (props: Props) => {
|
|||||||
ref={memoContentContainerRef}
|
ref={memoContentContainerRef}
|
||||||
className={`memo-content-text ${state.expandButtonStatus === 0 ? "expanded" : ""}`}
|
className={`memo-content-text ${state.expandButtonStatus === 0 ? "expanded" : ""}`}
|
||||||
onClick={handleMemoContentClick}
|
onClick={handleMemoContentClick}
|
||||||
|
onDoubleClick={handleMemoContentDoubleClick}
|
||||||
dangerouslySetInnerHTML={{ __html: formatMemoContent(memo.content) }}
|
dangerouslySetInnerHTML={{ __html: formatMemoContent(memo.content) }}
|
||||||
></div>
|
></div>
|
||||||
{state.expandButtonStatus !== -1 && (
|
{state.expandButtonStatus !== -1 && (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user