blob: c73a325f0c16f77caf87820b3113a6c6ff09150d [file] [log] [blame]
Nils Diewald0e6992a2015-04-14 20:13:52 +00001/**
2 * Document group criterion
3 */
Nils Diewald4347ee92015-05-04 20:32:48 +00004/*
5 * TODO: Let the UPDATE event bubble up through parents!
6 */
Nils Diewald0e6992a2015-04-14 20:13:52 +00007define([
8 'vc/jsonld',
9 'vc/unspecified',
10 'vc/doc',
Akronb19803c2018-08-16 16:39:42 +020011 'vc/docgroupref',
Nils Diewald0e6992a2015-04-14 20:13:52 +000012 'util'
13], function (jsonldClass,
Akronb19803c2018-08-16 16:39:42 +020014 unspecClass,
15 docClass,
Akronadab5e52018-08-20 13:50:53 +020016 docGroupRefClass) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000017
Akron0b489ad2018-02-02 16:49:32 +010018 const _validGroupOpRE = new RegExp("^(?:and|or)$");
Nils Diewald0e6992a2015-04-14 20:13:52 +000019
Akron0b489ad2018-02-02 16:49:32 +010020 const docGroupClass = {
Nils Diewald0e6992a2015-04-14 20:13:52 +000021 _ldType : "docGroup",
22
23 create : function (parent, json) {
24 var obj = Object.create(jsonldClass).upgradeTo(this);
25 obj._operands = [];
26 obj.fromJson(json);
27 if (parent !== undefined)
Akron0b489ad2018-02-02 16:49:32 +010028 obj._parent = parent;
Nils Diewald0e6992a2015-04-14 20:13:52 +000029 return obj;
30 },
31
32 newAfter : function (obj) {
33 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +010034 if (this._operands[i] === obj) {
35 var operand = unspecClass.create(this);
36 this._operands.splice(i + 1, 0, operand);
37 return this.update();
38 };
Nils Diewald0e6992a2015-04-14 20:13:52 +000039 };
40 },
41
42 // The doc is already set in the group
43 _duplicate : function (operand) {
Akronb19803c2018-08-16 16:39:42 +020044
45 // TODO:
46 // Also check for duplicate docGroupRefs!
47
Nils Diewald0e6992a2015-04-14 20:13:52 +000048 if (operand.ldType() !== 'doc')
Akron0b489ad2018-02-02 16:49:32 +010049 return null;
Nils Diewald0e6992a2015-04-14 20:13:52 +000050
51 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +010052 var op = this.getOperand(i);
53 if (op.ldType() === 'doc'
54 && operand.key() === op.key()
55 && operand.matchop() === op.matchop()
56 && operand.value() === op.value()) {
57 return op;
58 };
Nils Diewald0e6992a2015-04-14 20:13:52 +000059 };
60 return null;
61 },
62
63 append : function (operand) {
64
65 // Append unspecified object
66 if (operand === undefined) {
67
Akron0b489ad2018-02-02 16:49:32 +010068 // Be aware of cyclic structures!
69 operand = unspecClass.create(this);
70 this._operands.push(operand);
71 return operand;
Nils Diewald0e6992a2015-04-14 20:13:52 +000072 };
73
74 switch (operand["@type"]) {
Akron0b489ad2018-02-02 16:49:32 +010075
Nils Diewald0e6992a2015-04-14 20:13:52 +000076 case undefined:
Akron0b489ad2018-02-02 16:49:32 +010077 // No @type defined
78 if (operand["ldType"] !== undefined) {
79 if (operand.ldType() !== 'doc' &&
Akronb19803c2018-08-16 16:39:42 +020080 operand.ldType() !== 'docGroup' &&
81 operand.ldType() !== 'docGroupRef') {
Akron0b489ad2018-02-02 16:49:32 +010082 KorAP.log(812, "Operand not supported in document group");
83 return;
84 };
Nils Diewald0e6992a2015-04-14 20:13:52 +000085
Akron0b489ad2018-02-02 16:49:32 +010086 // Be aware of cyclic structures!
87 operand.parent(this);
Nils Diewald0e6992a2015-04-14 20:13:52 +000088
Akron0b489ad2018-02-02 16:49:32 +010089 var dupl = this._duplicate(operand);
90 if (dupl === null) {
91 this._operands.push(operand);
92 return operand;
93 };
94 return dupl;
95 };
Nils Diewald0e6992a2015-04-14 20:13:52 +000096
Akron0b489ad2018-02-02 16:49:32 +010097 KorAP.log(701, "JSON-LD group has no @type attribute");
98 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +000099
100 case "koral:doc":
Akron0b489ad2018-02-02 16:49:32 +0100101 // Be aware of cyclic structures!
102 var doc = docClass.create(this, operand);
103 if (doc === undefined)
104 return;
105 var dupl = this._duplicate(doc);
106 if (dupl === null) {
107 this._operands.push(doc);
108 return doc;
109 };
110 return dupl;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000111
112 case "koral:docGroup":
Akron0b489ad2018-02-02 16:49:32 +0100113 // Be aware of cyclic structures!
114 var docGroup = docGroupClass.create(this, operand);
115 if (docGroup === undefined)
116 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000117
Akron0b489ad2018-02-02 16:49:32 +0100118 // Flatten group
119 if (docGroup.operation() === this.operation()) {
120 for (var op in docGroup.operands()) {
121 op = docGroup.getOperand(op);
122 var dupl = this._duplicate(op);
123 if (dupl === null) {
124 this._operands.push(op);
125 op.parent(this);
126 };
127 };
128 docGroup._operands = [];
129 docGroup.destroy();
130 return this;
131 };
132 this._operands.push(docGroup);
133 return docGroup;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000134
Akronb19803c2018-08-16 16:39:42 +0200135 case "koral:docGroupRef":
136
137 var docGroupRef = docGroupRefClass.create(this, operand);
138
139 if (docGroupRef === undefined) {
140 return
141 };
142
143 // TODO:
144 // Currently this doesn't do anything meaningful,
145 // as duplicate only checks on docs for the moment
146 /*
147 var dupl = this._duplicate(doc);
148 if (dupl === null) {
149 this._operands.push(doc);
150 return doc;
151 };
152 return dupl;
153 */
154 this._operands.push(docGroupRef);
155 return docGroupRef;
156
Nils Diewald0e6992a2015-04-14 20:13:52 +0000157 default:
Akron0b489ad2018-02-02 16:49:32 +0100158 KorAP.log(812, "Operand not supported in document group");
159 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000160 };
161 },
162
163 update : function () {
164 // There is only one operand in group
165
166 if (this._operands.length === 1) {
Akron0b489ad2018-02-02 16:49:32 +0100167
168 var parent = this.parent();
169 var op = this.getOperand(0);
170
171 // This will prevent destruction of
172 // the operand
173 this._operands = [];
Nils Diewald0e6992a2015-04-14 20:13:52 +0000174
Akron0b489ad2018-02-02 16:49:32 +0100175 // Parent is a group
176 if (parent.ldType() !== null)
177 return parent.replaceOperand(this, op).update();
Nils Diewald0e6992a2015-04-14 20:13:52 +0000178
Akron0b489ad2018-02-02 16:49:32 +0100179 // Parent is vc
180 else {
181 this.destroy();
182 // Cyclic madness
183 parent.root(op);
184 op.parent(parent);
185 return parent.root();
186 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000187 };
188
189 if (this._element === undefined)
Akron0b489ad2018-02-02 16:49:32 +0100190 return this;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000191
192 var group = this._element;
193 group.setAttribute('data-operation', this.operation());
194
195 _removeChildren(group);
196
197 // Append operands
198 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +0100199 group.appendChild(
200 this.getOperand(i).element()
201 );
Nils Diewald0e6992a2015-04-14 20:13:52 +0000202 };
203
204 // Set operators
205 var op = this.operators(
Akron0b489ad2018-02-02 16:49:32 +0100206 this.operation() == 'and' ? false : true,
207 this.operation() == 'or' ? false : true,
208 true
Nils Diewald0e6992a2015-04-14 20:13:52 +0000209 );
210
211 group.appendChild(op.element());
212
hebastade595b42019-02-05 13:53:10 +0100213 var vcchevent = new CustomEvent('vcChange', {'detail':this});
hebasta4dd77bc2019-02-07 12:57:57 +0100214 KorAP.vc.element().dispatchEvent(vcchevent);
hebastade595b42019-02-05 13:53:10 +0100215
Nils Diewald0e6992a2015-04-14 20:13:52 +0000216 return this;
217 },
218
219 element : function () {
220 if (this._element !== undefined)
Akron0b489ad2018-02-02 16:49:32 +0100221 return this._element;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000222
223 this._element = document.createElement('div');
224 this._element.setAttribute('class', 'docGroup');
225
226 // Update the object - including optimization
227 this.update();
228
229 return this._element;
230 },
231
232 operation : function (op) {
233 if (arguments.length === 1) {
Akron0b489ad2018-02-02 16:49:32 +0100234 if (_validGroupOpRE.test(op)) {
235 this._op = op;
236 }
237 else {
238 KorAP.log(810, "Unknown operation type");
239 return;
240 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000241 };
242 return this._op || 'and';
243 },
244
245 operands : function () {
246 return this._operands;
247 },
248
249 getOperand : function (index) {
250 return this._operands[index];
251 },
252
253 // Replace operand
254 replaceOperand : function (oldOp, newOp) {
255
256 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +0100257 if (this._operands[i] === oldOp) {
258
259 // Just insert a doc or ...
260 if (newOp.ldType() === "doc" ||
261 newOp.ldType() === "non" ||
Akronb19803c2018-08-16 16:39:42 +0200262 newOp.ldType() === 'docGroupRef' ||
Akron0b489ad2018-02-02 16:49:32 +0100263 // ... insert a group of a different operation
264 // (i.e. "and" in "or"/"or" in "and")
265 newOp.operation() != this.operation()) {
266 this._operands[i] = newOp;
267 newOp.parent(this);
268 }
Nils Diewald0e6992a2015-04-14 20:13:52 +0000269
Akron0b489ad2018-02-02 16:49:32 +0100270 // Flatten group
271 else {
272 // Remove old group
273 this._operands.splice(i, 1);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000274
Akron0b489ad2018-02-02 16:49:32 +0100275 // Inject new operands
276 for (var op in newOp.operands().reverse()) {
277 op = newOp.getOperand(op);
278 this._operands.splice(i, 0, op);
279 op.parent(this);
280 };
281 // Prevent destruction of operands
282 newOp._operands = [];
283 newOp.destroy();
284 };
285 oldOp.destroy();
286 return this;
287 }
Nils Diewald0e6992a2015-04-14 20:13:52 +0000288 };
289 return false;
290 },
291
292 // Delete operand from group
293 delOperand : function (obj) {
294 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +0100295 if (this._operands[i] === obj) {
296
297 // Delete identified operand
298 this._operands.splice(i,1);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000299
Akron0b489ad2018-02-02 16:49:32 +0100300 // Destroy object for cyclic references
301 obj.destroy();
Nils Diewald0e6992a2015-04-14 20:13:52 +0000302
Akron0b489ad2018-02-02 16:49:32 +0100303 return this;
304 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000305 };
306
307 // Operand not found
308 return undefined;
309 },
310
311 // Deserialize from json
312 fromJson : function (json) {
313 if (json === undefined)
Akron0b489ad2018-02-02 16:49:32 +0100314 return this;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000315
316 if (json["@type"] === undefined) {
Akron0b489ad2018-02-02 16:49:32 +0100317 KorAP.log(701, "JSON-LD group has no @type attribute");
318 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000319 };
320
321 if (json["operation"] === undefined ||
Akron0b489ad2018-02-02 16:49:32 +0100322 typeof json["operation"] !== 'string') {
323 KorAP.log(811, "Document group expects operation");
324 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000325 };
326
327 var operation = json["operation"];
328
329 this.operation(operation.replace(/^operation:/,''));
330
331 if (json["operands"] === undefined ||
Akron0b489ad2018-02-02 16:49:32 +0100332 !(json["operands"] instanceof Array)) {
333 KorAP.log(704, "Operation needs operand list")
334 return;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000335 };
336
337 // Add all documents
338 for (var i in json["operands"]) {
Akron0b489ad2018-02-02 16:49:32 +0100339 var operand = json["operands"][i];
340 this.append(operand);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000341 };
342
343 return this;
344 },
345
346 toJson : function () {
347 var opArray = new Array();
348 for (var i = 0; i < this._operands.length; i++) {
Akron0b489ad2018-02-02 16:49:32 +0100349 if (this._operands[i].ldType() !== 'non')
350 opArray.push(this._operands[i].toJson());
Nils Diewald0e6992a2015-04-14 20:13:52 +0000351 };
352 return {
Akron0b489ad2018-02-02 16:49:32 +0100353 "@type" : "koral:" + this.ldType(),
354 "operation" : "operation:" + this.operation(),
355 "operands" : opArray
Nils Diewald0e6992a2015-04-14 20:13:52 +0000356 };
357 },
358
359 toQuery : function (brackets) {
360 var list = this._operands
Akron0b489ad2018-02-02 16:49:32 +0100361 .filter(function (op) {
hebastaa0282be2018-12-05 16:58:00 +0100362 return !op.incomplete();
Akron0b489ad2018-02-02 16:49:32 +0100363 })
364 .map(function (op) {
365 return (op.ldType() === 'docGroup') ?
366 op.toQuery(true) :
367 op.toQuery();
368 });
Nils Diewald0e6992a2015-04-14 20:13:52 +0000369
370 if (list.length === 1)
Akron0b489ad2018-02-02 16:49:32 +0100371 return list.join('');
Nils Diewald0e6992a2015-04-14 20:13:52 +0000372 else {
Akron0b489ad2018-02-02 16:49:32 +0100373 var str = list.join(this.operation() === 'or' ? ' | ' : ' & ');
374 return brackets ? '(' + str + ')' : str;
Nils Diewald0e6992a2015-04-14 20:13:52 +0000375 };
376 }
377 };
378 return docGroupClass;
379});