2022-04-11 17:49:32 +02:00
|
|
|
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2022-04-19 19:01:52 +02:00
|
|
|
import { profileIdByIndex } from '@joplin/lib/services/profileConfig';
|
2022-04-11 17:49:32 +02:00
|
|
|
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
|
|
name: 'switchProfile2',
|
|
|
|
label: () => _('Switch to profile %d', 2),
|
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
|
|
return {
|
2022-04-16 16:04:06 +02:00
|
|
|
execute: async (context: CommandContext) => {
|
|
|
|
await CommandService.instance().execute('switchProfile', profileIdByIndex(context.state.profileConfig, 1));
|
2022-04-11 17:49:32 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|