mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 15:22:36 +00:00
16518a4f89
- Updated selection change detection to be more accurate - Added UI refresh for extra actions - Fixed remove link deleting contents
220 lines
7.8 KiB
TypeScript
220 lines
7.8 KiB
TypeScript
import {EditorButtonDefinition} from "../../framework/buttons";
|
|
import linkIcon from "@icons/editor/link.svg";
|
|
import {EditorUiContext} from "../../framework/core";
|
|
import {
|
|
$createTextNode,
|
|
$getRoot,
|
|
$getSelection, $insertNodes,
|
|
BaseSelection,
|
|
ElementNode, isCurrentlyReadOnlyMode
|
|
} from "lexical";
|
|
import {$isLinkNode, LinkNode} from "@lexical/link";
|
|
import unlinkIcon from "@icons/editor/unlink.svg";
|
|
import imageIcon from "@icons/editor/image.svg";
|
|
import {$isImageNode, ImageNode} from "../../../nodes/image";
|
|
import horizontalRuleIcon from "@icons/editor/horizontal-rule.svg";
|
|
import {$createHorizontalRuleNode, $isHorizontalRuleNode} from "../../../nodes/horizontal-rule";
|
|
import codeBlockIcon from "@icons/editor/code-block.svg";
|
|
import {$isCodeBlockNode} from "../../../nodes/code-block";
|
|
import editIcon from "@icons/edit.svg";
|
|
import diagramIcon from "@icons/editor/diagram.svg";
|
|
import {$createDiagramNode, DiagramNode} from "../../../nodes/diagram";
|
|
import detailsIcon from "@icons/editor/details.svg";
|
|
import mediaIcon from "@icons/editor/media.svg";
|
|
import {$createDetailsNode, $isDetailsNode} from "../../../nodes/details";
|
|
import {$isMediaNode, MediaNode} from "../../../nodes/media";
|
|
import {
|
|
$getNodeFromSelection,
|
|
$insertNewBlockNodeAtSelection,
|
|
$selectionContainsNodeType, getLastSelection
|
|
} from "../../../utils/selection";
|
|
import {$isDiagramNode, $openDrawingEditorForNode, showDiagramManagerForInsert} from "../../../utils/diagrams";
|
|
import {$createLinkedImageNodeFromImageData, showImageManager} from "../../../utils/images";
|
|
import {$showImageForm, $showLinkForm} from "../forms/objects";
|
|
import {formatCodeBlock} from "../../../utils/formats";
|
|
|
|
export const link: EditorButtonDefinition = {
|
|
label: 'Insert/edit link',
|
|
icon: linkIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.getEditorState().read(() => {
|
|
const selectedLink = $getNodeFromSelection($getSelection(), $isLinkNode) as LinkNode | null;
|
|
$showLinkForm(selectedLink, context);
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isLinkNode);
|
|
}
|
|
};
|
|
|
|
export const unlink: EditorButtonDefinition = {
|
|
label: 'Remove link',
|
|
icon: unlinkIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.update(() => {
|
|
const selection = getLastSelection(context.editor);
|
|
const selectedLink = $getNodeFromSelection(selection, $isLinkNode) as LinkNode | null;
|
|
|
|
if (selectedLink) {
|
|
const contents = selectedLink.getChildren().reverse();
|
|
for (const child of contents) {
|
|
selectedLink.insertAfter(child);
|
|
}
|
|
selectedLink.remove();
|
|
|
|
contents[contents.length - 1].selectStart();
|
|
|
|
context.manager.triggerFutureStateRefresh();
|
|
}
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
|
|
export const image: EditorButtonDefinition = {
|
|
label: 'Insert/Edit Image',
|
|
icon: imageIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.getEditorState().read(() => {
|
|
const selection = getLastSelection(context.editor);
|
|
const selectedImage = $getNodeFromSelection(selection, $isImageNode) as ImageNode | null;
|
|
if (selectedImage) {
|
|
$showImageForm(selectedImage, context);
|
|
return;
|
|
}
|
|
|
|
showImageManager((image) => {
|
|
context.editor.update(() => {
|
|
const link = $createLinkedImageNodeFromImageData(image);
|
|
$insertNodes([link]);
|
|
});
|
|
})
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isImageNode);
|
|
}
|
|
};
|
|
|
|
export const horizontalRule: EditorButtonDefinition = {
|
|
label: 'Insert horizontal line',
|
|
icon: horizontalRuleIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.update(() => {
|
|
$insertNewBlockNodeAtSelection($createHorizontalRuleNode(), false);
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isHorizontalRuleNode);
|
|
}
|
|
};
|
|
|
|
export const codeBlock: EditorButtonDefinition = {
|
|
label: 'Insert code block',
|
|
icon: codeBlockIcon,
|
|
action(context: EditorUiContext) {
|
|
formatCodeBlock(context.editor);
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isCodeBlockNode);
|
|
}
|
|
};
|
|
|
|
export const editCodeBlock: EditorButtonDefinition = Object.assign({}, codeBlock, {
|
|
label: 'Edit code block',
|
|
icon: editIcon,
|
|
});
|
|
|
|
export const diagram: EditorButtonDefinition = {
|
|
label: 'Insert/edit drawing',
|
|
icon: diagramIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.getEditorState().read(() => {
|
|
const selection = getLastSelection(context.editor);
|
|
const diagramNode = $getNodeFromSelection(selection, $isDiagramNode) as (DiagramNode | null);
|
|
if (diagramNode === null) {
|
|
context.editor.update(() => {
|
|
const diagram = $createDiagramNode();
|
|
$insertNewBlockNodeAtSelection(diagram, true);
|
|
$openDrawingEditorForNode(context, diagram);
|
|
diagram.selectStart();
|
|
});
|
|
} else {
|
|
$openDrawingEditorForNode(context, diagramNode);
|
|
}
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isDiagramNode);
|
|
}
|
|
};
|
|
|
|
export const diagramManager: EditorButtonDefinition = {
|
|
label: 'Drawing manager',
|
|
action(context: EditorUiContext) {
|
|
showDiagramManagerForInsert(context);
|
|
},
|
|
isActive(): boolean {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
export const media: EditorButtonDefinition = {
|
|
label: 'Insert/edit Media',
|
|
icon: mediaIcon,
|
|
action(context: EditorUiContext) {
|
|
const mediaModal = context.manager.createModal('media');
|
|
|
|
context.editor.getEditorState().read(() => {
|
|
const selection = $getSelection();
|
|
const selectedNode = $getNodeFromSelection(selection, $isMediaNode) as MediaNode | null;
|
|
|
|
let formDefaults = {};
|
|
if (selectedNode) {
|
|
const nodeAttrs = selectedNode.getAttributes();
|
|
formDefaults = {
|
|
src: nodeAttrs.src || nodeAttrs.data || '',
|
|
width: nodeAttrs.width,
|
|
height: nodeAttrs.height,
|
|
embed: '',
|
|
}
|
|
}
|
|
|
|
mediaModal.show(formDefaults);
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isMediaNode);
|
|
}
|
|
};
|
|
|
|
export const details: EditorButtonDefinition = {
|
|
label: 'Insert collapsible block',
|
|
icon: detailsIcon,
|
|
action(context: EditorUiContext) {
|
|
context.editor.update(() => {
|
|
const selection = $getSelection();
|
|
const detailsNode = $createDetailsNode();
|
|
const selectionNodes = selection?.getNodes() || [];
|
|
const topLevels = selectionNodes.map(n => n.getTopLevelElement())
|
|
.filter(n => n !== null) as ElementNode[];
|
|
const uniqueTopLevels = [...new Set(topLevels)];
|
|
|
|
if (uniqueTopLevels.length > 0) {
|
|
uniqueTopLevels[0].insertAfter(detailsNode);
|
|
} else {
|
|
$getRoot().append(detailsNode);
|
|
}
|
|
|
|
for (const node of uniqueTopLevels) {
|
|
detailsNode.append(node);
|
|
}
|
|
});
|
|
},
|
|
isActive(selection: BaseSelection | null): boolean {
|
|
return $selectionContainsNodeType(selection, $isDetailsNode);
|
|
}
|
|
} |