Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 1 | /** |
| 2 | * Document group criterion |
| 3 | */ |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 4 | /* |
| 5 | * TODO: Let the UPDATE event bubble up through parents! |
| 6 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 7 | define([ |
| 8 | 'vc/jsonld', |
| 9 | 'vc/unspecified', |
| 10 | 'vc/doc', |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 11 | 'vc/docgroupref', |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 12 | 'util' |
| 13 | ], function (jsonldClass, |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 14 | unspecClass, |
| 15 | docClass, |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 16 | docGroupRefClass) { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 17 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 18 | const _validGroupOpRE = new RegExp("^(?:and|or)$"); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 19 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 20 | const docGroupClass = { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 21 | _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) |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 28 | obj._parent = parent; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 29 | return obj; |
| 30 | }, |
| 31 | |
| 32 | newAfter : function (obj) { |
| 33 | for (var i = 0; i < this._operands.length; i++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 34 | 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 39 | }; |
| 40 | }, |
| 41 | |
| 42 | // The doc is already set in the group |
| 43 | _duplicate : function (operand) { |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 44 | |
| 45 | // TODO: |
| 46 | // Also check for duplicate docGroupRefs! |
| 47 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 48 | if (operand.ldType() !== 'doc') |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 49 | return null; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 50 | |
| 51 | for (var i = 0; i < this._operands.length; i++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 52 | 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 59 | }; |
| 60 | return null; |
| 61 | }, |
| 62 | |
| 63 | append : function (operand) { |
| 64 | |
| 65 | // Append unspecified object |
| 66 | if (operand === undefined) { |
| 67 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 68 | // Be aware of cyclic structures! |
| 69 | operand = unspecClass.create(this); |
| 70 | this._operands.push(operand); |
| 71 | return operand; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | switch (operand["@type"]) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 75 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 76 | case undefined: |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 77 | // No @type defined |
| 78 | if (operand["ldType"] !== undefined) { |
| 79 | if (operand.ldType() !== 'doc' && |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 80 | operand.ldType() !== 'docGroup' && |
| 81 | operand.ldType() !== 'docGroupRef') { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 82 | KorAP.log(812, "Operand not supported in document group"); |
| 83 | return; |
| 84 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 85 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 86 | // Be aware of cyclic structures! |
| 87 | operand.parent(this); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 88 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 89 | var dupl = this._duplicate(operand); |
| 90 | if (dupl === null) { |
| 91 | this._operands.push(operand); |
| 92 | return operand; |
| 93 | }; |
| 94 | return dupl; |
| 95 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 96 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 97 | KorAP.log(701, "JSON-LD group has no @type attribute"); |
| 98 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 99 | |
| 100 | case "koral:doc": |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 101 | // 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 111 | |
| 112 | case "koral:docGroup": |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 113 | // Be aware of cyclic structures! |
| 114 | var docGroup = docGroupClass.create(this, operand); |
| 115 | if (docGroup === undefined) |
| 116 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 117 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 118 | // 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 134 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 135 | 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 157 | default: |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 158 | KorAP.log(812, "Operand not supported in document group"); |
| 159 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 160 | }; |
| 161 | }, |
| 162 | |
| 163 | update : function () { |
| 164 | // There is only one operand in group |
| 165 | |
| 166 | if (this._operands.length === 1) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 167 | |
| 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 174 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 175 | // Parent is a group |
| 176 | if (parent.ldType() !== null) |
| 177 | return parent.replaceOperand(this, op).update(); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 178 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 179 | // 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 Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 187 | }; |
| 188 | |
| 189 | if (this._element === undefined) |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 190 | return this; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 191 | |
| 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++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 199 | group.appendChild( |
| 200 | this.getOperand(i).element() |
| 201 | ); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | // Set operators |
| 205 | var op = this.operators( |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 206 | this.operation() == 'and' ? false : true, |
| 207 | this.operation() == 'or' ? false : true, |
| 208 | true |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 209 | ); |
| 210 | |
| 211 | group.appendChild(op.element()); |
| 212 | |
| 213 | return this; |
| 214 | }, |
| 215 | |
| 216 | element : function () { |
| 217 | if (this._element !== undefined) |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 218 | return this._element; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 219 | |
| 220 | this._element = document.createElement('div'); |
| 221 | this._element.setAttribute('class', 'docGroup'); |
| 222 | |
| 223 | // Update the object - including optimization |
| 224 | this.update(); |
| 225 | |
| 226 | return this._element; |
| 227 | }, |
| 228 | |
| 229 | operation : function (op) { |
| 230 | if (arguments.length === 1) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 231 | if (_validGroupOpRE.test(op)) { |
| 232 | this._op = op; |
| 233 | } |
| 234 | else { |
| 235 | KorAP.log(810, "Unknown operation type"); |
| 236 | return; |
| 237 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 238 | }; |
| 239 | return this._op || 'and'; |
| 240 | }, |
| 241 | |
| 242 | operands : function () { |
| 243 | return this._operands; |
| 244 | }, |
| 245 | |
| 246 | getOperand : function (index) { |
| 247 | return this._operands[index]; |
| 248 | }, |
| 249 | |
| 250 | // Replace operand |
| 251 | replaceOperand : function (oldOp, newOp) { |
| 252 | |
| 253 | for (var i = 0; i < this._operands.length; i++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 254 | if (this._operands[i] === oldOp) { |
| 255 | |
| 256 | // Just insert a doc or ... |
| 257 | if (newOp.ldType() === "doc" || |
| 258 | newOp.ldType() === "non" || |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 259 | newOp.ldType() === 'docGroupRef' || |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 260 | // ... insert a group of a different operation |
| 261 | // (i.e. "and" in "or"/"or" in "and") |
| 262 | newOp.operation() != this.operation()) { |
| 263 | this._operands[i] = newOp; |
| 264 | newOp.parent(this); |
| 265 | } |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 266 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 267 | // Flatten group |
| 268 | else { |
| 269 | // Remove old group |
| 270 | this._operands.splice(i, 1); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 271 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 272 | // Inject new operands |
| 273 | for (var op in newOp.operands().reverse()) { |
| 274 | op = newOp.getOperand(op); |
| 275 | this._operands.splice(i, 0, op); |
| 276 | op.parent(this); |
| 277 | }; |
| 278 | // Prevent destruction of operands |
| 279 | newOp._operands = []; |
| 280 | newOp.destroy(); |
| 281 | }; |
| 282 | oldOp.destroy(); |
| 283 | return this; |
| 284 | } |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 285 | }; |
| 286 | return false; |
| 287 | }, |
| 288 | |
| 289 | // Delete operand from group |
| 290 | delOperand : function (obj) { |
| 291 | for (var i = 0; i < this._operands.length; i++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 292 | if (this._operands[i] === obj) { |
| 293 | |
| 294 | // Delete identified operand |
| 295 | this._operands.splice(i,1); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 296 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 297 | // Destroy object for cyclic references |
| 298 | obj.destroy(); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 299 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 300 | return this; |
| 301 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 302 | }; |
| 303 | |
| 304 | // Operand not found |
| 305 | return undefined; |
| 306 | }, |
| 307 | |
| 308 | // Deserialize from json |
| 309 | fromJson : function (json) { |
| 310 | if (json === undefined) |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 311 | return this; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 312 | |
| 313 | if (json["@type"] === undefined) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 314 | KorAP.log(701, "JSON-LD group has no @type attribute"); |
| 315 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 316 | }; |
| 317 | |
| 318 | if (json["operation"] === undefined || |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 319 | typeof json["operation"] !== 'string') { |
| 320 | KorAP.log(811, "Document group expects operation"); |
| 321 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 322 | }; |
| 323 | |
| 324 | var operation = json["operation"]; |
| 325 | |
| 326 | this.operation(operation.replace(/^operation:/,'')); |
| 327 | |
| 328 | if (json["operands"] === undefined || |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 329 | !(json["operands"] instanceof Array)) { |
| 330 | KorAP.log(704, "Operation needs operand list") |
| 331 | return; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 332 | }; |
| 333 | |
| 334 | // Add all documents |
| 335 | for (var i in json["operands"]) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 336 | var operand = json["operands"][i]; |
| 337 | this.append(operand); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 338 | }; |
| 339 | |
| 340 | return this; |
| 341 | }, |
| 342 | |
| 343 | toJson : function () { |
| 344 | var opArray = new Array(); |
| 345 | for (var i = 0; i < this._operands.length; i++) { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 346 | if (this._operands[i].ldType() !== 'non') |
| 347 | opArray.push(this._operands[i].toJson()); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 348 | }; |
| 349 | return { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 350 | "@type" : "koral:" + this.ldType(), |
| 351 | "operation" : "operation:" + this.operation(), |
| 352 | "operands" : opArray |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 353 | }; |
| 354 | }, |
| 355 | |
| 356 | toQuery : function (brackets) { |
| 357 | var list = this._operands |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 358 | .filter(function (op) { |
hebasta | a0282be | 2018-12-05 16:58:00 +0100 | [diff] [blame] | 359 | return !op.incomplete(); |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 360 | }) |
| 361 | .map(function (op) { |
| 362 | return (op.ldType() === 'docGroup') ? |
| 363 | op.toQuery(true) : |
| 364 | op.toQuery(); |
| 365 | }); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 366 | |
| 367 | if (list.length === 1) |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 368 | return list.join(''); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 369 | else { |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 370 | var str = list.join(this.operation() === 'or' ? ' | ' : ' & '); |
| 371 | return brackets ? '(' + str + ')' : str; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 372 | }; |
| 373 | } |
| 374 | }; |
| 375 | return docGroupClass; |
| 376 | }); |