2025-06-24 10:45:06 +00:00
|
|
|
import {
|
|
|
|
customElement,
|
|
|
|
property,
|
2025-06-24 13:41:12 +00:00
|
|
|
static as html,
|
2025-06-24 10:45:06 +00:00
|
|
|
DeesElement,
|
|
|
|
type TemplateResult,
|
|
|
|
cssManager,
|
|
|
|
css,
|
|
|
|
} from '@design.estate/dees-element';
|
|
|
|
|
|
|
|
import { type IBlock } from './wysiwyg.types.js';
|
|
|
|
import { WysiwygBlocks } from './wysiwyg.blocks.js';
|
2025-06-24 13:41:12 +00:00
|
|
|
import { WysiwygSelection } from './wysiwyg.selection.js';
|
2025-06-24 22:45:50 +00:00
|
|
|
import { BlockRegistry, type IBlockEventHandlers } from './blocks/index.js';
|
|
|
|
import './wysiwyg.blockregistration.js';
|
2025-06-27 19:25:34 +00:00
|
|
|
import { WysiwygShortcuts } from './wysiwyg.shortcuts.js';
|
|
|
|
import '../dees-contextmenu.js';
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface HTMLElementTagNameMap {
|
|
|
|
'dees-wysiwyg-block': DeesWysiwygBlock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@customElement('dees-wysiwyg-block')
|
|
|
|
export class DeesWysiwygBlock extends DeesElement {
|
2025-06-24 16:49:40 +00:00
|
|
|
async disconnectedCallback() {
|
|
|
|
await super.disconnectedCallback();
|
|
|
|
// Clean up selection handler
|
|
|
|
if ((this as any)._selectionHandler) {
|
|
|
|
document.removeEventListener('selectionchange', (this as any)._selectionHandler);
|
|
|
|
}
|
|
|
|
}
|
2025-06-24 10:45:06 +00:00
|
|
|
@property({ type: Object })
|
|
|
|
public block: IBlock;
|
|
|
|
|
|
|
|
@property({ type: Boolean })
|
|
|
|
public isSelected: boolean = false;
|
|
|
|
|
|
|
|
@property({ type: Object })
|
2025-06-24 22:45:50 +00:00
|
|
|
public handlers: IBlockEventHandlers;
|
2025-06-27 19:29:26 +00:00
|
|
|
|
|
|
|
@property({ type: Object })
|
|
|
|
public wysiwygComponent: any; // Reference to parent dees-input-wysiwyg
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Reference to the editable block element
|
|
|
|
private blockElement: HTMLDivElement | null = null;
|
2025-06-24 11:06:02 +00:00
|
|
|
|
|
|
|
// Track if we've initialized the content
|
|
|
|
private contentInitialized: boolean = false;
|
2025-06-24 15:17:37 +00:00
|
|
|
|
|
|
|
// Track cursor position
|
|
|
|
private lastKnownCursorPosition: number = 0;
|
2025-06-24 16:49:40 +00:00
|
|
|
private lastSelectedText: string = '';
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-26 11:41:58 +00:00
|
|
|
private handlerStylesInjected = false;
|
2025-06-24 22:45:50 +00:00
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Block types that don't support contenteditable
|
|
|
|
private static readonly NON_EDITABLE_TYPES = ['image', 'divider', 'youtube'];
|
|
|
|
|
2025-06-24 22:45:50 +00:00
|
|
|
private injectHandlerStyles(): void {
|
2025-06-26 11:41:58 +00:00
|
|
|
// Only inject once per instance
|
|
|
|
if (this.handlerStylesInjected) return;
|
|
|
|
this.handlerStylesInjected = true;
|
2025-06-24 22:45:50 +00:00
|
|
|
|
|
|
|
// Get styles from all registered block handlers
|
|
|
|
let styles = '';
|
|
|
|
const blockTypes = BlockRegistry.getAllTypes();
|
|
|
|
for (const type of blockTypes) {
|
|
|
|
const handler = BlockRegistry.getHandler(type);
|
|
|
|
if (handler) {
|
|
|
|
styles += handler.getStyles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (styles) {
|
|
|
|
// Create and inject style element
|
|
|
|
const styleElement = document.createElement('style');
|
|
|
|
styleElement.textContent = styles;
|
|
|
|
this.shadowRoot?.appendChild(styleElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-24 10:45:06 +00:00
|
|
|
public static styles = [
|
|
|
|
cssManager.defaultStyles,
|
|
|
|
css`
|
|
|
|
:host {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block {
|
|
|
|
padding: 4px 0;
|
|
|
|
min-height: 1.6em;
|
|
|
|
outline: none;
|
|
|
|
width: 100%;
|
|
|
|
word-wrap: break-word;
|
|
|
|
position: relative;
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
color: ${cssManager.bdTheme('#000000', '#e0e0e0')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.block:empty:not(:focus)::before {
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
/* Block-specific styles moved to handlers */
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Formatting styles */
|
|
|
|
.block :is(b, strong) {
|
|
|
|
font-weight: 600;
|
|
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.block :is(i, em) {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block u {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block s {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block code {
|
|
|
|
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
|
|
|
|
font-size: 0.9em;
|
|
|
|
background: ${cssManager.bdTheme('rgba(0, 0, 0, 0.06)', 'rgba(255, 255, 255, 0.1)')};
|
|
|
|
padding: 2px 6px;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: ${cssManager.bdTheme('#d14', '#ff6b6b')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.block a {
|
|
|
|
color: ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
transition: border-color 0.15s ease;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.block a:hover {
|
|
|
|
border-bottom-color: ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
|
|
}
|
|
|
|
|
2025-06-26 11:41:58 +00:00
|
|
|
/* Code block container and language styles moved to handler */
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
/* Selection styles */
|
|
|
|
.block ::selection {
|
|
|
|
background: ${cssManager.bdTheme('rgba(0, 102, 204, 0.3)', 'rgba(77, 148, 255, 0.3)')};
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Strike through */
|
|
|
|
.block :is(s, strike) {
|
|
|
|
text-decoration: line-through;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Block margin adjustments based on type */
|
|
|
|
:host-context(.block-wrapper:first-child) .block {
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
:host-context(.block-wrapper:last-child) .block {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Selected state */
|
|
|
|
.block.selected {
|
|
|
|
background: ${cssManager.bdTheme('rgba(0, 102, 204, 0.05)', 'rgba(77, 148, 255, 0.08)')};
|
|
|
|
box-shadow: inset 0 0 0 2px ${cssManager.bdTheme('rgba(0, 102, 204, 0.2)', 'rgba(77, 148, 255, 0.2)')};
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-left: -8px;
|
|
|
|
margin-right: -8px;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2025-06-24 17:16:13 +00:00
|
|
|
|
2025-06-24 20:32:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2025-06-24 10:45:06 +00:00
|
|
|
`,
|
|
|
|
];
|
|
|
|
|
2025-06-24 11:06:02 +00:00
|
|
|
protected shouldUpdate(changedProperties: Map<string, any>): boolean {
|
2025-06-24 23:15:56 +00:00
|
|
|
// If selection state changed, update the selected class without re-rendering
|
|
|
|
if (changedProperties.has('isSelected') && this.block) {
|
|
|
|
// Find the block element based on block type
|
|
|
|
let element: HTMLElement | null = null;
|
|
|
|
|
|
|
|
// Build the specific selector based on block type
|
|
|
|
const blockType = this.block.type;
|
|
|
|
const selector = `.block.${blockType}`;
|
|
|
|
|
|
|
|
element = this.shadowRoot?.querySelector(selector) as HTMLElement;
|
|
|
|
|
2025-06-24 18:43:51 +00:00
|
|
|
if (element) {
|
|
|
|
if (this.isSelected) {
|
|
|
|
element.classList.add('selected');
|
|
|
|
} else {
|
|
|
|
element.classList.remove('selected');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false; // Don't re-render, just update the class
|
|
|
|
}
|
|
|
|
|
2025-06-24 11:06:02 +00:00
|
|
|
// Never update if only the block content changed
|
|
|
|
if (changedProperties.has('block') && this.block) {
|
|
|
|
const oldBlock = changedProperties.get('block');
|
2025-06-24 22:45:50 +00:00
|
|
|
if (oldBlock && oldBlock.id && oldBlock.type && oldBlock.id === this.block.id && oldBlock.type === this.block.type) {
|
2025-06-24 11:06:02 +00:00
|
|
|
// Only content or metadata changed, don't re-render
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-24 10:45:06 +00:00
|
|
|
// Only update if the block type or id changes
|
|
|
|
return !this.blockElement || this.block?.type !== this.blockElement.dataset.blockType;
|
|
|
|
}
|
2025-06-24 11:06:02 +00:00
|
|
|
|
|
|
|
public firstUpdated(): void {
|
|
|
|
// Mark that content has been initialized
|
|
|
|
this.contentInitialized = true;
|
|
|
|
|
2025-06-24 22:45:50 +00:00
|
|
|
// Inject handler styles if not already done
|
|
|
|
this.injectHandlerStyles();
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// First, populate the container with the rendered content
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLDivElement;
|
|
|
|
if (container && this.block) {
|
|
|
|
container.innerHTML = this.renderBlockContent();
|
|
|
|
}
|
|
|
|
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
if (this.block) {
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler) {
|
|
|
|
const blockElement = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
if (blockElement) {
|
|
|
|
handler.setup(blockElement, this.block, this.handlers);
|
|
|
|
}
|
|
|
|
return; // Block handler takes care of all setup
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-24 18:43:51 +00:00
|
|
|
// Handle special block types
|
2025-06-24 17:16:13 +00:00
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Now find the actual editable block element
|
2025-06-26 13:32:37 +00:00
|
|
|
const editableBlock = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:41:12 +00:00
|
|
|
|
2025-06-24 11:06:02 +00:00
|
|
|
// Ensure the block element maintains its content
|
2025-06-24 13:41:12 +00:00
|
|
|
if (editableBlock) {
|
|
|
|
editableBlock.setAttribute('data-block-id', this.block.id);
|
|
|
|
editableBlock.setAttribute('data-block-type', this.block.type);
|
|
|
|
|
|
|
|
// Set up all event handlers manually to avoid Lit re-renders
|
|
|
|
editableBlock.addEventListener('input', (e) => {
|
|
|
|
this.handlers?.onInput?.(e as InputEvent);
|
2025-06-24 15:17:37 +00:00
|
|
|
|
|
|
|
// Track cursor position after input
|
|
|
|
const pos = this.getCursorPosition(editableBlock);
|
|
|
|
if (pos !== null) {
|
|
|
|
this.lastKnownCursorPosition = pos;
|
|
|
|
}
|
2025-06-24 13:41:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
editableBlock.addEventListener('keydown', (e) => {
|
2025-06-24 15:17:37 +00:00
|
|
|
// Track cursor position before keydown
|
|
|
|
const pos = this.getCursorPosition(editableBlock);
|
|
|
|
if (pos !== null) {
|
|
|
|
this.lastKnownCursorPosition = pos;
|
|
|
|
}
|
|
|
|
|
2025-06-24 13:41:12 +00:00
|
|
|
this.handlers?.onKeyDown?.(e);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
editableBlock.addEventListener('focus', () => {
|
|
|
|
this.handlers?.onFocus?.();
|
|
|
|
});
|
|
|
|
|
|
|
|
editableBlock.addEventListener('blur', () => {
|
|
|
|
this.handlers?.onBlur?.();
|
|
|
|
});
|
|
|
|
|
|
|
|
editableBlock.addEventListener('compositionstart', () => {
|
|
|
|
this.handlers?.onCompositionStart?.();
|
|
|
|
});
|
|
|
|
|
|
|
|
editableBlock.addEventListener('compositionend', () => {
|
|
|
|
this.handlers?.onCompositionEnd?.();
|
|
|
|
});
|
|
|
|
|
|
|
|
editableBlock.addEventListener('mouseup', (e) => {
|
2025-06-24 16:49:40 +00:00
|
|
|
const pos = this.getCursorPosition(editableBlock);
|
|
|
|
if (pos !== null) {
|
|
|
|
this.lastKnownCursorPosition = pos;
|
|
|
|
}
|
2025-06-24 15:17:37 +00:00
|
|
|
|
2025-06-24 16:49:40 +00:00
|
|
|
// Selection will be handled by selectionchange event
|
2025-06-24 13:41:12 +00:00
|
|
|
this.handlers?.onMouseUp?.(e);
|
|
|
|
});
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
editableBlock.addEventListener('click', () => {
|
2025-06-24 15:17:37 +00:00
|
|
|
// Small delay to let browser set cursor position
|
|
|
|
setTimeout(() => {
|
|
|
|
const pos = this.getCursorPosition(editableBlock);
|
|
|
|
if (pos !== null) {
|
|
|
|
this.lastKnownCursorPosition = pos;
|
|
|
|
}
|
|
|
|
}, 0);
|
2025-06-24 13:41:12 +00:00
|
|
|
});
|
|
|
|
|
2025-06-24 16:49:40 +00:00
|
|
|
// Add selection change handler
|
|
|
|
const checkSelection = () => {
|
|
|
|
const selection = window.getSelection();
|
|
|
|
if (!selection || selection.rangeCount === 0) return;
|
|
|
|
|
|
|
|
const selectedText = selection.toString();
|
|
|
|
if (selectedText.length === 0) {
|
|
|
|
// Clear selection if no text
|
|
|
|
if (this.lastSelectedText) {
|
|
|
|
this.lastSelectedText = '';
|
|
|
|
this.dispatchEvent(new CustomEvent('block-text-selected', {
|
|
|
|
detail: {
|
|
|
|
text: '',
|
|
|
|
blockId: this.block.id,
|
|
|
|
hasSelection: false
|
|
|
|
},
|
|
|
|
bubbles: true,
|
|
|
|
composed: true
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get fresh reference to the editable block
|
2025-06-26 13:32:37 +00:00
|
|
|
const currentEditableBlock = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 16:49:40 +00:00
|
|
|
|
|
|
|
if (!currentEditableBlock) return;
|
|
|
|
|
|
|
|
// Get parent wysiwyg component's shadow root
|
|
|
|
const parentComponent = this.closest('dees-input-wysiwyg');
|
|
|
|
const parentShadowRoot = parentComponent?.shadowRoot;
|
|
|
|
|
|
|
|
// Use getComposedRanges with shadow roots as per MDN docs
|
|
|
|
const shadowRoots: ShadowRoot[] = [];
|
|
|
|
if (parentShadowRoot) shadowRoots.push(parentShadowRoot);
|
|
|
|
if (this.shadowRoot) shadowRoots.push(this.shadowRoot);
|
|
|
|
|
|
|
|
// Get selection info using our Shadow DOM-aware utility
|
|
|
|
const selectionInfo = WysiwygSelection.getSelectionInfo(...shadowRoots);
|
|
|
|
if (!selectionInfo) return;
|
|
|
|
|
|
|
|
// Check if selection is within this block
|
2025-06-24 22:45:50 +00:00
|
|
|
const startInBlock = WysiwygSelection.containsAcrossShadowDOM(currentEditableBlock, selectionInfo.startContainer);
|
|
|
|
const endInBlock = WysiwygSelection.containsAcrossShadowDOM(currentEditableBlock, selectionInfo.endContainer);
|
2025-06-24 16:49:40 +00:00
|
|
|
|
|
|
|
if (startInBlock || endInBlock) {
|
|
|
|
if (selectedText !== this.lastSelectedText) {
|
|
|
|
this.lastSelectedText = selectedText;
|
|
|
|
|
|
|
|
// Create range and get rect
|
|
|
|
const range = WysiwygSelection.createRangeFromInfo(selectionInfo);
|
|
|
|
const rect = range.getBoundingClientRect();
|
|
|
|
|
|
|
|
// Dispatch event
|
|
|
|
this.dispatchEvent(new CustomEvent('block-text-selected', {
|
|
|
|
detail: {
|
|
|
|
text: selectedText.trim(),
|
|
|
|
blockId: this.block.id,
|
|
|
|
range: range,
|
|
|
|
rect: rect,
|
|
|
|
hasSelection: true
|
|
|
|
},
|
|
|
|
bubbles: true,
|
|
|
|
composed: true
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
} else if (this.lastSelectedText) {
|
|
|
|
// Clear selection if no longer in this block
|
|
|
|
this.lastSelectedText = '';
|
|
|
|
this.dispatchEvent(new CustomEvent('block-text-selected', {
|
|
|
|
detail: {
|
|
|
|
text: '',
|
|
|
|
blockId: this.block.id,
|
|
|
|
hasSelection: false
|
|
|
|
},
|
|
|
|
bubbles: true,
|
|
|
|
composed: true
|
|
|
|
}));
|
|
|
|
}
|
2025-06-24 16:31:00 +00:00
|
|
|
};
|
|
|
|
|
2025-06-24 16:49:40 +00:00
|
|
|
// Listen for selection changes
|
|
|
|
document.addEventListener('selectionchange', checkSelection);
|
|
|
|
|
|
|
|
// Store the handler for cleanup
|
|
|
|
(this as any)._selectionHandler = checkSelection;
|
|
|
|
|
|
|
|
// Add keyup handler for cursor position tracking
|
2025-06-26 13:32:37 +00:00
|
|
|
editableBlock.addEventListener('keyup', () => {
|
2025-06-24 16:49:40 +00:00
|
|
|
// Track cursor position
|
|
|
|
const pos = this.getCursorPosition(editableBlock);
|
|
|
|
if (pos !== null) {
|
|
|
|
this.lastKnownCursorPosition = pos;
|
2025-06-24 16:31:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-06-24 13:41:12 +00:00
|
|
|
// Set initial content if needed
|
|
|
|
if (this.block.content) {
|
2025-06-26 13:32:37 +00:00
|
|
|
editableBlock.innerHTML = this.block.content;
|
2025-06-24 13:41:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Store reference to the block element for quick access
|
|
|
|
this.blockElement = editableBlock;
|
2025-06-24 11:06:02 +00:00
|
|
|
}
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
render(): TemplateResult {
|
|
|
|
if (!this.block) return html``;
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Since we need dynamic content, we'll render an empty container
|
|
|
|
// and set the innerHTML in firstUpdated
|
|
|
|
return html`<div class="wysiwyg-block-container"></div>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
private renderBlockContent(): string {
|
|
|
|
if (!this.block) return '';
|
|
|
|
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler) {
|
|
|
|
return handler.render(this.block, this.isSelected);
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Default rendering for blocks without handlers
|
2025-06-24 15:17:37 +00:00
|
|
|
const selectedClass = this.isSelected ? ' selected' : '';
|
|
|
|
return `
|
2025-06-24 10:45:06 +00:00
|
|
|
<div
|
2025-06-24 15:17:37 +00:00
|
|
|
class="block ${this.block.type}${selectedClass}"
|
2025-06-24 10:45:06 +00:00
|
|
|
contenteditable="true"
|
2025-06-24 13:41:12 +00:00
|
|
|
></div>
|
2025-06-24 10:45:06 +00:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public focus(): void {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.focus) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.focus(container, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 18:43:51 +00:00
|
|
|
// Handle non-editable blocks
|
2025-06-26 13:32:37 +00:00
|
|
|
if (this.block && DeesWysiwygBlock.NON_EDITABLE_TYPES.includes(this.block.type)) {
|
2025-06-24 20:32:03 +00:00
|
|
|
const blockElement = this.shadowRoot?.querySelector(`.block.${this.block.type}`) as HTMLDivElement;
|
|
|
|
if (blockElement) {
|
|
|
|
blockElement.focus();
|
2025-06-24 18:43:51 +00:00
|
|
|
}
|
|
|
|
return;
|
2025-06-24 17:16:13 +00:00
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Get the actual editable element
|
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
|
|
|
|
if (!editableElement) return;
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// Ensure the element is focusable
|
2025-06-24 13:53:47 +00:00
|
|
|
if (!editableElement.hasAttribute('contenteditable')) {
|
|
|
|
editableElement.setAttribute('contenteditable', 'true');
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-24 13:53:47 +00:00
|
|
|
editableElement.focus();
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// If focus failed, try again after a microtask
|
2025-06-24 13:53:47 +00:00
|
|
|
if (document.activeElement !== editableElement && this.shadowRoot?.activeElement !== editableElement) {
|
2025-06-24 10:45:06 +00:00
|
|
|
Promise.resolve().then(() => {
|
2025-06-24 13:53:47 +00:00
|
|
|
editableElement.focus();
|
2025-06-24 10:45:06 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public focusWithCursor(position: 'start' | 'end' | number = 'end'): void {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.focusWithCursor) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.focusWithCursor(container, position, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 18:43:51 +00:00
|
|
|
// Non-editable blocks don't support cursor positioning
|
2025-06-26 13:32:37 +00:00
|
|
|
if (this.block && DeesWysiwygBlock.NON_EDITABLE_TYPES.includes(this.block.type)) {
|
2025-06-24 17:16:13 +00:00
|
|
|
this.focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Get the actual editable element
|
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
|
|
|
|
if (!editableElement) return;
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// Ensure element is focusable first
|
2025-06-24 13:53:47 +00:00
|
|
|
if (!editableElement.hasAttribute('contenteditable')) {
|
|
|
|
editableElement.setAttribute('contenteditable', 'true');
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Focus the element
|
2025-06-24 13:53:47 +00:00
|
|
|
editableElement.focus();
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// Set cursor position after focus is established
|
|
|
|
const setCursor = () => {
|
|
|
|
if (position === 'start') {
|
|
|
|
this.setCursorToStart();
|
|
|
|
} else if (position === 'end') {
|
|
|
|
this.setCursorToEnd();
|
|
|
|
} else if (typeof position === 'number') {
|
2025-06-24 13:41:12 +00:00
|
|
|
// Use the new selection utility to set cursor position
|
2025-06-24 13:53:47 +00:00
|
|
|
WysiwygSelection.setCursorPosition(editableElement, position);
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Ensure cursor is set after focus
|
2025-06-24 13:53:47 +00:00
|
|
|
if (document.activeElement === editableElement || this.shadowRoot?.activeElement === editableElement) {
|
2025-06-24 10:45:06 +00:00
|
|
|
setCursor();
|
|
|
|
} else {
|
|
|
|
// Wait for focus to be established
|
|
|
|
Promise.resolve().then(() => {
|
2025-06-24 13:53:47 +00:00
|
|
|
if (document.activeElement === editableElement || this.shadowRoot?.activeElement === editableElement) {
|
2025-06-24 10:45:06 +00:00
|
|
|
setCursor();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get cursor position in the editable element
|
|
|
|
*/
|
2025-06-24 15:52:28 +00:00
|
|
|
public getCursorPosition(element: HTMLElement): number | null {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.getCursorPosition) {
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.getCursorPosition(element, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Get parent wysiwyg component's shadow root
|
|
|
|
const parentComponent = this.closest('dees-input-wysiwyg');
|
|
|
|
const parentShadowRoot = parentComponent?.shadowRoot;
|
|
|
|
|
|
|
|
// Get selection info with both shadow roots for proper traversal
|
|
|
|
const shadowRoots: ShadowRoot[] = [];
|
|
|
|
if (parentShadowRoot) shadowRoots.push(parentShadowRoot);
|
|
|
|
if (this.shadowRoot) shadowRoots.push(this.shadowRoot);
|
|
|
|
|
|
|
|
const selectionInfo = WysiwygSelection.getSelectionInfo(...shadowRoots);
|
|
|
|
console.log('getCursorPosition: Selection info from shadow DOMs:', {
|
|
|
|
selectionInfo,
|
|
|
|
shadowRootsCount: shadowRoots.length
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!selectionInfo) {
|
|
|
|
console.log('getCursorPosition: No selection found');
|
|
|
|
return null;
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
console.log('getCursorPosition: Range info:', {
|
|
|
|
startContainer: selectionInfo.startContainer,
|
|
|
|
startOffset: selectionInfo.startOffset,
|
|
|
|
collapsed: selectionInfo.collapsed,
|
|
|
|
startContainerText: selectionInfo.startContainer.textContent
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!element.contains(selectionInfo.startContainer)) {
|
|
|
|
console.log('getCursorPosition: Range not in element');
|
|
|
|
return null;
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Create a range from start of element to cursor position
|
|
|
|
const preCaretRange = document.createRange();
|
|
|
|
preCaretRange.selectNodeContents(element);
|
|
|
|
preCaretRange.setEnd(selectionInfo.startContainer, selectionInfo.startOffset);
|
|
|
|
|
|
|
|
// Get the text content length up to cursor
|
|
|
|
const position = preCaretRange.toString().length;
|
|
|
|
console.log('getCursorPosition: Calculated position:', {
|
|
|
|
position,
|
|
|
|
preCaretText: preCaretRange.toString(),
|
|
|
|
elementText: element.textContent,
|
|
|
|
elementTextLength: element.textContent?.length
|
|
|
|
});
|
|
|
|
|
|
|
|
return position;
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public getContent(): string {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.getContent) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.getContent(container, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 17:16:13 +00:00
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Get the actual editable element
|
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
|
|
|
|
if (!editableElement) return '';
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Get the innerHTML which includes formatting tags
|
|
|
|
const content = editableElement.innerHTML || '';
|
|
|
|
console.log('Getting content from block:', content);
|
|
|
|
return content;
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public setContent(content: string): void {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.setContent) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.setContent(container, content, context);
|
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
// Get the actual editable element
|
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
|
|
|
|
if (!editableElement) return;
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// Store if we have focus
|
2025-06-24 13:53:47 +00:00
|
|
|
const hadFocus = document.activeElement === editableElement || this.shadowRoot?.activeElement === editableElement;
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
editableElement.innerHTML = content;
|
2025-06-24 10:45:06 +00:00
|
|
|
|
|
|
|
// Restore focus if we had it
|
|
|
|
if (hadFocus) {
|
2025-06-24 13:53:47 +00:00
|
|
|
editableElement.focus();
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public setCursorToStart(): void {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.setCursorToStart) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.setCursorToStart(container, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 23:46:52 +00:00
|
|
|
// Always find the element fresh, don't rely on cached blockElement
|
2025-06-26 13:32:37 +00:00
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
if (editableElement) {
|
|
|
|
WysiwygBlocks.setCursorToStart(editableElement);
|
|
|
|
}
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public setCursorToEnd(): void {
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
if (handler && handler.setCursorToEnd) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
const context = { shadowRoot: this.shadowRoot!, component: this };
|
|
|
|
return handler.setCursorToEnd(container, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 23:46:52 +00:00
|
|
|
// Always find the element fresh, don't rely on cached blockElement
|
2025-06-26 13:32:37 +00:00
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 13:53:47 +00:00
|
|
|
if (editableElement) {
|
|
|
|
WysiwygBlocks.setCursorToEnd(editableElement);
|
|
|
|
}
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-24 20:32:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2025-06-24 18:43:51 +00:00
|
|
|
|
2025-06-24 20:32:03 +00:00
|
|
|
|
2025-06-24 17:16:13 +00:00
|
|
|
|
2025-06-27 19:25:34 +00:00
|
|
|
/**
|
|
|
|
* Get context menu items for this block
|
|
|
|
*/
|
|
|
|
public getContextMenuItems(): any[] {
|
|
|
|
if (!this.block || this.block.type === 'divider') {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
const blockTypes = WysiwygShortcuts.getSlashMenuItems();
|
|
|
|
const currentType = this.block.type;
|
|
|
|
|
2025-06-27 19:29:26 +00:00
|
|
|
// Use the parent reference passed from dees-input-wysiwyg
|
|
|
|
const wysiwygComponent = this.wysiwygComponent;
|
2025-06-27 19:25:34 +00:00
|
|
|
const blockId = this.block.id;
|
|
|
|
|
|
|
|
|
|
|
|
// Create submenu items for block type change
|
|
|
|
const blockTypeItems = blockTypes
|
|
|
|
.filter(item => item.type !== currentType && item.type !== 'divider')
|
|
|
|
.map(item => ({
|
|
|
|
name: item.label,
|
|
|
|
iconName: item.icon.replace('lucide:', ''),
|
|
|
|
action: async () => {
|
|
|
|
if (wysiwygComponent && wysiwygComponent.blockOperations) {
|
|
|
|
// Transform the block type
|
|
|
|
const blockToTransform = wysiwygComponent.blocks.find((b: IBlock) => b.id === blockId);
|
|
|
|
if (blockToTransform) {
|
|
|
|
blockToTransform.type = item.type;
|
|
|
|
blockToTransform.content = blockToTransform.content || '';
|
|
|
|
|
|
|
|
// Handle special metadata for different block types
|
|
|
|
if (item.type === 'code') {
|
|
|
|
blockToTransform.metadata = { language: 'typescript' };
|
|
|
|
} else if (item.type === 'list') {
|
|
|
|
blockToTransform.metadata = { listType: 'bullet' };
|
|
|
|
} else if (item.type === 'image') {
|
|
|
|
blockToTransform.content = '';
|
|
|
|
blockToTransform.metadata = { url: '', loading: false };
|
|
|
|
} else if (item.type === 'youtube') {
|
|
|
|
blockToTransform.content = '';
|
|
|
|
blockToTransform.metadata = { videoId: '', url: '' };
|
|
|
|
} else if (item.type === 'markdown') {
|
|
|
|
blockToTransform.metadata = { showPreview: false };
|
|
|
|
} else if (item.type === 'html') {
|
|
|
|
blockToTransform.metadata = { showPreview: false };
|
|
|
|
} else if (item.type === 'attachment') {
|
|
|
|
blockToTransform.content = '';
|
|
|
|
blockToTransform.metadata = { files: [] };
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the block element
|
|
|
|
wysiwygComponent.updateBlockElement(blockId);
|
|
|
|
wysiwygComponent.updateValue();
|
|
|
|
|
|
|
|
// Focus the block after transformation
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
wysiwygComponent.blockOperations.focusBlock(blockId);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
const menuItems: any[] = [
|
|
|
|
{
|
|
|
|
name: 'Change Type',
|
|
|
|
iconName: 'type',
|
|
|
|
submenu: blockTypeItems
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
// Add copy/cut/paste for editable blocks
|
|
|
|
if (!['image', 'divider', 'youtube', 'attachment'].includes(this.block.type)) {
|
|
|
|
menuItems.push(
|
|
|
|
{ divider: true },
|
|
|
|
{
|
|
|
|
name: 'Cut',
|
|
|
|
iconName: 'scissors',
|
|
|
|
shortcut: 'Cmd+X',
|
|
|
|
action: async () => {
|
|
|
|
document.execCommand('cut');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Copy',
|
|
|
|
iconName: 'copy',
|
|
|
|
shortcut: 'Cmd+C',
|
|
|
|
action: async () => {
|
|
|
|
document.execCommand('copy');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Paste',
|
|
|
|
iconName: 'clipboard',
|
|
|
|
shortcut: 'Cmd+V',
|
|
|
|
action: async () => {
|
|
|
|
document.execCommand('paste');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add delete option
|
|
|
|
menuItems.push(
|
|
|
|
{ divider: true },
|
|
|
|
{
|
|
|
|
name: 'Delete Block',
|
|
|
|
iconName: 'trash2',
|
|
|
|
action: async () => {
|
|
|
|
if (wysiwygComponent && wysiwygComponent.blockOperations) {
|
|
|
|
wysiwygComponent.blockOperations.deleteBlock(blockId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return menuItems;
|
|
|
|
}
|
|
|
|
|
2025-06-24 10:45:06 +00:00
|
|
|
/**
|
|
|
|
* Gets content split at cursor position
|
|
|
|
*/
|
|
|
|
public getSplitContent(): { before: string; after: string } | null {
|
2025-06-24 15:17:37 +00:00
|
|
|
console.log('getSplitContent: Starting...');
|
2025-06-24 13:41:12 +00:00
|
|
|
|
2025-06-24 22:45:50 +00:00
|
|
|
// Check if we have a registered handler for this block type
|
|
|
|
const handler = BlockRegistry.getHandler(this.block.type);
|
|
|
|
console.log('getSplitContent: Checking for handler', {
|
|
|
|
blockType: this.block.type,
|
|
|
|
hasHandler: !!handler,
|
|
|
|
hasSplitMethod: !!(handler && handler.getSplitContent)
|
|
|
|
});
|
|
|
|
|
|
|
|
if (handler && handler.getSplitContent) {
|
|
|
|
const container = this.shadowRoot?.querySelector('.wysiwyg-block-container') as HTMLElement;
|
|
|
|
console.log('getSplitContent: Found container', {
|
|
|
|
container: !!container,
|
|
|
|
containerHTML: container?.innerHTML?.substring(0, 100)
|
|
|
|
});
|
|
|
|
const context = {
|
|
|
|
shadowRoot: this.shadowRoot!,
|
|
|
|
component: this
|
|
|
|
};
|
|
|
|
return handler.getSplitContent(container, context);
|
|
|
|
}
|
|
|
|
|
2025-06-24 17:16:13 +00:00
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Get the actual editable element first
|
2025-06-26 13:32:37 +00:00
|
|
|
const editableElement = this.shadowRoot?.querySelector('.block') as HTMLDivElement;
|
2025-06-24 15:17:37 +00:00
|
|
|
|
|
|
|
if (!editableElement) {
|
|
|
|
console.log('getSplitContent: No editable element found');
|
|
|
|
return null;
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
console.log('getSplitContent: Element info:', {
|
|
|
|
blockType: this.block.type,
|
|
|
|
innerHTML: editableElement.innerHTML,
|
|
|
|
textContent: editableElement.textContent,
|
|
|
|
textLength: editableElement.textContent?.length
|
2025-06-24 13:53:47 +00:00
|
|
|
});
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// Get parent wysiwyg component's shadow root
|
|
|
|
const parentComponent = this.closest('dees-input-wysiwyg');
|
|
|
|
const parentShadowRoot = parentComponent?.shadowRoot;
|
|
|
|
|
|
|
|
// Get selection info with both shadow roots for proper traversal
|
|
|
|
const shadowRoots: ShadowRoot[] = [];
|
|
|
|
if (parentShadowRoot) shadowRoots.push(parentShadowRoot);
|
|
|
|
if (this.shadowRoot) shadowRoots.push(this.shadowRoot);
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
const selectionInfo = WysiwygSelection.getSelectionInfo(...shadowRoots);
|
|
|
|
console.log('getSplitContent: Selection info from shadow DOMs:', {
|
|
|
|
selectionInfo,
|
|
|
|
shadowRootsCount: shadowRoots.length
|
2025-06-24 13:41:12 +00:00
|
|
|
});
|
2025-06-24 10:45:06 +00:00
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
if (!selectionInfo) {
|
|
|
|
console.log('getSplitContent: No selection, using last known position:', this.lastKnownCursorPosition);
|
|
|
|
// Try using last known cursor position
|
|
|
|
if (this.lastKnownCursorPosition !== null) {
|
|
|
|
const fullText = editableElement.textContent || '';
|
|
|
|
const pos = Math.min(this.lastKnownCursorPosition, fullText.length);
|
|
|
|
console.log('getSplitContent: Splitting with last known position:', {
|
|
|
|
pos,
|
|
|
|
fullTextLength: fullText.length,
|
|
|
|
before: fullText.substring(0, pos),
|
|
|
|
after: fullText.substring(pos)
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
before: fullText.substring(0, pos),
|
|
|
|
after: fullText.substring(pos)
|
|
|
|
};
|
|
|
|
}
|
2025-06-24 13:53:47 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
console.log('getSplitContent: Selection range:', {
|
|
|
|
startContainer: selectionInfo.startContainer,
|
|
|
|
startOffset: selectionInfo.startOffset,
|
|
|
|
startContainerInElement: editableElement.contains(selectionInfo.startContainer)
|
|
|
|
});
|
|
|
|
|
|
|
|
// Make sure the selection is within this block
|
2025-06-24 22:45:50 +00:00
|
|
|
if (!WysiwygSelection.containsAcrossShadowDOM(editableElement, selectionInfo.startContainer)) {
|
2025-06-24 15:17:37 +00:00
|
|
|
console.log('getSplitContent: Selection not in this block, using last known position:', this.lastKnownCursorPosition);
|
|
|
|
// Try using last known cursor position
|
|
|
|
if (this.lastKnownCursorPosition !== null) {
|
|
|
|
const fullText = editableElement.textContent || '';
|
|
|
|
const pos = Math.min(this.lastKnownCursorPosition, fullText.length);
|
|
|
|
return {
|
|
|
|
before: fullText.substring(0, pos),
|
|
|
|
after: fullText.substring(pos)
|
|
|
|
};
|
|
|
|
}
|
2025-06-24 13:53:47 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2025-06-24 15:17:37 +00:00
|
|
|
// For HTML content, get cursor position first
|
|
|
|
const cursorPos = this.getCursorPosition(editableElement);
|
|
|
|
console.log('getSplitContent: Cursor position for HTML split:', cursorPos);
|
|
|
|
|
|
|
|
if (cursorPos === null || cursorPos === 0) {
|
|
|
|
// If cursor is at start or can't determine position, move all content
|
|
|
|
console.log('getSplitContent: Cursor at start or null, moving all content');
|
|
|
|
return {
|
|
|
|
before: '',
|
|
|
|
after: editableElement.innerHTML
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// For HTML content, split using ranges to preserve formatting
|
|
|
|
const beforeRange = document.createRange();
|
|
|
|
const afterRange = document.createRange();
|
|
|
|
|
|
|
|
// Before range: from start of element to cursor
|
|
|
|
beforeRange.setStart(editableElement, 0);
|
|
|
|
beforeRange.setEnd(selectionInfo.startContainer, selectionInfo.startOffset);
|
|
|
|
|
|
|
|
// After range: from cursor to end of element
|
|
|
|
afterRange.setStart(selectionInfo.startContainer, selectionInfo.startOffset);
|
|
|
|
afterRange.setEnd(editableElement, editableElement.childNodes.length);
|
|
|
|
|
|
|
|
// Extract HTML content
|
|
|
|
const beforeFragment = beforeRange.cloneContents();
|
|
|
|
const afterFragment = afterRange.cloneContents();
|
|
|
|
|
|
|
|
// Convert to HTML strings
|
|
|
|
const tempDiv = document.createElement('div');
|
|
|
|
tempDiv.appendChild(beforeFragment);
|
|
|
|
const beforeHtml = tempDiv.innerHTML;
|
|
|
|
|
|
|
|
tempDiv.innerHTML = '';
|
|
|
|
tempDiv.appendChild(afterFragment);
|
|
|
|
const afterHtml = tempDiv.innerHTML;
|
|
|
|
|
|
|
|
console.log('getSplitContent: Final split result:', {
|
|
|
|
cursorPos,
|
|
|
|
beforeHtml,
|
|
|
|
beforeLength: beforeHtml.length,
|
2025-06-24 15:52:28 +00:00
|
|
|
beforeHtmlPreview: beforeHtml.substring(0, 100) + (beforeHtml.length > 100 ? '...' : ''),
|
2025-06-24 15:17:37 +00:00
|
|
|
afterHtml,
|
2025-06-24 15:52:28 +00:00
|
|
|
afterLength: afterHtml.length,
|
|
|
|
afterHtmlPreview: afterHtml.substring(0, 100) + (afterHtml.length > 100 ? '...' : '')
|
2025-06-24 15:17:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
before: beforeHtml,
|
|
|
|
after: afterHtml
|
|
|
|
};
|
2025-06-24 10:45:06 +00:00
|
|
|
}
|
|
|
|
|
2025-06-26 13:32:37 +00:00
|
|
|
}
|