blob: 31101ef1b1be417e588e289c63f6dc1ace99ca6c [file] [log] [blame]
/**
* An unspecified criterion in a virtual collection.
* Inherits everything from jsonld
*/
define([
'vc/jsonld',
'vc/doc',
'util'
], function (jsonldClass, docClass) {
// Localize empty string
var loc = KorAP.Locale;
loc.EMPTY = loc.EMPTY || '⋯';
return {
// The ld-type
_ldType : "non",
/**
* Create new unspecified criterion
* with a link to the parent object
*/
create : function (parent) {
var obj = Object.create(jsonldClass).
upgradeTo(this);
if (parent !== undefined)
obj._parent = parent;
return obj;
},
/**
* Set the key; this will spawn a new doc
*/
key : function (v) {
// Not replaceable
if (this._parent === undefined)
return null;
// Set JSON-LD type
var newDoc = docClass.create(this._parent, {
"@type" : "koral:doc",
"value" : "",
"key" : v
});
// Unspecified document on root
if (this._parent.ldType() === null) {
this._parent.root(newDoc);
this.destroy();
}
// Unspecified document in group
else {
this._parent.replaceOperand(this, newDoc);
};
this._parent.update();
return newDoc;
},
/**
* Update the element
*/
update : function () {
if (this._element === undefined)
return this.element();
// Remove element content
_removeChildren(this._element);
var ellipsis = document.createElement('span');
ellipsis.appendChild(document.createTextNode(loc.EMPTY));
// Click on empty criterion
ellipsis.addEventListener('click', this.onclick.bind(this));
this._element.appendChild(ellipsis);
// Set ref - TODO: Cleanup!
this._element.refTo = this;
// Set operators
if (this._parent !== undefined && this.parent().ldType() !== null) {
var op = this.operators(
false,
false,
true
);
this._element.appendChild(
op.element()
);
};
return this.element();
},
/**
* Get the associated element
*/
element : function () {
if (this._element !== undefined)
return this._element;
this._element = document.createElement('div');
this._element.setAttribute('class', 'doc unspecified');
this.update();
return this._element;
},
/**
* Click on the unspecified object
*/
onclick : function () {
// Get the key menu
var menu = KorAP._vcKeyMenu;
// Add key menu element at the correct position
this._element.insertBefore(
menu.element(),
this._element.firstChild
);
var that = this;
// Set released method
menu.released(function (key, type) {
// Set chosen key and type - will return a doc
that.key(key).type(type).update();
this.hide();
});
menu.show();
menu.focus();
}
};
});