mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
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');
|
||
|
|
||
|
const targetTagName = event.target ? (event.target as any).tagName : '';
|
||
|
|
||
|
// If we are for example on a checkbox, don't process the click since it
|
||
|
// should be handled by the checkbox onChange handler.
|
||
|
if (['INPUT'].includes(targetTagName)) return;
|
||
|
|
||
|
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;
|