mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
import InteropService from '@joplin/lib/services/interop/InteropService';
|
|
import { ExportModuleOutputFormat, ExportOptions, FileSystemItem } from '@joplin/lib/services/interop/types';
|
|
import shim from '@joplin/lib/shim';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'exportFolders',
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
// "targetPath" should be a file for JEX export (because the format can
|
|
// contain multiple folders) or a directory otherwise.
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
execute: async (_context: any, folderIds: string[], format: ExportModuleOutputFormat, targetPath: string) => {
|
|
const exportOptions: ExportOptions = {
|
|
sourceFolderIds: folderIds,
|
|
path: targetPath,
|
|
format: format,
|
|
target: FileSystemItem.Directory,
|
|
};
|
|
|
|
const targetMustBeFile = format === 'jex';
|
|
const targetIsDir = await shim.fsDriver().isDirectory(targetPath);
|
|
|
|
if (targetMustBeFile && targetIsDir) {
|
|
throw new Error(`Format "${format}" can only be exported to a file`);
|
|
}
|
|
|
|
if (format === 'jex' || !targetIsDir) {
|
|
exportOptions.target = FileSystemItem.File;
|
|
}
|
|
|
|
return InteropService.instance().export(exportOptions);
|
|
},
|
|
};
|
|
};
|