BookStack/resources/js/wysiwyg/ui/toolbars.ts

70 lines
2.6 KiB
TypeScript
Raw Normal View History

2024-06-12 14:51:42 -04:00
import {EditorButton} from "./framework/buttons";
import {
blockquote, bold, bulletList, clearFormating, code,
dangerCallout, details,
2024-06-12 14:51:42 -04:00
h2, h3, h4, h5, highlightColor, image,
infoCallout, italic, link, numberList, paragraph,
redo, source, strikethrough, subscript,
successCallout, superscript, taskList, textColor, underline,
undo,
warningCallout
} from "./defaults/button-definitions";
2024-06-12 14:51:42 -04:00
import {EditorContainerUiElement, EditorSimpleClassContainer} from "./framework/core";
import {el} from "../helpers";
2024-06-12 14:51:42 -04:00
import {EditorFormatMenu} from "./framework/blocks/format-menu";
import {FormatPreviewButton} from "./framework/blocks/format-preview-button";
import {EditorDropdownButton} from "./framework/blocks/dropdown-button";
import {EditorColorPicker} from "./framework/blocks/color-picker";
console.log(undo);
export function getMainEditorFullToolbar(): EditorContainerUiElement {
return new EditorSimpleClassContainer('editor-toolbar-main', [
2024-06-12 09:24:50 -04:00
// History state
new EditorButton(undo),
new EditorButton(redo),
2024-06-12 09:24:50 -04:00
// Block formats
new EditorFormatMenu([
new FormatPreviewButton(el('h2'), h2),
new FormatPreviewButton(el('h3'), h3),
new FormatPreviewButton(el('h4'), h4),
new FormatPreviewButton(el('h5'), h5),
new FormatPreviewButton(el('blockquote'), blockquote),
new FormatPreviewButton(el('p'), paragraph),
new FormatPreviewButton(el('p', {class: 'callout info'}), infoCallout),
new FormatPreviewButton(el('p', {class: 'callout success'}), successCallout),
new FormatPreviewButton(el('p', {class: 'callout warning'}), warningCallout),
new FormatPreviewButton(el('p', {class: 'callout danger'}), dangerCallout),
]),
2024-06-12 09:24:50 -04:00
// Inline formats
new EditorButton(bold),
new EditorButton(italic),
new EditorButton(underline),
2024-06-12 14:51:42 -04:00
new EditorDropdownButton(textColor, [
new EditorColorPicker('color'),
]),
new EditorDropdownButton(highlightColor, [
new EditorColorPicker('background-color'),
]),
new EditorButton(strikethrough),
new EditorButton(superscript),
new EditorButton(subscript),
new EditorButton(code),
2024-06-12 09:24:50 -04:00
new EditorButton(clearFormating),
// Lists
new EditorButton(bulletList),
new EditorButton(numberList),
new EditorButton(taskList),
2024-06-12 09:24:50 -04:00
// Insert types
new EditorButton(link),
new EditorButton(image),
new EditorButton(details),
2024-06-12 09:24:50 -04:00
// Meta elements
new EditorButton(source),
]);
}