/**
* @memberof module:@citation-js/core.Cite#
*
* @return {Number} The latest version of the object
*/
function currentVersion () {
return this.log.length
}
/**
* Returns an image of the object in the version specified.
*
* @memberof module:@citation-js/core.Cite#
*
* @param {Number} [versnum=1] - The number of the version you want to retrieve. Illegal numbers: numbers under or equal to zero, floats, numbers above the current version of the object.
*
* @return {module:@citation-js/core.Cite} The version of the object with the version number passed. `undefined` if an illegal number is passed.
*/
function retrieveVersion (versnum = 1) {
if (versnum <= 0 || versnum > this.currentVersion()) {
return null
} else {
const [data, options] = this.log[versnum - 1]
const image = new this.constructor(JSON.parse(data), JSON.parse(options))
image.log = this.log.slice(0, versnum)
return image
}
}
/**
* Returns the second to last saved image of the object.
*
* @memberof module:@citation-js/core.Cite#
*
* @param {Number} [number=1] - number of versions to go back.
*
* @return {module:@citation-js/core.Cite} The second to last version of the object. `undefined` if used on first version.
*/
function undo (number = 1) {
return this.retrieveVersion(this.currentVersion() - number)
}
/**
* Returns the last saved image of the object.
*
* @memberof module:@citation-js/core.Cite#
*
* @return {module:@citation-js/core.Cite} The last version of the object. `undefined` if used on first version.
*/
function retrieveLastVersion () {
return this.retrieveVersion(this.currentVersion())
}
/**
* Save an image of the current version of the object.
*
* @memberof module:@citation-js/core.Cite#
*
* @return {module:@citation-js/core.Cite} The current version of the object.
*/
function save () {
this.log.push([JSON.stringify(this.data), JSON.stringify(this._options)])
return this
}
export { currentVersion, retrieveVersion, retrieveLastVersion, undo, save }