1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/revealResourceFile.ts

21 lines
702 B
TypeScript
Raw Normal View History

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',
label: _('Reveal file in folder'),
};
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);
},
};
};