2024-06-12 14:51:42 -04:00
|
|
|
import {EditorButton} from "./framework/buttons";
|
2024-05-29 15:38:31 -04:00
|
|
|
import {
|
2024-06-19 11:14:20 -04:00
|
|
|
blockquote, bold, bulletList, clearFormating, code,
|
2024-06-06 09:43:50 -04:00
|
|
|
dangerCallout, details,
|
2024-06-12 14:51:42 -04:00
|
|
|
h2, h3, h4, h5, highlightColor, 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-19 11:14:20 -04:00
|
|
|
successCallout, superscript, taskList, textColor, underline,
|
2024-05-29 15:38:31 -04:00
|
|
|
undo,
|
|
|
|
warningCallout
|
|
|
|
} from "./defaults/button-definitions";
|
2024-06-12 14:51:42 -04:00
|
|
|
import {EditorContainerUiElement, EditorSimpleClassContainer} 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-05-29 15:38:31 -04:00
|
|
|
|
2024-06-19 15:00:29 -04:00
|
|
|
console.log(undo);
|
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-06-12 09:24:50 -04:00
|
|
|
// History state
|
2024-05-29 15:38:31 -04:00
|
|
|
new EditorButton(undo),
|
|
|
|
new EditorButton(redo),
|
|
|
|
|
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),
|
|
|
|
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-05-29 15:38:31 -04:00
|
|
|
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'),
|
|
|
|
]),
|
2024-05-29 15:38:31 -04:00
|
|
|
new EditorButton(strikethrough),
|
|
|
|
new EditorButton(superscript),
|
|
|
|
new EditorButton(subscript),
|
|
|
|
new EditorButton(code),
|
2024-06-12 09:24:50 -04:00
|
|
|
new EditorButton(clearFormating),
|
2024-05-29 15:38:31 -04:00
|
|
|
|
2024-06-19 11:14:20 -04:00
|
|
|
// Lists
|
|
|
|
new EditorButton(bulletList),
|
|
|
|
new EditorButton(numberList),
|
|
|
|
new EditorButton(taskList),
|
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Insert types
|
2024-05-29 15:38:31 -04:00
|
|
|
new EditorButton(link),
|
2024-06-05 13:43:42 -04:00
|
|
|
new EditorButton(image),
|
2024-06-06 09:43:50 -04:00
|
|
|
new EditorButton(details),
|
2024-06-12 09:01:36 -04:00
|
|
|
|
2024-06-12 09:24:50 -04:00
|
|
|
// Meta elements
|
2024-06-12 09:01:36 -04:00
|
|
|
new EditorButton(source),
|
2024-05-29 15:38:31 -04:00
|
|
|
]);
|
|
|
|
}
|