2024-06-12 14:51:42 -04:00
|
|
|
import {EditorButton} from "./framework/buttons";
|
2024-05-29 15:38:31 -04:00
|
|
|
import {
|
2024-07-17 11:38:20 -04:00
|
|
|
alignCenter, alignJustify,
|
|
|
|
alignLeft,
|
|
|
|
alignRight,
|
2024-07-02 12:34:03 -04:00
|
|
|
blockquote, bold, bulletList, clearFormating, code, codeBlock,
|
2024-07-19 07:09:41 -04:00
|
|
|
dangerCallout, details, diagram, editCodeBlock, fullscreen,
|
2024-06-27 10:48:06 -04:00
|
|
|
h2, h3, h4, h5, highlightColor, horizontalRule, image,
|
2024-06-19 11:14:20 -04:00
|
|
|
infoCallout, italic, link, numberList, paragraph,
|
2024-06-12 09:01:36 -04:00
|
|
|
redo, source, strikethrough, subscript,
|
2024-06-21 11:18:44 -04:00
|
|
|
successCallout, superscript, table, taskList, textColor, underline,
|
2024-06-30 14:52:09 -04:00
|
|
|
undo, unlink,
|
2024-05-29 15:38:31 -04:00
|
|
|
warningCallout
|
|
|
|
} from "./defaults/button-definitions";
|
2024-07-16 11:36:08 -04:00
|
|
|
import {EditorContainerUiElement, EditorSimpleClassContainer, EditorUiElement} from "./framework/core";
|
2024-05-30 07:25:25 -04:00
|
|
|
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";
|
2024-06-21 11:18:44 -04:00
|
|
|
import {EditorTableCreator} from "./framework/blocks/table-creator";
|
2024-06-23 10:50:41 -04:00
|
|
|
import {EditorColorButton} from "./framework/blocks/color-button";
|
2024-06-27 11:28:06 -04:00
|
|
|
import {EditorOverflowContainer} from "./framework/blocks/overflow-container";
|
2024-05-29 15:38:31 -04:00
|
|
|
|
|
|
|
export function getMainEditorFullToolbar(): EditorContainerUiElement {
|
2024-05-30 07:25:25 -04:00
|
|
|
return new EditorSimpleClassContainer('editor-toolbar-main', [
|
2024-07-04 11:16:16 -04:00
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// History state
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorOverflowContainer(2, [
|
|
|
|
new EditorButton(undo),
|
|
|
|
new EditorButton(redo),
|
|
|
|
]),
|
2024-05-29 15:38:31 -04:00
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Block formats
|
2024-05-29 15:38:31 -04:00
|
|
|
new EditorFormatMenu([
|
2024-05-30 07:25:25 -04:00
|
|
|
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),
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorDropdownButton({label: 'Callouts'}, true, [
|
|
|
|
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-05-29 15:38:31 -04:00
|
|
|
]),
|
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Inline formats
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorOverflowContainer(6, [
|
|
|
|
new EditorButton(bold),
|
|
|
|
new EditorButton(italic),
|
|
|
|
new EditorButton(underline),
|
|
|
|
new EditorDropdownButton(new EditorColorButton(textColor, 'color'), false, [
|
|
|
|
new EditorColorPicker('color'),
|
|
|
|
]),
|
|
|
|
new EditorDropdownButton(new EditorColorButton(highlightColor, 'background-color'), false, [
|
|
|
|
new EditorColorPicker('background-color'),
|
|
|
|
]),
|
|
|
|
new EditorButton(strikethrough),
|
|
|
|
new EditorButton(superscript),
|
|
|
|
new EditorButton(subscript),
|
|
|
|
new EditorButton(code),
|
|
|
|
new EditorButton(clearFormating),
|
2024-06-12 14:51:42 -04:00
|
|
|
]),
|
2024-05-29 15:38:31 -04:00
|
|
|
|
2024-07-17 11:38:20 -04:00
|
|
|
// Alignment
|
|
|
|
new EditorOverflowContainer(4, [
|
|
|
|
new EditorButton(alignLeft),
|
|
|
|
new EditorButton(alignCenter),
|
|
|
|
new EditorButton(alignRight),
|
|
|
|
new EditorButton(alignJustify),
|
|
|
|
]),
|
|
|
|
|
2024-06-19 11:14:20 -04:00
|
|
|
// Lists
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorOverflowContainer(3, [
|
|
|
|
new EditorButton(bulletList),
|
|
|
|
new EditorButton(numberList),
|
|
|
|
new EditorButton(taskList),
|
|
|
|
]),
|
2024-06-19 11:14:20 -04:00
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Insert types
|
2024-06-27 11:28:06 -04:00
|
|
|
new EditorOverflowContainer(6, [
|
|
|
|
new EditorButton(link),
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorDropdownButton(table, false, [
|
2024-06-27 11:28:06 -04:00
|
|
|
new EditorTableCreator(),
|
|
|
|
]),
|
|
|
|
new EditorButton(image),
|
|
|
|
new EditorButton(horizontalRule),
|
2024-07-02 12:34:03 -04:00
|
|
|
new EditorButton(codeBlock),
|
2024-07-19 07:09:41 -04:00
|
|
|
new EditorButton(diagram),
|
2024-06-27 11:28:06 -04:00
|
|
|
new EditorButton(details),
|
2024-06-21 11:18:44 -04:00
|
|
|
]),
|
2024-06-12 09:01:36 -04:00
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Meta elements
|
2024-07-04 11:16:16 -04:00
|
|
|
new EditorOverflowContainer(3, [
|
|
|
|
new EditorButton(source),
|
|
|
|
new EditorButton(fullscreen),
|
2024-06-24 15:50:17 -04:00
|
|
|
|
2024-07-04 11:16:16 -04:00
|
|
|
// Test
|
2024-07-09 15:49:47 -04:00
|
|
|
// new EditorButton({
|
|
|
|
// label: 'Test button',
|
|
|
|
// action(context: EditorUiContext) {
|
|
|
|
// context.editor.update(() => {
|
|
|
|
// // Do stuff
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// isActive() {
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
// })
|
2024-07-04 11:16:16 -04:00
|
|
|
]),
|
2024-05-29 15:38:31 -04:00
|
|
|
]);
|
2024-06-30 07:13:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getImageToolbarContent(): EditorUiElement[] {
|
|
|
|
return [new EditorButton(image)];
|
2024-06-30 14:52:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getLinkToolbarContent(): EditorUiElement[] {
|
|
|
|
return [
|
|
|
|
new EditorButton(link),
|
|
|
|
new EditorButton(unlink),
|
|
|
|
];
|
2024-07-16 11:36:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getCodeToolbarContent(): EditorUiElement[] {
|
|
|
|
return [
|
|
|
|
new EditorButton(editCodeBlock),
|
|
|
|
];
|
2024-05-29 15:38:31 -04:00
|
|
|
}
|