Nils Diewald | 86dad5b | 2015-01-28 15:09:07 +0000 | [diff] [blame] | 1 | /** |
hebasta | a79d69d | 2018-07-24 12:13:02 +0200 | [diff] [blame] | 2 | * Create virtual collections with a visual user interface. This resembles the |
| 3 | * collection type objects of a KoralQuery "collection" object. |
| 4 | * |
Nils Diewald | 4c22125 | 2015-04-21 20:19:25 +0000 | [diff] [blame] | 5 | * KoralQuery v0.3 is expected. |
hebasta | a79d69d | 2018-07-24 12:13:02 +0200 | [diff] [blame] | 6 | * |
Nils Diewald | 86dad5b | 2015-01-28 15:09:07 +0000 | [diff] [blame] | 7 | * @author Nils Diewald |
| 8 | */ |
Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 9 | /* |
Nils Diewald | 1fcb2ad | 2015-04-20 19:19:18 +0000 | [diff] [blame] | 10 | * This replaces a previous version written by Mengfei Zhou |
Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 11 | */ |
Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 12 | |
Nils Diewald | d077049 | 2014-12-19 03:55:00 +0000 | [diff] [blame] | 13 | /* |
hebasta | 8675939 | 2018-07-25 15:44:37 +0200 | [diff] [blame] | 14 | TODO: Disable "and" or "or" in case it's followed |
| 15 | by an unspecified document |
| 16 | TODO: Add "and"-method to root to add further constraints |
| 17 | based on match-input (like clicking on a pubDate timestamp in a match) |
| 18 | TODO: Implement "persistence"-Option, injecting the current creation |
| 19 | date stamp |
| 20 | TODO: Implement vec-Type for document-id vectors like docID in [1,2,3,4 ...] |
| 21 | |
| 22 | Error codes: |
| 23 | 701: "JSON-LD group has no @type attribute" |
| 24 | 704: "Operation needs operand list" |
| 25 | 802: "Match type is not supported by value type" |
| 26 | 804: "Unknown value type" |
| 27 | 805: "Value is invalid" |
| 28 | 806: "Value is not a valid date string" |
| 29 | 807: "Value is not a valid regular expression" |
| 30 | 810: "Unknown document group operation" (like 711) |
| 31 | 811: "Document group expects operation" (like 703) |
| 32 | 812: "Operand not supported in document group" (like 744) |
| 33 | 813: "Collection type is not supported" (like 713) |
| 34 | 814: "Unknown rewrite operation" |
| 35 | 815: "Rewrite expects source" |
| 36 | |
| 37 | Localization strings: |
| 38 | KorAP.Locale = { |
| 39 | EMPTY : '...', |
| 40 | AND : 'and', |
| 41 | OR : 'or', |
| 42 | DELETE : 'x' } |
| 43 | |
| 44 | and various field names with the prefix 'VC_' |
hebasta | a79d69d | 2018-07-24 12:13:02 +0200 | [diff] [blame] | 45 | */ |
Nils Diewald | 86dad5b | 2015-01-28 15:09:07 +0000 | [diff] [blame] | 46 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 47 | define([ |
| 48 | 'vc/unspecified', |
| 49 | 'vc/doc', |
| 50 | 'vc/docgroup', |
| 51 | 'vc/docgroupref', |
| 52 | 'vc/menu', |
| 53 | 'vc/statistic', |
| 54 | 'datepicker', |
| 55 | 'buttongroup', |
| 56 | 'panel', |
| 57 | 'view/corpstatv', |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 58 | 'buttongroup', |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 59 | 'util' |
| 60 | ], function( |
| 61 | unspecDocClass, |
| 62 | docClass, |
| 63 | docGroupClass, |
| 64 | docGroupRefClass, |
| 65 | menuClass, |
| 66 | statClass, |
| 67 | dpClass, |
| 68 | buttonGrClass, |
| 69 | panelClass, |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 70 | corpStatVClass, |
| 71 | buttonGroupClass) { |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 72 | "use strict"; |
Nils Diewald | 1fcb2ad | 2015-04-20 19:19:18 +0000 | [diff] [blame] | 73 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 74 | KorAP._validUnspecMatchRE = new RegExp( |
| 75 | "^(?:eq|ne|contains(?:not)?|excludes)$"); |
| 76 | KorAP._validStringMatchRE = new RegExp("^(?:eq|ne)$"); |
| 77 | KorAP._validTextMatchRE = KorAP._validUnspecMatchRE; |
| 78 | KorAP._validTextOnlyMatchRE = new RegExp( |
| 79 | "^(?:contains(?:not)?|excludes)$"); |
| 80 | KorAP._overrideStyles = false; |
| 81 | // KorAP._validDateMatchRE is defined in datepicker.js! |
Nils Diewald | d077049 | 2014-12-19 03:55:00 +0000 | [diff] [blame] | 82 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 83 | const loc = KorAP.Locale; |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 84 | loc.SHOW_STAT = loc.SHOW_STAT || 'Statistics'; |
| 85 | loc.VERB_SHOWSTAT = loc.VERB_SHOWSTAT || 'Corpus Statistics'; |
Akron | 8a67016 | 2018-08-28 10:09:13 +0200 | [diff] [blame] | 86 | loc.VC_allCorpora = loc.VC_allCorpora || 'all corpora'; |
| 87 | loc.VC_oneCollection = loc.VC_oneCollection || 'a virtual corpus'; |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 88 | loc.MINIMIZE = loc.MINIMIZE || 'Minimize'; |
Nils Diewald | 3a2d802 | 2014-12-16 02:45:41 +0000 | [diff] [blame] | 89 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 90 | KorAP._vcKeyMenu = undefined; |
| 91 | KorAP._vcDatePicker = dpClass.create(); |
Nils Diewald | 3a2d802 | 2014-12-16 02:45:41 +0000 | [diff] [blame] | 92 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 93 | // Create match menus .... |
| 94 | KorAP._vcMatchopMenu = { |
| 95 | 'string' : menuClass.create([ |
| 96 | [ 'eq', null ], |
| 97 | [ 'ne', null ] |
| 98 | ]), |
| 99 | 'text' : menuClass.create([ |
| 100 | [ 'eq', null ], // Requires exact match |
| 101 | [ 'ne', null ], |
| 102 | [ 'contains', null ], // Requires token sequence match |
| 103 | [ 'containsnot', null ] |
| 104 | ]), |
| 105 | 'date' : menuClass.create([ |
| 106 | [ 'eq', null ], |
| 107 | [ 'ne', null ], |
| 108 | [ 'geq', null ], |
| 109 | [ 'leq', null ] |
| 110 | ]), |
| 111 | 'regex' : menuClass.create([ |
| 112 | [ 'eq', null ], |
| 113 | [ 'ne', null ] |
| 114 | ]) |
| 115 | }; |
| 116 | |
| 117 | /** |
| 118 | * Virtual Collection |
| 119 | */ |
| 120 | return { |
| 121 | |
| 122 | /** |
| 123 | * The JSON-LD type of the virtual collection |
| 124 | */ |
| 125 | ldType : function() { |
| 126 | return null; |
| 127 | }, |
| 128 | |
| 129 | // Initialize virtual collection |
| 130 | _init : function(keyList) { |
| 131 | |
| 132 | // Inject localized css styles |
| 133 | if (!KorAP._overrideStyles) { |
| 134 | var sheet = KorAP.newStyleSheet(); |
| 135 | |
| 136 | // Add css rule for OR operations |
| 137 | sheet.insertRule('.vc .docGroup[data-operation=or] > .doc::before,' |
| 138 | + '.vc .docGroup[data-operation=or] > .docGroup::before ' |
| 139 | + '{ content: "' + loc.OR + '" }', 0); |
| 140 | |
| 141 | // Add css rule for AND operations |
| 142 | sheet.insertRule( |
| 143 | '.vc .docGroup[data-operation=and] > .doc::before,' |
| 144 | + '.vc .docGroup[data-operation=and] > .docGroup::before ' |
| 145 | + '{ content: "' + loc.AND + '" }', 1); |
| 146 | |
| 147 | KorAP._overrideStyles = true; |
Nils Diewald | 359a72c | 2015-04-20 17:40:29 +0000 | [diff] [blame] | 148 | }; |
| 149 | |
Akron | 3ad4694 | 2018-08-22 16:47:14 +0200 | [diff] [blame] | 150 | var l; |
| 151 | if (keyList) { |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 152 | l = keyList.slice(); |
Akron | 3ad4694 | 2018-08-22 16:47:14 +0200 | [diff] [blame] | 153 | l.unshift(['referTo', 'ref']); |
| 154 | } |
| 155 | else { |
| 156 | l = [['referTo', 'ref']]; |
| 157 | } |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 158 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 159 | // Create key menu |
Akron | 3ad4694 | 2018-08-22 16:47:14 +0200 | [diff] [blame] | 160 | KorAP._vcKeyMenu = menuClass.create(l); |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 161 | KorAP._vcKeyMenu.limit(6); |
Akron | 712733a | 2018-04-05 18:17:47 +0200 | [diff] [blame] | 162 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 163 | return this; |
| 164 | }, |
Nils Diewald | 359a72c | 2015-04-20 17:40:29 +0000 | [diff] [blame] | 165 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 166 | /** |
| 167 | * Create a new virtual collection. |
| 168 | */ |
| 169 | create : function(keyList) { |
| 170 | var obj = Object.create(this)._init(keyList); |
| 171 | obj._root = unspecDocClass.create(obj); |
| 172 | return obj; |
| 173 | }, |
Nils Diewald | d599d54 | 2015-01-08 20:41:34 +0000 | [diff] [blame] | 174 | |
Akron | 8a67016 | 2018-08-28 10:09:13 +0200 | [diff] [blame] | 175 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 176 | /** |
| 177 | * Create and render a new virtual collection based on a KoralQuery |
| 178 | * collection document |
| 179 | */ |
| 180 | fromJson : function(json) { |
| 181 | if (json !== undefined) { |
| 182 | // Parse root document |
| 183 | if (json['@type'] == 'koral:doc') { |
| 184 | this._root = docClass.create(this, json); |
hebasta | a79d69d | 2018-07-24 12:13:02 +0200 | [diff] [blame] | 185 | } |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 186 | // parse root group |
| 187 | else if (json['@type'] == 'koral:docGroup') { |
| 188 | this._root = docGroupClass.create(this, json); |
| 189 | } |
| 190 | |
| 191 | // parse root reference |
| 192 | else if (json['@type'] == 'koral:docGroupRef') { |
| 193 | this._root = docGroupRefClass.create(this, json); |
| 194 | } |
| 195 | |
| 196 | // Unknown collection type |
| 197 | else { |
| 198 | KorAP.log(813, "Collection type is not supported"); |
| 199 | return; |
| 200 | }; |
| 201 | } |
| 202 | |
| 203 | else { |
| 204 | // Add unspecified object |
| 205 | this._root = unspecDocClass.create(this); |
Nils Diewald | 845282c | 2015-05-14 07:53:03 +0000 | [diff] [blame] | 206 | }; |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 207 | |
| 208 | // Init element and update |
| 209 | this.update(); |
| 210 | |
| 211 | return this; |
| 212 | }, |
Akron | d2474aa | 2018-08-28 12:06:27 +0200 | [diff] [blame] | 213 | |
| 214 | |
| 215 | // Check if the virtual corpus contains a rerite |
| 216 | wasRewritten : function (obj) { |
| 217 | |
| 218 | var obj; |
| 219 | if (arguments.length === 1) { |
| 220 | obj = arguments[0]; |
| 221 | } |
| 222 | else { |
| 223 | obj = this._root; |
| 224 | }; |
| 225 | |
| 226 | // Check for rewrite |
| 227 | if (obj.rewrites() && obj.rewrites().length() > 0) { |
| 228 | return true; |
| 229 | } |
| 230 | |
| 231 | // Check recursively |
| 232 | else if (obj.ldType() === 'docGroup') { |
| 233 | for (var i in obj.operands()) { |
| 234 | if (this.wasRewritten(obj.getOperand(i))) { |
| 235 | return true; |
| 236 | } |
| 237 | }; |
| 238 | }; |
| 239 | |
| 240 | return false; |
| 241 | }, |
Akron | 43c5cc6 | 2018-08-28 13:10:25 +0200 | [diff] [blame] | 242 | |
Akron | 8a67016 | 2018-08-28 10:09:13 +0200 | [diff] [blame] | 243 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 244 | /** |
| 245 | * Clean the virtual document to uspecified doc. |
| 246 | */ |
| 247 | clean : function() { |
| 248 | if (this._root.ldType() !== "non") { |
| 249 | this._root.destroy(); |
| 250 | this.root(unspecDocClass.create(this)); |
| 251 | }; |
| 252 | return this; |
| 253 | }, |
| 254 | |
| 255 | /** |
| 256 | * Get or set the root object of the virtual collection. |
| 257 | */ |
| 258 | root : function(obj) { |
| 259 | if (arguments.length === 1) { |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 260 | var e = this.builder(); |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 261 | |
| 262 | if (e.firstChild !== null) { |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 263 | |
| 264 | // Object not yet set |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 265 | if (e.firstChild !== obj.element()) { |
| 266 | e.replaceChild(obj.element(), e.firstChild); |
| 267 | }; |
| 268 | } |
| 269 | |
| 270 | // Append root element |
| 271 | else { |
| 272 | e.appendChild(obj.element()); |
| 273 | }; |
| 274 | |
| 275 | // Update parent child relations |
| 276 | this._root = obj; |
| 277 | obj.parent(this); |
| 278 | |
| 279 | this.update(); |
| 280 | }; |
| 281 | return this._root; |
| 282 | }, |
| 283 | |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 284 | |
| 285 | /** |
| 286 | * Get the wrapper element associated with the vc |
| 287 | */ |
| 288 | builder : function () { |
| 289 | |
| 290 | // Initialize if necessary |
| 291 | if (this._builder !== undefined) |
| 292 | return this._builder; |
| 293 | |
| 294 | this.element(); |
| 295 | return this._builder; |
| 296 | }, |
| 297 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 298 | /** |
| 299 | * Get the element associated with the virtual collection |
| 300 | */ |
| 301 | element : function() { |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 302 | if (this._element !== undefined) { |
| 303 | return this._element; |
| 304 | }; |
| 305 | |
| 306 | this._element = document.createElement('div'); |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 307 | this._element.classList.add('vc'); |
| 308 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 309 | |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 310 | this._builder = this._element.addE('div'); |
| 311 | this._builder.setAttribute('class', 'builder'); |
| 312 | |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 313 | var btn = buttonGroupClass.create( |
| 314 | ['action','button-view'] |
| 315 | ); |
| 316 | var that = this; |
| 317 | btn.add(loc.MINIMIZE, ['button-icon','minimize'], function () { |
| 318 | that.minimize(); |
| 319 | }); |
| 320 | this._element.appendChild(btn.element()); |
| 321 | |
| 322 | |
| 323 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 324 | // Initialize root |
Akron | adab5e5 | 2018-08-20 13:50:53 +0200 | [diff] [blame] | 325 | this._builder.appendChild(this._root.element()); |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 326 | |
| 327 | // Add panel to display corpus statistic, ... |
| 328 | this.addVcInfPanel(); |
| 329 | |
| 330 | return this._element; |
| 331 | }, |
| 332 | |
Akron | ec6bb8e | 2018-08-29 13:07:56 +0200 | [diff] [blame^] | 333 | |
| 334 | /** |
| 335 | * Check, if the VC is open |
| 336 | */ |
| 337 | isOpen : function () { |
| 338 | if (!this._element) |
| 339 | return false; |
| 340 | return this._element.classList.contains('active'); |
| 341 | }, |
| 342 | |
| 343 | /** |
| 344 | * Open the VC view |
| 345 | */ |
| 346 | open : function () { |
| 347 | this.element().classList.add('active'); |
| 348 | if (this.onOpen) |
| 349 | this.onOpen(); |
| 350 | }, |
| 351 | |
| 352 | |
| 353 | /** |
| 354 | * Minimize the VC view |
| 355 | */ |
| 356 | minimize : function () { |
| 357 | this.element().classList.remove('active'); |
| 358 | if (this.onMinimize) |
| 359 | this.onMinimize(); |
| 360 | }, |
| 361 | |
| 362 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 363 | /** |
| 364 | * Update the whole object based on the underlying data structure |
| 365 | */ |
| 366 | update : function() { |
| 367 | this._root.update(); |
| 368 | return this; |
| 369 | }, |
| 370 | |
| 371 | /** |
| 372 | * Make the vc persistant by injecting the current timestamp as a |
| 373 | * creation date limit criterion. |
| 374 | * THIS IS CURRENTLY NOT USED |
| 375 | */ |
| 376 | makePersistant : function() { |
| 377 | // this.root().wrapOnRoot('and'); |
| 378 | var todayStr = KorAP._vcDatePicker.today(); |
| 379 | var doc = docClass.create(); |
| 380 | var root = this.root(); |
| 381 | |
| 382 | if (root.ldType() === 'docGroup' && root.operation === 'and') { |
| 383 | root.append(cond); |
| 384 | } else { |
| 385 | root.wrapOnRoot('and'); |
| 386 | root.append(doc); |
| 387 | }; |
| 388 | |
| 389 | doc.key("creationDate"); |
| 390 | doc.type("date"); |
| 391 | doc.matchop("leq"); |
| 392 | doc.value(todayStr); |
| 393 | |
| 394 | /* |
| 395 | * { "@type" : "koral:doc", "key" : "creationDate", "type" : |
| 396 | * "type:date", "match" : "match:leq", "value" : todayStr } |
| 397 | * this.root().append(cond); |
| 398 | */ |
| 399 | this.update(); |
| 400 | }, |
| 401 | |
Akron | 8a67016 | 2018-08-28 10:09:13 +0200 | [diff] [blame] | 402 | |
| 403 | // Get the reference name |
| 404 | getName : function () { |
| 405 | if (this._root.ldType() === 'non') { |
| 406 | return loc.VC_allCorpora; |
| 407 | } |
| 408 | else if (this._root.ldType() === 'docGroupRef') { |
| 409 | return this._root.ref(); |
| 410 | } |
| 411 | else { |
| 412 | return loc.VC_oneCollection; |
| 413 | } |
| 414 | }, |
| 415 | |
| 416 | |
Akron | b19803c | 2018-08-16 16:39:42 +0200 | [diff] [blame] | 417 | /** |
| 418 | * Get the generated json string |
| 419 | */ |
| 420 | toJson : function() { |
| 421 | return this._root.toJson(); |
| 422 | }, |
| 423 | |
| 424 | /** |
| 425 | * Get the generated query string |
| 426 | */ |
| 427 | toQuery : function() { |
| 428 | return this._root.toQuery(); |
| 429 | }, |
| 430 | |
| 431 | |
| 432 | /* |
| 433 | * Add panel to display virtual corpus information |
| 434 | */ |
| 435 | addVcInfPanel : function() { |
| 436 | |
| 437 | var dv = this._element.addE('div'); |
| 438 | var panel = panelClass.create([ 'vcinfo' ]); |
| 439 | dv.appendChild(panel.element()); |
| 440 | |
| 441 | var that = this; |
| 442 | var actions = panel.actions; |
| 443 | var statView; |
| 444 | |
| 445 | actions.add(loc.SHOW_STAT, [ 'statistic' ], function() { |
| 446 | if (statView === undefined || !statView.shown()) { |
| 447 | statView = corpStatVClass.create(that); |
| 448 | panel.add(statView); |
| 449 | } |
| 450 | }); |
| 451 | } |
| 452 | }; |
| 453 | }); |