/* This file is part of Ezra Bible App.
Copyright (C) 2019 - 2023 Ezra Bible App Development Team <contact@ezrabibleapp.net>
Ezra Bible App is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
Ezra Bible App is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Ezra Bible App. See the file LICENSE.
If not, see <http://www.gnu.org/licenses/>. */
const docxController = require('./docx_controller.js');
/**
* The ExportController saves exported verses with notes or tags as generated Word document.
*
* @category Controller
*/
module.exports.saveWordDocument = async function (exportFilePath, title, verses, bibleBooks=undefined, notes={}) {
if (!exportFilePath) {
console.log('Export error: exportFilePath is not defined with showSaveDialog()');
return;
}
const buffer = await docxController.generateDocument(title, verses, bibleBooks, notes);
console.log("Saving word document " + exportFilePath);
const fs = require('fs/promises');
await fs.writeFile(exportFilePath, buffer);
const shell = require('electron').shell;
shell.openPath(exportFilePath);
};
Source