| 
									
										
										
										
											2024-07-24 17:34:26 +08:00
										 |  |  | import { t } from "../../services/i18n.js"; | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | import toastService from "../../services/toast.js"; | 
					
						
							|  |  |  | import utils from "../../services/utils.js"; | 
					
						
							| 
									
										
										
										
											2022-12-01 13:07:23 +01:00
										 |  |  | import appContext from "../../components/app_context.js"; | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | import BasicWidget from "../basic_widget.js"; | 
					
						
							| 
									
										
										
										
											2022-12-01 00:17:15 +01:00
										 |  |  | import shortcutService from "../../services/shortcuts.js"; | 
					
						
							| 
									
										
										
										
											2023-07-15 10:31:50 +02:00
										 |  |  | import server from "../../services/server.js"; | 
					
						
							| 
									
										
										
										
											2025-02-21 20:41:00 +01:00
										 |  |  | import { Modal } from "bootstrap"; | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-01 23:24:21 +03:00
										 |  |  | const TPL = /*html*/`
 | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | <div class="markdown-import-dialog modal fade mx-auto" tabindex="-1" role="dialog"> | 
					
						
							|  |  |  |     <div class="modal-dialog modal-lg" role="document"> | 
					
						
							|  |  |  |         <div class="modal-content"> | 
					
						
							|  |  |  |             <div class="modal-header"> | 
					
						
							| 
									
										
										
										
											2024-07-24 17:34:26 +08:00
										 |  |  |                 <h5 class="modal-title">${t("markdown_import.dialog_title")}</h5> | 
					
						
							| 
									
										
										
										
											2024-12-16 21:03:26 +01:00
										 |  |  |                 <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t("markdown_import.close")}"></button> | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |             </div> | 
					
						
							|  |  |  |             <div class="modal-body"> | 
					
						
							| 
									
										
										
										
											2024-07-24 17:34:26 +08:00
										 |  |  |                 <p>${t("markdown_import.modal_body_text")}</p> | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 <textarea class="markdown-import-textarea" style="height: 340px; width: 100%"></textarea> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |             <div class="modal-footer"> | 
					
						
							| 
									
										
										
										
											2024-07-24 17:34:26 +08:00
										 |  |  |                 <button class="markdown-import-button btn btn-primary">${t("markdown_import.import_button")}</button> | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | </div>`;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  | interface RenderMarkdownResponse { | 
					
						
							|  |  |  |     htmlContent: string; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | export default class MarkdownImportDialog extends BasicWidget { | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private lastOpenedTs: number; | 
					
						
							|  |  |  |     private modal!: bootstrap.Modal; | 
					
						
							|  |  |  |     private $importTextarea!: JQuery<HTMLElement>; | 
					
						
							|  |  |  |     private $importButton!: JQuery<HTMLElement>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |     constructor() { | 
					
						
							|  |  |  |         super(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         this.lastOpenedTs = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     doRender() { | 
					
						
							|  |  |  |         this.$widget = $(TPL); | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  |         this.modal = Modal.getOrCreateInstance(this.$widget[0]); | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         this.$importTextarea = this.$widget.find(".markdown-import-textarea"); | 
					
						
							|  |  |  |         this.$importButton = this.$widget.find(".markdown-import-button"); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         this.$importButton.on("click", () => this.sendForm()); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         this.$widget.on("shown.bs.modal", () => this.$importTextarea.trigger("focus")); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         shortcutService.bindElShortcut(this.$widget, "ctrl+return", () => this.sendForm()); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  |     async convertMarkdownToHtml(markdownContent: string) { | 
					
						
							|  |  |  |         const { htmlContent } = await server.post<RenderMarkdownResponse>("other/render-markdown", { markdownContent }); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  |         const textEditor = await appContext.tabManager.getActiveContext()?.getTextEditor(); | 
					
						
							|  |  |  |         if (!textEditor) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-15 10:31:50 +02:00
										 |  |  |         const viewFragment = textEditor.data.processor.toView(htmlContent); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |         const modelFragment = textEditor.data.toModel(viewFragment); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         textEditor.model.insertContent(modelFragment, textEditor.model.document.selection); | 
					
						
							| 
									
										
										
										
											2025-06-13 19:40:49 +08:00
										 |  |  |         textEditor.editing.view.focus(); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 17:34:26 +08:00
										 |  |  |         toastService.showMessage(t("markdown_import.import_success")); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-16 19:29:18 +02:00
										 |  |  |     async pasteMarkdownIntoTextEvent() { | 
					
						
							|  |  |  |         await this.importMarkdownInlineEvent(); // BC with keyboard shortcuts command
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |     async importMarkdownInlineEvent() { | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         if (appContext.tabManager.getActiveContextNoteType() !== "text") { | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (utils.isElectron()) { | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |             const { clipboard } = utils.dynamicRequire("electron"); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |             const text = clipboard.readText(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             this.convertMarkdownToHtml(text); | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |             utils.openDialog(this.$widget); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async sendForm() { | 
					
						
							| 
									
										
										
										
											2025-03-19 23:06:16 +02:00
										 |  |  |         const text = String(this.$importTextarea.val()); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-03 18:15:10 +02:00
										 |  |  |         this.modal.hide(); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         await this.convertMarkdownToHtml(text); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-09 18:07:02 +02:00
										 |  |  |         this.$importTextarea.val(""); | 
					
						
							| 
									
										
										
										
											2022-06-16 15:15:42 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } |