2018-10-08 17:08:20 +02:00
|
|
|
import Item from './Item.js'
|
2018-03-29 11:58:02 +02:00
|
|
|
import { logItemHelper } from '../MessageHandler/messageToString.js'
|
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(undeleteChildren, copyPosition)
|
|
|
|
|
struct.embed = this.embed
|
|
|
|
|
return struct
|
|
|
|
|
}
|
|
|
|
|
get _length () {
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
_fromBinary (y, decoder) {
|
|
|
|
|
const missing = super._fromBinary(y, decoder)
|
|
|
|
|
this.embed = JSON.parse(decoder.readVarString())
|
|
|
|
|
return missing
|
|
|
|
|
}
|
|
|
|
|
_toBinary (encoder) {
|
|
|
|
|
super._toBinary(encoder)
|
|
|
|
|
encoder.writeVarString(JSON.stringify(this.embed))
|
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
}
|