mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-09 08:45:55 +02:00
21 lines
698 B
TypeScript
21 lines
698 B
TypeScript
import { ImportExportResult } from './types';
|
|
import importEnex from '../../import-enex';
|
|
import InteropService_Importer_Base from './InteropService_Importer_Base';
|
|
import Folder from '../../models/Folder';
|
|
const { filename } = require('../../path-utils');
|
|
|
|
export default class InteropService_Importer_EnexToMd extends InteropService_Importer_Base {
|
|
public async exec(result: ImportExportResult) {
|
|
let folder = this.options_.destinationFolder;
|
|
|
|
if (!folder) {
|
|
const folderTitle = await Folder.findUniqueItemTitle(filename(this.sourcePath_));
|
|
folder = await Folder.save({ title: folderTitle });
|
|
}
|
|
|
|
await importEnex(folder.id, this.sourcePath_, this.options_);
|
|
|
|
return result;
|
|
}
|
|
}
|