mirror of
https://github.com/langgenius/dify.git
synced 2026-07-15 17:37:38 +08:00
18 lines
765 B
TypeScript
18 lines
765 B
TypeScript
import type { ElementNode, RangeSelection, TextNode } from 'lexical'
|
|
import { $isAtNodeEnd } from '@lexical/selection'
|
|
|
|
export function getSelectedNode(selection: RangeSelection): TextNode | ElementNode {
|
|
const anchor = selection.anchor
|
|
const focus = selection.focus
|
|
const anchorNode = selection.anchor.getNode()
|
|
const focusNode = selection.focus.getNode()
|
|
if (anchorNode === focusNode) return anchorNode
|
|
|
|
const isBackward = selection.isBackward()
|
|
if (isBackward) return $isAtNodeEnd(focus) ? anchorNode : focusNode
|
|
else return $isAtNodeEnd(anchor) ? anchorNode : focusNode
|
|
}
|
|
|
|
export const urlRegExp =
|
|
/((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=+$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=+$,\w]+@)[A-Za-z0-9.-]+)((?:\/[+~%/.\w-]*)?\??[-+=&;%@.\w]*#?\w*)?)/
|