mirror of
https://0xacab.org/sutty/sutty
synced 2025-01-19 17:03:38 +00:00
editor: desrepetir código
esto me huele a que podría introducir bugs pero espero que no.
This commit is contained in:
parent
3b9237d870
commit
b11346074a
4 changed files with 71 additions and 88 deletions
|
@ -3,7 +3,7 @@ import { marks } from 'editor/types/marks'
|
||||||
import { blocks, li, EditorBlock } from 'editor/types/blocks'
|
import { blocks, li, EditorBlock } from 'editor/types/blocks'
|
||||||
import { parentBlocks } from 'editor/types/parentBlocks'
|
import { parentBlocks } from 'editor/types/parentBlocks'
|
||||||
import { multimedia } from 'editor/types/multimedia'
|
import { multimedia } from 'editor/types/multimedia'
|
||||||
import { blockNames, parentBlockNames } from 'editor/utils'
|
import { blockNames, parentBlockNames, safeGetRangeAt, safeGetSelection } from 'editor/utils'
|
||||||
|
|
||||||
export interface EditorNode {
|
export interface EditorNode {
|
||||||
selector: string,
|
selector: string,
|
||||||
|
@ -56,6 +56,54 @@ export function getType (node: Element): { typeName: string, type: EditorNode }
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// encuentra el primer pariente que pueda tener al type, y retorna un array
|
||||||
|
// donde
|
||||||
|
// array[0] = elemento que matchea el type
|
||||||
|
// array[array.len - 1] = primer elemento seleccionado
|
||||||
|
export function getValidParentInSelection (args: {
|
||||||
|
editor: Editor,
|
||||||
|
type: string,
|
||||||
|
}): Element[] {
|
||||||
|
const sel = safeGetSelection(args.editor)
|
||||||
|
if (!sel) throw new Error('No se donde insertar esto')
|
||||||
|
const range = safeGetRangeAt(sel)
|
||||||
|
if (!range) throw new Error('No se donde insertar esto')
|
||||||
|
|
||||||
|
let list: Element[] = []
|
||||||
|
|
||||||
|
if (!sel.anchorNode) {
|
||||||
|
throw new Error('No se donde insertar esto')
|
||||||
|
} else if (sel.anchorNode instanceof Element) {
|
||||||
|
list = [sel.anchorNode]
|
||||||
|
} else if (sel.anchorNode.parentElement) {
|
||||||
|
list = [sel.anchorNode.parentElement]
|
||||||
|
} else {
|
||||||
|
throw new Error('No se donde insertar esto')
|
||||||
|
}
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
const el = list[0]
|
||||||
|
if (!args.editor.contentEl.contains(el)
|
||||||
|
&& el != args.editor.contentEl)
|
||||||
|
throw new Error('No se donde insertar esto')
|
||||||
|
const type = getType(el)
|
||||||
|
|
||||||
|
if (type) {
|
||||||
|
//if (type.typeName === 'contentEl') break
|
||||||
|
//if (parentBlockNames.includes(type.typeName)) break
|
||||||
|
if ((type.type.allowedChildren instanceof Array)
|
||||||
|
&& type.type.allowedChildren.includes(args.type)) break
|
||||||
|
}
|
||||||
|
if (el.parentElement) {
|
||||||
|
list = [el.parentElement, ...list]
|
||||||
|
} else {
|
||||||
|
throw new Error('No se donde insertar esto')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
|
||||||
export function getValidChildren (node: Element, type: EditorNode): Node[] {
|
export function getValidChildren (node: Element, type: EditorNode): Node[] {
|
||||||
if (type.allowedChildren === 'ignore-children')
|
if (type.allowedChildren === 'ignore-children')
|
||||||
throw new Error('se llamó a getValidChildren con un type que no lo permite!')
|
throw new Error('se llamó a getValidChildren con un type que no lo permite!')
|
||||||
|
|
|
@ -2,9 +2,9 @@ import { Editor } from 'editor/editor'
|
||||||
import {
|
import {
|
||||||
safeGetSelection, safeGetRangeAt,
|
safeGetSelection, safeGetRangeAt,
|
||||||
moveChildren,
|
moveChildren,
|
||||||
markNames, parentBlockNames,
|
markNames, blockNames, parentBlockNames,
|
||||||
} from 'editor/utils'
|
} from 'editor/utils'
|
||||||
import { EditorNode, getType } from 'editor/types'
|
import { EditorNode, getType, getValidParentInSelection } from 'editor/types'
|
||||||
|
|
||||||
export interface EditorBlock extends EditorNode {
|
export interface EditorBlock extends EditorNode {
|
||||||
}
|
}
|
||||||
|
@ -49,40 +49,22 @@ export function setupButtons (editor: Editor): void {
|
||||||
buttonEl.addEventListener("click", event => {
|
buttonEl.addEventListener("click", event => {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
||||||
const sel = safeGetSelection(editor)
|
const list = getValidParentInSelection({ editor, type: name })
|
||||||
if (!sel) return
|
|
||||||
const range = safeGetRangeAt(sel)
|
|
||||||
if (!range) return
|
|
||||||
|
|
||||||
let blockEl = sel.anchorNode
|
// No borrar cosas como multimedia
|
||||||
while (true) {
|
if (blockNames.indexOf(getType(list[1])!.typeName) === -1) {
|
||||||
if (!blockEl) throw new Error('WTF')
|
return
|
||||||
if (!blockEl.parentElement) throw new Error('No pude encontrar contentEl!')
|
|
||||||
|
|
||||||
let type = getType(blockEl.parentElement)
|
|
||||||
if (!type) throw new Error('La selección está en algo que no es un type!')
|
|
||||||
|
|
||||||
if (type.typeName === 'contentEl'
|
|
||||||
|| parentBlockNames.includes(type.typeName)
|
|
||||||
) break
|
|
||||||
|
|
||||||
blockEl = blockEl.parentElement
|
|
||||||
}
|
}
|
||||||
if (!(blockEl instanceof Element))
|
|
||||||
throw new Error('La selección no está en un elemento!')
|
|
||||||
|
|
||||||
const parentEl = blockEl.parentElement
|
let replacementType = list[1].matches(type.selector)
|
||||||
if (!parentEl) throw new Error('Inesperado')
|
|
||||||
|
|
||||||
let replacementType = blockEl.matches(type.selector)
|
|
||||||
? blocks.paragraph
|
? blocks.paragraph
|
||||||
: type
|
: type
|
||||||
|
|
||||||
const el = replacementType.create(editor)
|
const el = replacementType.create(editor)
|
||||||
replacementType.onClick && replacementType.onClick(editor, el)
|
replacementType.onClick && replacementType.onClick(editor, el)
|
||||||
moveChildren(blockEl, el, null)
|
moveChildren(list[1], el, null)
|
||||||
parentEl.replaceChild(el, blockEl)
|
list[0].replaceChild(el, list[1])
|
||||||
sel.collapse(el)
|
window.getSelection()?.collapse(el)
|
||||||
|
|
||||||
return false
|
return false
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Editor } from 'editor/editor'
|
import { Editor } from 'editor/editor'
|
||||||
import { EditorNode, getType } from 'editor/types'
|
import { EditorNode, getValidParentInSelection } from 'editor/types'
|
||||||
import {
|
import {
|
||||||
safeGetSelection, safeGetRangeAt,
|
safeGetSelection, safeGetRangeAt,
|
||||||
markNames, parentBlockNames,
|
markNames, parentBlockNames,
|
||||||
|
@ -192,34 +192,11 @@ export function setupButtons (editor: Editor): void {
|
||||||
buttonEl.addEventListener('click', event => {
|
buttonEl.addEventListener('click', event => {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
||||||
const sel = safeGetSelection(editor)
|
const list = getValidParentInSelection({ editor, type: 'multimedia' })
|
||||||
if (!sel) return
|
|
||||||
const range = safeGetRangeAt(sel)
|
|
||||||
if (!range) return
|
|
||||||
|
|
||||||
let blockEl = sel.anchorNode
|
|
||||||
while (true) {
|
|
||||||
if (!blockEl) throw new Error('WTF')
|
|
||||||
if (!blockEl.parentElement) throw new Error('No pude encontrar contentEl!')
|
|
||||||
|
|
||||||
let type = getType(blockEl.parentElement)
|
|
||||||
if (!type) throw new Error('La selección está en algo que no es un type!')
|
|
||||||
|
|
||||||
if (type.typeName === 'contentEl'
|
|
||||||
|| parentBlockNames.includes(type.typeName)
|
|
||||||
) break
|
|
||||||
|
|
||||||
blockEl = blockEl.parentElement
|
|
||||||
}
|
|
||||||
if (!(blockEl instanceof Element))
|
|
||||||
throw new Error('La selección no está en un elemento!')
|
|
||||||
|
|
||||||
const parentEl = blockEl.parentElement
|
|
||||||
if (!parentEl) throw new Error('Inesperado')
|
|
||||||
|
|
||||||
const el = multimedia.create(editor)
|
const el = multimedia.create(editor)
|
||||||
multimedia.onClick!(editor, el)
|
list[0].insertBefore(el, list[1].nextElementSibling)
|
||||||
parentEl.insertBefore(el, blockEl.nextElementSibling)
|
select(editor, el)
|
||||||
|
|
||||||
return false
|
return false
|
||||||
})
|
})
|
||||||
|
|
|
@ -4,7 +4,7 @@ import {
|
||||||
moveChildren,
|
moveChildren,
|
||||||
blockNames, parentBlockNames,
|
blockNames, parentBlockNames,
|
||||||
} from 'editor/utils'
|
} from 'editor/utils'
|
||||||
import { EditorNode, getType } from 'editor/types'
|
import { EditorNode, getType, getValidParentInSelection } from 'editor/types'
|
||||||
|
|
||||||
function makeParentBlock (tag: string, create: EditorNode["create"]): EditorNode {
|
function makeParentBlock (tag: string, create: EditorNode["create"]): EditorNode {
|
||||||
return {
|
return {
|
||||||
|
@ -45,48 +45,24 @@ export function setupButtons (editor: Editor): void {
|
||||||
buttonEl.addEventListener("click", event => {
|
buttonEl.addEventListener("click", event => {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
||||||
const sel = safeGetSelection(editor)
|
|
||||||
if (!sel) return
|
|
||||||
const range = safeGetRangeAt(sel)
|
|
||||||
if (!range) return
|
|
||||||
|
|
||||||
// TODO: Esto solo mueve el bloque en el que está el final de la selección
|
// TODO: Esto solo mueve el bloque en el que está el final de la selección
|
||||||
// (anchorNode). quizás lo podemos hacer al revés (iterar desde contentEl
|
// (anchorNode). quizás lo podemos hacer al revés (iterar desde contentEl
|
||||||
// para encontrar los bloques que están seleccionados y moverlos/cambiarles
|
// para encontrar los bloques que están seleccionados y moverlos/cambiarles
|
||||||
// el parentBlock)
|
// el parentBlock)
|
||||||
|
|
||||||
let blockEl = sel.anchorNode
|
const list = getValidParentInSelection({ editor, type: name })
|
||||||
while (true) {
|
|
||||||
if (!blockEl) throw new Error('WTF')
|
|
||||||
if (!blockEl.parentElement) throw new Error('No pude encontrar contentEl!')
|
|
||||||
|
|
||||||
let type = getType(blockEl.parentElement)
|
|
||||||
if (!type) throw new Error('La selección está en algo que no es un type!')
|
|
||||||
|
|
||||||
if (type.typeName === 'contentEl'
|
|
||||||
|| parentBlockNames.includes(type.typeName)
|
|
||||||
) break
|
|
||||||
|
|
||||||
blockEl = blockEl.parentElement
|
|
||||||
}
|
|
||||||
if (!(blockEl instanceof Element))
|
|
||||||
throw new Error('La selección no está en un elemento!')
|
|
||||||
|
|
||||||
const parentEl = blockEl.parentElement
|
|
||||||
if (!parentEl)
|
|
||||||
throw new Error('no')
|
|
||||||
|
|
||||||
const replacementEl = type.create(editor)
|
const replacementEl = type.create(editor)
|
||||||
if (parentEl == editor.contentEl) {
|
if (list[0] == editor.contentEl) {
|
||||||
// no está en un parentBlock
|
// no está en un parentBlock
|
||||||
editor.contentEl.insertBefore(replacementEl, blockEl)
|
editor.contentEl.insertBefore(replacementEl, list[1])
|
||||||
replacementEl.appendChild(blockEl)
|
replacementEl.appendChild(list[1])
|
||||||
} else {
|
} else {
|
||||||
// está en un parentBlock
|
// está en un parentBlock
|
||||||
moveChildren(parentEl, replacementEl, null)
|
moveChildren(list[0], replacementEl, null)
|
||||||
editor.contentEl.replaceChild(replacementEl, parentEl)
|
editor.contentEl.replaceChild(replacementEl, list[0])
|
||||||
}
|
}
|
||||||
sel.collapse(replacementEl)
|
window.getSelection()?.collapse(replacementEl)
|
||||||
|
|
||||||
return false
|
return false
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue