86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
// Copyright (c) 2024-present AI-Labs
|
|
|
|
// @ ts-nocheck
|
|
import { MenuButton, MenuButtonOptions } from "../../MenuButton.ts";
|
|
import icon from "../../../../assets/icons/blockquote.svg";
|
|
import { t } from "i18next";
|
|
import { UAIEditorEventListener, UAIEditorOptions } from "../../../../core/UAIEditor.ts";
|
|
import { EditorEvents } from "@tiptap/core";
|
|
|
|
/**
|
|
* 基础菜单:引用
|
|
*/
|
|
export class BlockQuote extends HTMLElement implements UAIEditorEventListener {
|
|
// 按钮选项
|
|
menuButtonOptions: MenuButtonOptions = {
|
|
menuType: "button",
|
|
enable: true,
|
|
icon: icon,
|
|
hideText: true,
|
|
text: t('base.blockquote'),
|
|
tooltip: t('base.blockquote'),
|
|
shortcut: "Ctrl+Shift+B",
|
|
}
|
|
|
|
// 功能按钮
|
|
menuButton: MenuButton;
|
|
|
|
constructor(options: MenuButtonOptions) {
|
|
super();
|
|
|
|
// 初始化功能按钮选项
|
|
this.menuButtonOptions = { ...this.menuButtonOptions, ...options };
|
|
|
|
// 创建功能按钮
|
|
this.menuButton = new MenuButton(this.menuButtonOptions);
|
|
}
|
|
|
|
/**
|
|
* 定义创建方法
|
|
* @param event
|
|
* @param options
|
|
*/
|
|
onCreate(event: EditorEvents["create"], options: UAIEditorOptions) {
|
|
this.menuButton.onCreate(event, options);
|
|
this.appendChild(this.menuButton);
|
|
|
|
// 定义按钮点击事件,切换引用状态
|
|
this.addEventListener("click", () => {
|
|
if (this.menuButtonOptions.enable) {
|
|
event.editor.chain().focus().toggleBlockquote().run();
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 定义Transaction监听方法
|
|
* @param event
|
|
* @param options
|
|
*/
|
|
onTransaction(event: EditorEvents["transaction"], options: UAIEditorOptions) {
|
|
this.menuButton.onTransaction(event, options);
|
|
if (this.menuButton.menuButton) {
|
|
var disable = event.editor.can().chain().toggleBlockquote().run();
|
|
this.onEditableChange(disable);
|
|
|
|
if (this.menuButtonOptions.enable) {
|
|
// 判断当前内容是否是引用格式
|
|
var active = event.editor.isActive('blockquote');
|
|
if (active) {
|
|
// 如果是,则按钮是激活状态
|
|
this.menuButton.menuButton.classList.add("active");
|
|
} else {
|
|
// 如果不是,则按钮是非激活状态
|
|
this.menuButton.menuButton.classList.remove("active");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
onEditableChange(editable: boolean) {
|
|
this.menuButtonOptions.enable = editable;
|
|
this.menuButton.onEditableChange(editable);
|
|
}
|
|
}
|
|
|