Skip to content

API > @blocksuite/store > Y > XmlText

Class: XmlText ​

Represents text in a Dom Element. In the future this type will also handle simple formatting information like bold and italic.

Extends ​

Constructors ​

constructor ​

new XmlText(string?): XmlText

Parameters ​

ParameterTypeDescription
string?stringThe initial value of the YText.

Returns ​

XmlText

Inherited from ​

Text.constructor

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:97

Properties ​

_dEH ​

_dEH: EventHandler< YEvent< any >[], Transaction >

Deep event handlers

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:46

Inherited from ​

Text._dEH


_eH ​

_eH: EventHandler< YTextEvent, Transaction >

Event handlers

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:41

Inherited from ​

Text._eH


_hasFormatting ​

_hasFormatting: boolean

Whether this YText contains formatting attributes. This flag is updated when a formatting item is integrated (see ContentFormat.integrate)

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:107

Inherited from ​

Text._hasFormatting


_item ​

_item: null | Item

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:23

Inherited from ​

Text._item


_length ​

_length: number

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:36

Inherited from ​

Text._length


_map ​

_map: Map< string, Item >

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:27

Inherited from ​

Text._map


_pending ​

_pending: null | () => void[]

Array of pending operations on this type

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:102

Inherited from ​

Text._pending


_searchMarker ​

_searchMarker: null | ArraySearchMarker[]

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:50

Inherited from ​

Text._searchMarker


_start ​

_start: null | Item

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:31

Inherited from ​

Text._start


doc ​

doc: null | Doc

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:35

Inherited from ​

Text.doc

Accessors ​

_first ​

get _first(): null | Item

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:81

Inherited from ​

Text._first


length ​

get length(): number

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:113

Inherited from ​

Text.length


nextSibling ​

get nextSibling(): null | XmlText | XmlElement< {} >

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:9


parent ​

get parent(): null | AbstractType< any >

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:54

Inherited from ​

Text.parent


prevSibling ​

get prevSibling(): null | XmlText | XmlElement< {} >

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:15

Methods ​

_callObserver ​

_callObserver(transaction, _parentSubs): void

Creates YEvent and calls all type observers. Must be implemented by each type.

Parameters ​

ParameterTypeDescription
transactionTransaction-
_parentSubsSet< null | string >Keys changed on this type. null if list was modified.

Returns ​

void

Inherited from ​

Text._callObserver

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:89


_copy ​

_copy(): XmlText

Returns ​

XmlText

Overrides ​

Text._copy

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:18


_integrate ​

_integrate(y, item): void

Integrate this type into the Yjs instance.

  • Save this struct in the os
  • This type is sent to other client
  • Observer functions are fired

Parameters ​

ParameterTypeDescription
yDocThe Yjs instance
itemItem-

Returns ​

void

Inherited from ​

Text._integrate

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:118


_write ​

_write(_encoder): void

Parameters ​

ParameterType
_encoderUpdateEncoderV1 | UpdateEncoderV2

Returns ​

void

Inherited from ​

Text._write

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:77


applyDelta ​

applyDelta(delta, opts?): void

Apply a Delta on this shared YText type.

Parameters ​

ParameterTypeDescription
deltaanyThe changes to apply on this element.
opts?object-
opts.sanitize?booleanSanitize input delta. Removes ending newlines if set to true.

Returns ​

void

Inherited from ​

Text.applyDelta

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:141


clone ​

clone(): XmlText

Returns ​

XmlText

Overrides ​

Text.clone

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:22


delete ​

delete(index, length): void

Deletes text starting from an index.

Parameters ​

ParameterTypeDescription
indexnumberIndex at which to start deleting.
lengthnumberThe number of characters to remove. Defaults to 1.

Returns ​

void

Inherited from ​

Text.delete

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:185


format ​

format( index, length, attributes): void

Assigns properties to a range of text.

Parameters ​

ParameterTypeDescription
indexnumberThe position where to start formatting.
lengthnumberThe amount of characters to assign properties to.
attributesObjectAttribute information to apply on the
text.

Returns ​

void

Inherited from ​

Text.format

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:196


getAttribute ​

getAttribute(attributeName): any

Returns an attribute value that belongs to the attribute name.

Parameters ​

ParameterTypeDescription
attributeNamestringThe attribute name that identifies the
queried value.

Returns ​

any

The queried attribute value.

Inherited from ​

Text.getAttribute

Note ​

Xml-Text nodes don't have attributes. You can use this feature to assign properties to complete text-blocks.

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:229


getAttributes ​

getAttributes(): object

Returns all attribute name/value pairs in a JSON Object.

Returns ​

object

A JSON Object that describes the attributes.

Inherited from ​

Text.getAttributes

Note ​

Xml-Text nodes don't have attributes. You can use this feature to assign properties to complete text-blocks.

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:239


insert ​

insert( index, text, attributes?): void

Insert text at a given index.

Parameters ​

ParameterTypeDescription
indexnumberThe index at which to start inserting.
textstringThe text to insert at the specified position.
attributes?ObjectOptionally define some formatting
information to apply on the inserted
Text.

Returns ​

void

Inherited from ​

Text.insert

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:165


insertEmbed ​

insertEmbed( index, embed, attributes?): void

Inserts an embed at a index.

Parameters ​

ParameterTypeDescription
indexnumberThe index to insert the embed at.
embedObject | AbstractType< any >The Object that represents the embed.
attributes?ObjectAttribute information to apply on the
embed

Returns ​

void

Inherited from ​

Text.insertEmbed

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:176


observe ​

observe(f): void

Observe all events that are created on this type.

Parameters ​

ParameterTypeDescription
ffunctionObserver function

Returns ​

void

Inherited from ​

Text.observe

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:95


observeDeep ​

observeDeep(f): void

Observe all events that are created by this type and its children.

Parameters ​

ParameterTypeDescription
ffunctionObserver function

Returns ​

void

Inherited from ​

Text.observeDeep

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:101


removeAttribute ​

removeAttribute(attributeName): void

Removes an attribute.

Parameters ​

ParameterTypeDescription
attributeNamestringThe attribute name that is to be removed.

Returns ​

void

Inherited from ​

Text.removeAttribute

Note ​

Xml-Text nodes don't have attributes. You can use this feature to assign properties to complete text-blocks.

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:206


setAttribute ​

setAttribute(attributeName, attributeValue): void

Sets or updates an attribute.

Parameters ​

ParameterTypeDescription
attributeNamestringThe attribute name that is to be set.
attributeValueanyThe attribute value that is to be set.

Returns ​

void

Inherited from ​

Text.setAttribute

Note ​

Xml-Text nodes don't have attributes. You can use this feature to assign properties to complete text-blocks.

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:217


toDOM ​

toDOM( _document?, hooks?, binding?): Text

Creates a Dom Element that mirrors this YXmlText.

Parameters ​

ParameterTypeDescription
_document?DocumentThe document object (you must define
this when calling this method in
nodejs)
hooks?objectOptional property to customize how hooks
are presented in the DOM
binding?anyYou should not set this property. This is
used if DomBinding wants to create a
association to the created DOM type.

Returns ​

Text

The Element

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:38


toDelta ​

toDelta( snapshot?, prevSnapshot?, computeYChange?): any

Returns the Delta representation of this YText type.

Parameters ​

ParameterType
snapshot?Snapshot
prevSnapshot?Snapshot
computeYChange?function

Returns ​

any

The Delta representation of this type.

Inherited from ​

Text.toDelta

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:154


toJSON ​

toJSON(): string

Returns the unformatted string representation of this YText type.

Returns ​

string

Inherited from ​

Text.toJSON

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YText.d.ts:130


toString ​

toString(): any

Returns ​

any

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/YXmlText.d.ts:41


unobserve ​

unobserve(f): void

Unregister an observer function.

Parameters ​

ParameterTypeDescription
ffunctionObserver function

Returns ​

void

Inherited from ​

Text.unobserve

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:107


unobserveDeep ​

unobserveDeep(f): void

Unregister an observer function.

Parameters ​

ParameterTypeDescription
ffunctionObserver function

Returns ​

void

Inherited from ​

Text.unobserveDeep

Defined In ​

node_modules/.pnpm/yjs@13.6.10/node_modules/yjs/dist/src/types/AbstractType.d.ts:113