You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Desktop: Multiple window support (#11181)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
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);
|
||||
},
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user