1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-27 10:32:58 +02:00
joplin/packages/app-desktop/gui/WindowCommandsAndDialogs/commands/revealResourceFile.ts
Henry Heino 4a88d6ff7a
Desktop: Multiple window support (#11181)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
2024-11-08 15:32:05 +00:00

21 lines
707 B
TypeScript

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);
},
};
};