mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 05:35:56 +08:00
141 lines
No EOL
4.4 KiB
JavaScript
141 lines
No EOL
4.4 KiB
JavaScript
import treeService from '../services/tree.js';
|
|
import treeUtils from "../services/tree_utils.js";
|
|
import utils from "../services/utils.js";
|
|
import protectedSessionHolder from "../services/protected_session_holder.js";
|
|
import messagingService from "../services/messaging.js";
|
|
import infoService from "../services/info.js";
|
|
|
|
const $dialog = $("#export-dialog");
|
|
const $form = $("#export-form");
|
|
const $noteTitle = $dialog.find(".note-title");
|
|
const $subtreeFormats = $("#export-subtree-formats");
|
|
const $singleFormats = $("#export-single-formats");
|
|
const $subtreeType = $("#export-type-subtree");
|
|
const $singleType = $("#export-type-single");
|
|
const $exportProgressWrapper = $("#export-progress-count-wrapper");
|
|
const $exportProgressCount = $("#export-progress-count");
|
|
const $exportButton = $("#export-button");
|
|
const $opmlVersions = $("#opml-versions");
|
|
|
|
let exportId = '';
|
|
|
|
async function showDialog(defaultType) {
|
|
// each opening of the dialog resets the exportId so we don't associate it with previous exports anymore
|
|
exportId = '';
|
|
$exportButton.removeAttr("disabled");
|
|
$exportProgressWrapper.hide();
|
|
$exportProgressCount.text('0');
|
|
|
|
if (defaultType === 'subtree') {
|
|
$subtreeType.prop("checked", true).change();
|
|
|
|
// to show/hide OPML versions
|
|
$("input[name=export-subtree-format]:checked").change();
|
|
}
|
|
else if (defaultType === 'single') {
|
|
$singleType.prop("checked", true).change();
|
|
}
|
|
else {
|
|
throw new Error("Unrecognized type " + defaultType);
|
|
}
|
|
|
|
$("#opml-v2").prop("checked", true); // setting default
|
|
|
|
glob.activeDialog = $dialog;
|
|
|
|
$dialog.modal();
|
|
|
|
const currentNode = treeService.getCurrentNode();
|
|
const noteTitle = await treeUtils.getNoteTitle(currentNode.data.noteId);
|
|
|
|
$noteTitle.html(noteTitle);
|
|
}
|
|
|
|
$form.submit(() => {
|
|
// disabling so export can't be triggered again
|
|
$exportButton.attr("disabled", "disabled");
|
|
|
|
const exportType = $dialog.find("input[name='export-type']:checked").val();
|
|
|
|
if (!exportType) {
|
|
// this shouldn't happen as we always choose default export type
|
|
alert("Choose export type first please");
|
|
return;
|
|
}
|
|
|
|
const exportFormat = exportType === 'subtree'
|
|
? $("input[name=export-subtree-format]:checked").val()
|
|
: $("input[name=export-single-format]:checked").val();
|
|
|
|
const exportVersion = exportFormat === 'opml' ? $dialog.find("input[name='opml-version']:checked").val() : "1.0";
|
|
|
|
const currentNode = treeService.getCurrentNode();
|
|
|
|
exportBranch(currentNode.data.branchId, exportType, exportFormat, exportVersion);
|
|
|
|
return false;
|
|
});
|
|
|
|
function exportBranch(branchId, type, format, version) {
|
|
exportId = utils.randomString(10);
|
|
|
|
const url = utils.getHost() + `/api/notes/${branchId}/export/${type}/${format}/${version}/${exportId}?protectedSessionId=` + encodeURIComponent(protectedSessionHolder.getProtectedSessionId());
|
|
|
|
utils.download(url);
|
|
}
|
|
|
|
$('input[name=export-type]').change(function () {
|
|
if (this.value === 'subtree') {
|
|
if ($("input[name=export-subtree-format]:checked").length === 0) {
|
|
$("input[name=export-subtree-format]:first").prop("checked", true);
|
|
}
|
|
|
|
$subtreeFormats.slideDown();
|
|
$singleFormats.slideUp();
|
|
}
|
|
else {
|
|
if ($("input[name=export-single-format]:checked").length === 0) {
|
|
$("input[name=export-single-format]:first").prop("checked", true);
|
|
}
|
|
|
|
$subtreeFormats.slideUp();
|
|
$singleFormats.slideDown();
|
|
}
|
|
});
|
|
|
|
$('input[name=export-subtree-format]').change(function () {
|
|
if (this.value === 'opml') {
|
|
$opmlVersions.slideDown();
|
|
}
|
|
else {
|
|
$opmlVersions.slideUp();
|
|
}
|
|
});
|
|
|
|
messagingService.subscribeToMessages(async message => {
|
|
if (message.type === 'export-error') {
|
|
infoService.showError(message.message);
|
|
$dialog.modal('hide');
|
|
return;
|
|
}
|
|
|
|
if (!message.exportId || message.exportId !== exportId) {
|
|
// incoming messages must correspond to this export instance
|
|
return;
|
|
}
|
|
|
|
if (message.type === 'export-progress-count') {
|
|
$exportProgressWrapper.slideDown();
|
|
|
|
$exportProgressCount.text(message.progressCount);
|
|
}
|
|
else if (message.type === 'export-finished') {
|
|
$dialog.modal('hide');
|
|
|
|
infoService.showMessage("Export finished successfully.");
|
|
}
|
|
});
|
|
|
|
export default {
|
|
showDialog
|
|
}; |