import noteAutocompleteService from "../../services/note_autocomplete.js"; import treeService from "../../services/tree.js"; import toastService from "../../services/toast.js"; import froca from "../../services/froca.js"; import branchService from "../../services/branches.js"; import appContext from "../../components/app_context.js"; import BasicWidget from "../basic_widget.js"; import { t } from "../../services/i18n.js"; import type { EventData } from "../../components/app_context.js"; import { openDialog } from "../../services/dialog.js"; const TPL = /*html*/` `; export default class CloneToDialog extends BasicWidget { private $form!: JQuery; private $noteAutoComplete!: JQuery; private $clonePrefix!: JQuery; private $noteList!: JQuery; private clonedNoteIds: string[] | null = null; constructor() { super(); } doRender() { this.$widget = $(TPL); this.$form = this.$widget.find(".clone-to-form"); this.$noteAutoComplete = this.$widget.find(".clone-to-note-autocomplete"); this.$clonePrefix = this.$widget.find(".clone-prefix"); this.$noteList = this.$widget.find(".clone-to-note-list"); this.$form.on("submit", () => { const notePath = this.$noteAutoComplete.getSelectedNotePath(); if (notePath) { this.$widget.modal("hide"); this.cloneNotesTo(notePath); } else { logError(t("clone_to.no_path_to_clone_to")); } return false; }); } async cloneNoteIdsToEvent({ noteIds }: EventData<"cloneNoteIdsTo">) { if (!noteIds || noteIds.length === 0) { noteIds = [appContext.tabManager.getActiveContextNoteId() ?? ""]; } this.clonedNoteIds = []; for (const noteId of noteIds) { if (!this.clonedNoteIds.includes(noteId)) { this.clonedNoteIds.push(noteId); } } openDialog(this.$widget); this.$noteAutoComplete.val("").trigger("focus"); this.$noteList.empty(); for (const noteId of this.clonedNoteIds) { const note = await froca.getNote(noteId); if (!note) { continue; } this.$noteList.append($("
  • ").text(note.title)); } noteAutocompleteService.initNoteAutocomplete(this.$noteAutoComplete); noteAutocompleteService.showRecentNotes(this.$noteAutoComplete); } async cloneNotesTo(notePath: string) { const { noteId, parentNoteId } = treeService.getNoteIdAndParentIdFromUrl(notePath); if (!noteId || !parentNoteId) { return; } const targetBranchId = await froca.getBranchId(parentNoteId, noteId); if (!targetBranchId || !this.clonedNoteIds) { return; } for (const cloneNoteId of this.clonedNoteIds) { await branchService.cloneNoteToBranch(cloneNoteId, targetBranchId, this.$clonePrefix.val() as string); const clonedNote = await froca.getNote(cloneNoteId); const targetBranch = froca.getBranch(targetBranchId); if (!clonedNote || !targetBranch) { continue; } const targetNote = await targetBranch.getNote(); if (!targetNote) { continue; } toastService.showMessage(t("clone_to.note_cloned", { clonedTitle: clonedNote.title, targetTitle: targetNote.title })); } } }