152 lines
4.0 KiB
TypeScript

/**
* @module mermaid/mermaidui
*/
import insertMermaidIcon from '../theme/icons/insert.svg?raw';
import previewModeIcon from '../theme/icons/preview-mode.svg?raw';
import splitModeIcon from '../theme/icons/split-mode.svg?raw';
import sourceModeIcon from '../theme/icons/source-mode.svg?raw';
import infoIcon from '../theme/icons/info.svg?raw';
import { ButtonView, Editor, ModelElement, Locale, Observable, Plugin } from 'ckeditor5';
import InsertMermaidCommand from './commands/insertMermaidCommand.js';
/* global window, document */
export default class MermaidUI extends Plugin {
/**
* @inheritDoc
*/
static get pluginName() {
return 'MermaidUI' as const;
}
/**
* @inheritDoc
*/
init() {
this._addButtons();
}
/**
* Adds all mermaid-related buttons.
*
* @private
*/
_addButtons() {
const editor = this.editor;
this._addInsertMermaidButton();
this._addMermaidInfoButton();
this._createToolbarButton( editor, 'mermaidPreview', 'Preview', previewModeIcon );
this._createToolbarButton( editor, 'mermaidSourceView', 'Source view', sourceModeIcon );
this._createToolbarButton( editor, 'mermaidSplitView', 'Split view', splitModeIcon );
}
/**
* Adds the button for inserting mermaid.
*
* @private
*/
_addInsertMermaidButton() {
const editor = this.editor;
const t = editor.t;
const view = editor.editing.view;
editor.ui.componentFactory.add( 'mermaid', (locale: Locale) => {
const buttonView = new ButtonView( locale );
const command = editor.commands.get( 'insertMermaidCommand' ) as InsertMermaidCommand;
if (!command) {
throw new Error("Missing command.");
}
buttonView.set( {
label: t( 'Insert Mermaid diagram' ),
icon: insertMermaidIcon,
tooltip: true
} );
buttonView.bind( 'isOn', 'isEnabled' ).to( command as (Observable & { value: boolean; } & { isEnabled: boolean; }), 'value', 'isEnabled' );
// Execute the command when the button is clicked.
command.listenTo( buttonView, 'execute', () => {
const mermaidItem = editor.execute( 'insertMermaidCommand' ) as ModelElement;
const mermaidItemViewElement = editor.editing.mapper.toViewElement( mermaidItem );
view.scrollToTheSelection();
view.focus();
if ( mermaidItemViewElement ) {
const mermaidItemDomElement = view.domConverter.viewToDom( mermaidItemViewElement );
if ( mermaidItemDomElement ) {
(mermaidItemDomElement.querySelector( '.ck-mermaid__editing-view' ) as HTMLElement)?.focus();
}
}
} );
return buttonView;
} );
}
/**
* Adds the button linking to the mermaid guide.
*
* @private
*/
_addMermaidInfoButton() {
const editor = this.editor;
const t = editor.t;
editor.ui.componentFactory.add( 'mermaidInfo', locale => {
const buttonView = new ButtonView( locale );
const link = 'https://ckeditor.com/blog/basic-overview-of-creating-flowcharts-using-mermaid/';
buttonView.set( {
label: t( 'Read more about Mermaid diagram syntax' ),
icon: infoIcon,
tooltip: true
} );
buttonView.on( 'execute', () => {
window.open( link, '_blank', 'noopener' );
} );
return buttonView;
} );
}
/**
* Adds the mermaid balloon toolbar button.
*
* @private
*/
_createToolbarButton( editor: Editor, name: string, label: string, icon: string ) {
const t = editor.t;
editor.ui.componentFactory.add( name, locale => {
const buttonView = new ButtonView( locale );
const command = editor.commands.get( `${ name }Command` );
if (!command) {
throw new Error("Missing command.");
}
buttonView.set( {
label: t( label ),
icon,
tooltip: true
} );
buttonView.bind( 'isOn', 'isEnabled' ).to( command as (Observable & { value: boolean; } & { isEnabled: boolean; }), 'value', 'isEnabled' );
// Execute the command when the button is clicked.
command.listenTo( buttonView, 'execute', () => {
editor.execute( `${ name }Command` );
editor.editing.view.scrollToTheSelection();
editor.editing.view.focus();
} );
return buttonView;
} );
}
}