File size: 4,206 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | import React, { useEffect, useRef, useState } from 'react';
import { useNotebookStore } from '@/store/notebookStore';
import { useTranslation } from '@/hooks/useTranslation';
import { useResponsiveSize } from '@/hooks/useResponsiveSize';
import { TextSelection } from '@/utils/sel';
import { md5Fingerprint } from '@/utils/md5';
import { BookNote } from '@/types/book';
import useShortcuts from '@/hooks/useShortcuts';
import TextEditor, { TextEditorRef } from '@/components/TextEditor';
import TextButton from '@/components/TextButton';
interface NoteEditorProps {
onSave: (selection: TextSelection, note: string) => void;
onEdit: (annotation: BookNote) => void;
}
const NoteEditor: React.FC<NoteEditorProps> = ({ onSave, onEdit }) => {
const _ = useTranslation();
const {
notebookNewAnnotation,
notebookEditAnnotation,
setNotebookNewAnnotation,
setNotebookEditAnnotation,
saveNotebookAnnotationDraft,
getNotebookAnnotationDraft,
} = useNotebookStore();
const editorRef = useRef<TextEditorRef>(null);
const [note, setNote] = useState('');
const separatorWidth = useResponsiveSize(3);
useEffect(() => {
if (notebookEditAnnotation) {
const noteText = notebookEditAnnotation.note;
setNote(noteText);
editorRef.current?.setValue(noteText);
editorRef.current?.focus();
} else if (notebookNewAnnotation) {
const noteText = getAnnotationText();
if (noteText) {
const draftNote = getNotebookAnnotationDraft(md5Fingerprint(noteText)) || '';
setNote(draftNote);
editorRef.current?.setValue(draftNote);
editorRef.current?.focus();
}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [notebookNewAnnotation, notebookEditAnnotation]);
const getAnnotationText = () => {
return notebookEditAnnotation?.text || notebookNewAnnotation?.text || '';
};
const handleNoteChange = (value: string) => {
setNote(value);
};
const handleBlur = () => {
const currentValue = editorRef.current?.getValue();
if (currentValue) {
const noteText = getAnnotationText();
if (noteText) {
saveNotebookAnnotationDraft(md5Fingerprint(noteText), currentValue);
}
}
};
const handleSaveNote = () => {
const currentValue = editorRef.current?.getValue();
if (currentValue) {
if (notebookNewAnnotation) {
onSave(notebookNewAnnotation, currentValue);
} else if (notebookEditAnnotation) {
notebookEditAnnotation.note = currentValue;
onEdit(notebookEditAnnotation);
}
}
};
const handleEscape = () => {
if (notebookNewAnnotation) {
setNotebookNewAnnotation(null);
}
if (notebookEditAnnotation) {
setNotebookEditAnnotation(null);
}
};
useShortcuts({
onSaveNote: () => {
const currentValue = editorRef.current?.getValue();
if (currentValue) {
handleSaveNote();
}
},
onEscape: handleEscape,
});
const canSave = Boolean(note.trim());
return (
<div className='content booknote-item note-editor-container bg-base-100 mt-2 rounded-md p-2'>
<div className='flex w-full'>
<TextEditor
ref={editorRef}
value={note}
onChange={handleNoteChange}
onBlur={handleBlur}
onSave={handleSaveNote}
onEscape={handleEscape}
placeholder={_('Add your notes here...')}
spellCheck={false}
/>
</div>
<div className='flex items-center pt-2'>
<div
className='me-2 mt-0.5 min-h-full self-stretch rounded-xl bg-gray-300'
style={{
minWidth: `${separatorWidth}px`,
}}
></div>
<div className='content font-size-sm line-clamp-3'>
<span className='content font-size-xs text-gray-500'>{getAnnotationText()}</span>
</div>
</div>
<div className='flex justify-end space-x-3 p-2' dir='ltr'>
<TextButton onClick={handleEscape}>{_('Cancel')}</TextButton>
<TextButton onClick={handleSaveNote} disabled={!canSave}>
{_('Save')}
</TextButton>
</div>
</div>
);
};
export default NoteEditor;
|