添加插入链接菜单

This commit is contained in:
wux_labs
2025-02-18 11:52:33 +08:00
parent 6cba20d1f8
commit adad3a656f
6 changed files with 283 additions and 1 deletions
+36
View File
@@ -46,6 +46,8 @@ import { BlockQuote } from "./base/BlockQuote.ts";
import { CodeBlock } from "./base/CodeBlock.ts";
import { Print } from "./base/Print.ts";
import { Link } from "./insert/Link";
/**
* 传统菜单栏
*/
@@ -61,6 +63,10 @@ export class Classic extends HTMLElement implements UAIEditorEventListener {
classicMenuBaseScrollable!: ScrollableDiv;
classicMenuBaseGroup!: HTMLElement;
// 插入菜单容器
classicMenuInsertScrollable!: ScrollableDiv;
classicMenuInsertGroup!: HTMLElement;
// 基础菜单
baseMenuUndo!: Undo;
baseMenuRedo!: Redo;
@@ -97,6 +103,9 @@ export class Classic extends HTMLElement implements UAIEditorEventListener {
baseMenuCodeBlock!: CodeBlock;
baseMenuPrint!: Print;
// 插入菜单
insertMenuLink!: Link;
constructor(defaultToolbarMenus: Record<string, any>[]) {
super();
this.defaultToolbarMenus = defaultToolbarMenus;
@@ -141,12 +150,17 @@ export class Classic extends HTMLElement implements UAIEditorEventListener {
selectMuenus.addEventListener("change", () => {
const menu = selectMuenus.selectedOptions[0].value;
this.classicMenuBaseScrollable.style.display = "none";
this.classicMenuInsertScrollable.style.display = "none";
if (menu === "base") {
this.classicMenuBaseScrollable.style.display = "flex";
}
if (menu === "insert") {
this.classicMenuInsertScrollable.style.display = "flex";
}
})
// 创建分组菜单
this.createBaseMenu(event, options);
this.createInsertMenu(event, options);
this.classicMenuBaseScrollable.style.display = "flex";
}
@@ -260,6 +274,9 @@ export class Classic extends HTMLElement implements UAIEditorEventListener {
this.baseMenuPrint = new Print({ menuType: "button", enable: true, header: "classic", hideText: false });
this.eventComponents.push(this.baseMenuPrint);
this.insertMenuLink = new Link({ menuType: "button", enable: true, header: "classic", hideText: false });
this.eventComponents.push(this.insertMenuLink);
}
/**
* 创建基础菜单
@@ -320,4 +337,23 @@ export class Classic extends HTMLElement implements UAIEditorEventListener {
this.classicMenuBaseGroup.appendChild(group4);
group4.appendChild(this.baseMenuPrint);
}
/**
* 创建插入菜单
* @param event
* @param options
*/
createInsertMenu(event: EditorEvents["create"], options: UAIEditorOptions) {
this.classicMenuInsertGroup = document.createElement("div");
this.classicMenuInsertGroup.style.display = "flex";
this.classicMenuInsertScrollable = new ScrollableDiv(this.classicMenuInsertGroup);
this.classicMenuInsertScrollable.style.display = "none";
this.classicMenu.appendChild(this.classicMenuInsertScrollable);
this.classicMenuInsertScrollable.onCreate(event, options);
const group1 = document.createElement("div");
group1.classList.add("uai-classic-virtual-group");
this.classicMenuInsertGroup.appendChild(group1);
group1.appendChild(this.insertMenuLink);
}
}
+36
View File
@@ -48,6 +48,8 @@ import { CodeBlock } from "./base/CodeBlock.ts";
import { Print } from "./base/Print.ts";
import { Link } from "./insert/Link";
/**
* 经典菜单栏
*/
@@ -64,6 +66,10 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
ribbonMenuBaseScrollable!: ScrollableDiv;
ribbonMenuBaseGroup!: HTMLElement;
// 插入菜单容器
ribbonMenuInsertScrollable!: ScrollableDiv;
ribbonMenuInsertGroup!: HTMLElement;
// 基础菜单
baseMenuUndo!: Undo;
baseMenuRedo!: Redo;
@@ -100,6 +106,9 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
baseMenuCodeBlock!: CodeBlock;
baseMenuPrint!: Print;
// 插入菜单
insertMenuLink!: Link;
constructor(defaultToolbarMenus: Record<string, any>[]) {
super();
this.defaultToolbarMenus = defaultToolbarMenus;
@@ -137,9 +146,13 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
}
tab.classList.add("active");
this.ribbonMenuBaseScrollable.style.display = "none";
this.ribbonMenuInsertScrollable.style.display = "none";
if (menu.value === "base") {
this.ribbonMenuBaseScrollable.style.display = "flex";
}
if (menu.value === "insert") {
this.ribbonMenuInsertScrollable.style.display = "flex";
}
})
ribbonTabs.appendChild(tab);
});
@@ -158,6 +171,7 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
// 创建分组菜单
this.createBaseMenu(event, options);
this.createInsertMenu(event, options);
this.ribbonMenuBaseScrollable.style.display = "flex";
}
@@ -283,6 +297,9 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
this.baseMenuPrint = new Print({ menuType: "button", enable: true, huge: true, hideText: false });
this.eventComponents.push(this.baseMenuPrint);
this.insertMenuLink = new Link({ menuType: "button", enable: true, huge: true });
this.eventComponents.push(this.insertMenuLink);
}
/**
@@ -417,4 +434,23 @@ export class Ribbon extends HTMLElement implements UAIEditorEventListener {
this.ribbonMenuBaseGroup.appendChild(group5);
group5.appendChild(this.baseMenuPrint);
}
/**
* 创建插入菜单
* @param event
* @param options
*/
createInsertMenu(_event: EditorEvents["create"], _options: UAIEditorOptions) {
this.ribbonMenuInsertGroup = document.createElement("div");
this.ribbonMenuInsertGroup.classList.add("uai-ribbon-container");
this.ribbonMenuInsertGroup.style.display = "flex";
this.ribbonMenuInsertScrollable = new ScrollableDiv(this.ribbonMenuInsertGroup);
this.ribbonMenuInsertScrollable.style.display = "none";
this.ribbonScrollableContainer.appendChild(this.ribbonMenuInsertScrollable);
const group1 = document.createElement("div");
group1.classList.add("uai-ribbon-virtual-group");
this.ribbonMenuInsertGroup.appendChild(group1);
group1.appendChild(this.insertMenuLink);
}
}
+130
View File
@@ -0,0 +1,130 @@
// Copyright (c) 2024-present AI-Labs
// @ ts-nocheck
import { MenuButton, MenuButtonOptions } from "../../MenuButton.ts";
import icon from "../../../../assets/icons/link.svg";
import { t } from "i18next";
import { UAIEditorEventListener, UAIEditorOptions, InnerEditor } from "../../../../core/UAIEditor.ts";
import { EditorEvents } from "@tiptap/core";
import { CenterModal } from "../../../modals/CenterModal.ts";
/**
* 插入菜单:插入链接
*/
export class Link extends HTMLElement implements UAIEditorEventListener {
// 按钮选项
menuButtonOptions: MenuButtonOptions = {
menuType: "button",
enable: true,
icon: icon,
hideText: false,
text: t('insert.link.text'),
tooltip: t('insert.link.text'),
}
// 功能按钮
menuButton: MenuButton;
// 模态框
modal: CenterModal;
// 链接文本
textInput!: HTMLInputElement;
// 链接地址
hrefInput!: HTMLInputElement;
constructor(options: MenuButtonOptions) {
super();
// 初始化功能按钮选项
this.menuButtonOptions = { ...this.menuButtonOptions, ...options };
// 创建功能按钮
this.menuButton = new MenuButton(this.menuButtonOptions);
// 创建模态框
this.modal = new CenterModal(t('insert.link.title'));
}
/**
* 定义创建方法
* @param event
* @param options
*/
onCreate(event: EditorEvents["create"], options: UAIEditorOptions) {
this.menuButton.onCreate(event, options);
this.appendChild(this.menuButton);
// 定义模态框中链接文本输入
const group1 = document.createElement("div");
group1.classList.add("form-group");
// 链接文本输入框
const textLabel = document.createElement("label")
textLabel.setAttribute("for", "textInput");
textLabel.innerHTML = t('insert.link.hrefText');
this.textInput = document.createElement("input");
this.textInput.id = "textInput";
this.textInput.classList.add("form-control");
group1.appendChild(textLabel);
group1.appendChild(this.textInput);
this.modal.modalBody.appendChild(group1);
const group2 = document.createElement("div");
group2.classList.add("form-group");
// 定义模态框中链接地址输入
const hrefLabel = document.createElement("label")
hrefLabel.setAttribute("for", "hrefInput");
hrefLabel.innerHTML = t('insert.link.href');
this.hrefInput = document.createElement("input");
this.hrefInput.id = "hrefInput";
this.hrefInput.classList.add("form-control");
// 链接地址输入框
group2.appendChild(hrefLabel);
group2.appendChild(this.hrefInput);
this.modal.modalBody.appendChild(group2);
// 定义按钮点击事件,模态框中点确认时插入链接到文档
this.modal.commit.addEventListener("click", () => {
event.editor.commands.setLink({ href: this.hrefInput.value, target: '_blank' });
event.editor.chain().focus().insertContent(this.textInput.value).run();
this.modal.hide();
});
// 定义按钮点击事件,弹出模态框并编辑
this.addEventListener("click", () => {
if (this.menuButtonOptions.enable) {
const state = event.editor.state;
this.textInput.value = state.doc.textBetween(state.selection.from, state.selection.to);
const href = event.editor.getAttributes('link').href;
if (href) {
this.hrefInput.value = href;
}
this.modal.show();
}
})
}
/**
* 定义Transaction监听方法
* @param event
* @param options
*/
onTransaction(event: EditorEvents["transaction"], options: UAIEditorOptions) {
this.menuButton.onTransaction(event, options);
if (this.menuButton.menuButton) {
var disable = event.editor.isEditable;
this.onEditableChange(disable);
}
// 清空输入内容
if (this.hrefInput) {
this.hrefInput.value = "";
}
}
onEditableChange(editable: boolean) {
this.menuButtonOptions.enable = editable;
this.menuButton.onEditableChange(editable);
}
}