2018-03-01 22:14:06 +02:00
|
|
|
const { _ } = require('lib/locale');
|
|
|
|
const { bridge } = require('electron').remote.require('./bridge');
|
|
|
|
const InteropService = require('lib/services/InteropService');
|
2019-12-17 11:44:48 +02:00
|
|
|
const Setting = require('lib/models/Setting');
|
|
|
|
const md5 = require('md5');
|
|
|
|
const url = require('url');
|
|
|
|
const { shim } = require('lib/shim');
|
|
|
|
// const { BrowserWindow } = require('electron');
|
2018-03-01 22:14:06 +02:00
|
|
|
|
|
|
|
class InteropServiceHelper {
|
|
|
|
|
2019-12-17 11:44:48 +02:00
|
|
|
static async exportNoteToHtmlFile(noteId) {
|
|
|
|
const tempFile = `${Setting.value('tempDir')}/${md5(Date.now() + Math.random())}.html`;
|
|
|
|
const exportOptions = {};
|
|
|
|
exportOptions.path = tempFile;
|
|
|
|
exportOptions.format = 'html';
|
|
|
|
exportOptions.target = 'file';
|
|
|
|
exportOptions.sourceNoteIds = [noteId];
|
|
|
|
|
|
|
|
const service = new InteropService();
|
|
|
|
|
|
|
|
const result = await service.export(exportOptions);
|
|
|
|
console.info('Export HTML result: ', result);
|
|
|
|
return tempFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
static async exportNoteTo_(target, noteId, options = {}) {
|
|
|
|
let win = null;
|
|
|
|
let htmlFile = null;
|
|
|
|
|
|
|
|
const cleanup = () => {
|
|
|
|
if (win) win.destroy();
|
|
|
|
if (htmlFile) shim.fsDriver().remove(htmlFile);
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
htmlFile = await this.exportNoteToHtmlFile(noteId);
|
|
|
|
|
|
|
|
const windowOptions = {
|
|
|
|
show: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
win = bridge().newBrowserWindow(windowOptions);
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2019-12-17 13:08:55 +02:00
|
|
|
win.webContents.on('did-finish-load', async () => {
|
2019-12-17 11:44:48 +02:00
|
|
|
|
|
|
|
if (target === 'pdf') {
|
2019-12-17 13:08:55 +02:00
|
|
|
try {
|
|
|
|
const data = await win.webContents.printToPDF(options);
|
2019-12-17 11:44:48 +02:00
|
|
|
resolve(data);
|
2019-12-17 13:08:55 +02:00
|
|
|
} catch (error) {
|
|
|
|
reject(error);
|
|
|
|
} finally {
|
|
|
|
cleanup();
|
|
|
|
}
|
2019-12-17 11:44:48 +02:00
|
|
|
} else {
|
|
|
|
win.webContents.print(options, (success) => {
|
|
|
|
// TODO: This is correct but broken in Electron 4. Need to upgrade to 5+
|
|
|
|
// It calls the callback right away with "false" even if the document hasn't be print yet.
|
|
|
|
|
|
|
|
cleanup();
|
|
|
|
if (!success) reject(new Error('Could not print'));
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
win.loadURL(url.format({
|
|
|
|
pathname: htmlFile,
|
|
|
|
protocol: 'file:',
|
|
|
|
slashes: true,
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
cleanup();
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static async exportNoteToPdf(noteId, options = {}) {
|
|
|
|
return this.exportNoteTo_('pdf', noteId, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
static async printNote(noteId, options = {}) {
|
|
|
|
return this.exportNoteTo_('printer', noteId, options);
|
|
|
|
}
|
|
|
|
|
2018-03-01 22:14:06 +02:00
|
|
|
static async export(dispatch, module, options = null) {
|
|
|
|
if (!options) options = {};
|
|
|
|
|
|
|
|
let path = null;
|
|
|
|
|
|
|
|
if (module.target === 'file') {
|
|
|
|
path = bridge().showSaveDialog({
|
2019-07-30 09:35:42 +02:00
|
|
|
filters: [{ name: module.description, extensions: module.fileExtensions}],
|
2018-03-01 22:14:06 +02:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
path = bridge().showOpenDialog({
|
|
|
|
properties: ['openDirectory', 'createDirectory'],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!path || (Array.isArray(path) && !path.length)) return;
|
|
|
|
|
|
|
|
if (Array.isArray(path)) path = path[0];
|
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: 'WINDOW_COMMAND',
|
|
|
|
name: 'showModalMessage',
|
|
|
|
message: _('Exporting to "%s" as "%s" format. Please wait...', path, module.format),
|
|
|
|
});
|
|
|
|
|
|
|
|
const exportOptions = {};
|
|
|
|
exportOptions.path = path;
|
|
|
|
exportOptions.format = module.format;
|
2019-12-15 20:41:13 +02:00
|
|
|
exportOptions.modulePath = module.path;
|
|
|
|
exportOptions.target = module.target;
|
2018-03-01 22:14:06 +02:00
|
|
|
if (options.sourceFolderIds) exportOptions.sourceFolderIds = options.sourceFolderIds;
|
|
|
|
if (options.sourceNoteIds) exportOptions.sourceNoteIds = options.sourceNoteIds;
|
|
|
|
|
|
|
|
const service = new InteropService();
|
|
|
|
|
2019-10-11 20:20:12 +02:00
|
|
|
try {
|
|
|
|
const result = await service.export(exportOptions);
|
|
|
|
console.info('Export result: ', result);
|
|
|
|
} catch (error) {
|
2019-12-17 02:40:25 +02:00
|
|
|
console.error(error);
|
2019-10-11 20:20:12 +02:00
|
|
|
bridge().showErrorMessageBox(_('Could not export notes: %s', error.message));
|
|
|
|
}
|
2018-03-01 22:14:06 +02:00
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: 'WINDOW_COMMAND',
|
|
|
|
name: 'hideModalMessage',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = InteropServiceHelper;
|