2020-11-07 17:59:37 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'focusSearch',
|
|
|
|
label: () => _('Search in all the notes'),
|
|
|
|
};
|
|
|
|
|
2024-04-05 13:16:49 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (searchBarRef: any): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
|
|
|
execute: async () => {
|
2021-04-06 20:13:43 +02:00
|
|
|
if (searchBarRef.current) searchBarRef.current.select();
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|