mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
29 lines
855 B
TypeScript
29 lines
855 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import Resource from '@joplin/lib/models/Resource';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'openPdfViewer',
|
|
label: () => _('Open PDF viewer'),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext, resourceId: string, pageNo: number) => {
|
|
|
|
const resource = await Resource.load(resourceId);
|
|
if (!resource) throw new Error(`No such resource: ${resourceId}`);
|
|
if (resource.mime !== 'application/pdf') throw new Error(`Not a PDF: ${resource.mime}`);
|
|
console.log('Opening PDF', resource);
|
|
context.dispatch({
|
|
type: 'DIALOG_OPEN',
|
|
name: 'pdfViewer',
|
|
props: {
|
|
resource,
|
|
pageNo: pageNo,
|
|
},
|
|
});
|
|
},
|
|
};
|
|
};
|