2021-12-27 18:40:46 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
import Resource from '@joplin/lib/models/Resource';
|
|
|
|
import bridge from '../../../services/bridge';
|
|
|
|
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
|
|
name: 'revealResourceFile',
|
2023-09-17 09:35:12 +02:00
|
|
|
label: () =>_('Reveal file in folder'),
|
2021-12-27 18:40:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
|
|
return {
|
|
|
|
execute: async (_context: CommandContext, itemId: string) => {
|
|
|
|
const resource = await Resource.load(itemId);
|
|
|
|
if (!resource) throw new Error(`No such resource: ${itemId}`);
|
|
|
|
const fullPath = Resource.fullPath(resource);
|
|
|
|
bridge().showItemInFolder(fullPath);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|