Files
yjs/src/Struct/ItemEmbed.js

49 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-10-08 17:08:20 +02:00
import Item from './Item.js'
import { logItemHelper } from '../protocols/syncProtocol.js'
import * as encoding from '../../lib/encoding.js'
import * as decoding from '../../lib/decoding.js'
/**
* @typedef {import('../index.js').Y} Y
*/
2018-02-26 02:18:39 +01:00
export default class ItemEmbed extends Item {
constructor () {
super()
this.embed = null
}
_copy (undeleteChildren, copyPosition) {
let struct = super._copy()
2018-02-26 02:18:39 +01:00
struct.embed = this.embed
return struct
}
get _length () {
return 1
}
/**
* @param {Y} y
* @param {decoding.Decoder} decoder
*/
2018-02-26 02:18:39 +01:00
_fromBinary (y, decoder) {
const missing = super._fromBinary(y, decoder)
this.embed = JSON.parse(decoding.readVarString(decoder))
2018-02-26 02:18:39 +01:00
return missing
}
/**
* @param {encoding.Encoder} encoder
*/
2018-02-26 02:18:39 +01:00
_toBinary (encoder) {
super._toBinary(encoder)
encoding.writeVarString(encoder, JSON.stringify(this.embed))
2018-02-26 02:18:39 +01:00
}
2018-03-29 11:58:02 +02:00
/**
* Transform this YXml Type to a readable format.
* Useful for logging as all Items and Delete implement this method.
*
* @private
*/
2018-02-26 02:18:39 +01:00
_logString () {
2018-03-29 11:58:02 +02:00
return logItemHelper('ItemEmbed', this, `embed:${JSON.stringify(this.embed)}`)
2018-02-26 02:18:39 +01:00
}
}