You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-17 23:27:48 +02:00
33 lines
715 B
TypeScript
33 lines
715 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import { useCallback } from 'react';
|
||
|
|
import { Dispatch } from 'redux';
|
||
|
|
|
||
|
|
const useOnNoteClick = (dispatch: Dispatch) => {
|
||
|
|
const onNoteClick = useCallback((event: React.MouseEvent<HTMLDivElement>) => {
|
||
|
|
const noteId = event.currentTarget.getAttribute('data-note-id');
|
||
|
|
|
||
|
|
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]);
|
||
|
|
|
||
|
|
return onNoteClick;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default useOnNoteClick;
|