2020-10-09 19:35:46 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration } from 'lib/services/CommandService';
|
|
|
|
import { _ } from 'lib/locale';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'focusElementNoteList',
|
|
|
|
label: () => _('Note list'),
|
2020-09-13 18:21:11 +02:00
|
|
|
parentLabel: () => _('Focus'),
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
|
|
return {
|
2020-10-09 19:35:46 +02:00
|
|
|
execute: async ({ noteId }:any) => {
|
|
|
|
if (noteId) {
|
|
|
|
const ref = comp.itemAnchorRef(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
if (ref) ref.focus();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isEnabled: (props:any):boolean => {
|
2020-10-09 19:35:46 +02:00
|
|
|
return !!props.noteId;
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
|
|
|
mapStateToProps: (state:any):any => {
|
|
|
|
return {
|
2020-10-09 19:35:46 +02:00
|
|
|
noteId: state.selectedNoteIds.length ? state.selectedNoteIds[0] : null,
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|