You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-17 23:27:48 +02:00
36 lines
809 B
TypeScript
36 lines
809 B
TypeScript
import * as React from 'react';
|
|
import { useCallback } from 'react';
|
|
import { Dispatch } from 'redux';
|
|
import { FocusNote } from './useFocusNote';
|
|
|
|
const useOnNoteClick = (dispatch: Dispatch, focusNote: FocusNote) => {
|
|
const onNoteClick = useCallback((event: React.MouseEvent<HTMLDivElement>) => {
|
|
const noteId = event.currentTarget.getAttribute('data-id');
|
|
|
|
focusNote(noteId);
|
|
|
|
if (event.ctrlKey || event.metaKey) {
|
|
event.preventDefault();
|
|
dispatch({
|
|
type: 'NOTE_SELECT_TOGGLE',
|
|
id: noteId,
|
|
});
|
|
} else if (event.shiftKey) {
|
|
event.preventDefault();
|
|
dispatch({
|
|
type: 'NOTE_SELECT_EXTEND',
|
|
id: noteId,
|
|
});
|
|
} else {
|
|
dispatch({
|
|
type: 'NOTE_SELECT',
|
|
id: noteId,
|
|
});
|
|
}
|
|
}, [dispatch, focusNote]);
|
|
|
|
return onNoteClick;
|
|
};
|
|
|
|
export default useOnNoteClick;
|