blob: d2029d092644311bf227c777b6113169ffabb8b2 [file] [log] [blame]
Nils Diewald86dad5b2015-01-28 15:09:07 +00001/**
hebastaa79d69d2018-07-24 12:13:02 +02002 * Create virtual collections with a visual user interface. This resembles the
3 * collection type objects of a KoralQuery "collection" object.
4 *
Nils Diewald4c221252015-04-21 20:19:25 +00005 * KoralQuery v0.3 is expected.
hebastaa79d69d2018-07-24 12:13:02 +02006 *
Nils Diewald86dad5b2015-01-28 15:09:07 +00007 * @author Nils Diewald
8 */
Nils Diewald2fe12e12015-03-06 16:47:06 +00009/*
Nils Diewald1fcb2ad2015-04-20 19:19:18 +000010 * This replaces a previous version written by Mengfei Zhou
Nils Diewald2fe12e12015-03-06 16:47:06 +000011 */
Nils Diewald2fe12e12015-03-06 16:47:06 +000012
Nils Diewaldd0770492014-12-19 03:55:00 +000013/*
hebasta86759392018-07-25 15:44:37 +020014 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_'
hebastaa79d69d2018-07-24 12:13:02 +020045 */
Nils Diewald86dad5b2015-01-28 15:09:07 +000046
Akronb19803c2018-08-16 16:39:42 +020047define([
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',
Akronec6bb8e2018-08-29 13:07:56 +020058 'buttongroup',
Akronb19803c2018-08-16 16:39:42 +020059 'util'
60], function(
61 unspecDocClass,
62 docClass,
63 docGroupClass,
64 docGroupRefClass,
65 menuClass,
66 statClass,
67 dpClass,
68 buttonGrClass,
69 panelClass,
Akronec6bb8e2018-08-29 13:07:56 +020070 corpStatVClass,
71 buttonGroupClass) {
Akronb19803c2018-08-16 16:39:42 +020072 "use strict";
Nils Diewald1fcb2ad2015-04-20 19:19:18 +000073
Akronb19803c2018-08-16 16:39:42 +020074 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 Diewaldd0770492014-12-19 03:55:00 +000082
Akronb19803c2018-08-16 16:39:42 +020083 const loc = KorAP.Locale;
Akronec6bb8e2018-08-29 13:07:56 +020084 loc.SHOW_STAT = loc.SHOW_STAT || 'Statistics';
85 loc.VERB_SHOWSTAT = loc.VERB_SHOWSTAT || 'Corpus Statistics';
Akron8a670162018-08-28 10:09:13 +020086 loc.VC_allCorpora = loc.VC_allCorpora || 'all corpora';
87 loc.VC_oneCollection = loc.VC_oneCollection || 'a virtual corpus';
Akronec6bb8e2018-08-29 13:07:56 +020088 loc.MINIMIZE = loc.MINIMIZE || 'Minimize';
Nils Diewald3a2d8022014-12-16 02:45:41 +000089
Akronb19803c2018-08-16 16:39:42 +020090 KorAP._vcKeyMenu = undefined;
91 KorAP._vcDatePicker = dpClass.create();
Nils Diewald3a2d8022014-12-16 02:45:41 +000092
Akronb19803c2018-08-16 16:39:42 +020093 // 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 Diewald359a72c2015-04-20 17:40:29 +0000148 };
149
Akron3ad46942018-08-22 16:47:14 +0200150 var l;
151 if (keyList) {
Akronadab5e52018-08-20 13:50:53 +0200152 l = keyList.slice();
Akron3ad46942018-08-22 16:47:14 +0200153 l.unshift(['referTo', 'ref']);
154 }
155 else {
156 l = [['referTo', 'ref']];
157 }
Akronadab5e52018-08-20 13:50:53 +0200158
Akronb19803c2018-08-16 16:39:42 +0200159 // Create key menu
Akron3ad46942018-08-22 16:47:14 +0200160 KorAP._vcKeyMenu = menuClass.create(l);
Akronb19803c2018-08-16 16:39:42 +0200161 KorAP._vcKeyMenu.limit(6);
Akron712733a2018-04-05 18:17:47 +0200162
Akronb19803c2018-08-16 16:39:42 +0200163 return this;
164 },
Nils Diewald359a72c2015-04-20 17:40:29 +0000165
Akronb19803c2018-08-16 16:39:42 +0200166 /**
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 Diewaldd599d542015-01-08 20:41:34 +0000174
Akron8a670162018-08-28 10:09:13 +0200175
Akronb19803c2018-08-16 16:39:42 +0200176 /**
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);
hebastaa79d69d2018-07-24 12:13:02 +0200185 }
Akronb19803c2018-08-16 16:39:42 +0200186 // 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 Diewald845282c2015-05-14 07:53:03 +0000206 };
Akronb19803c2018-08-16 16:39:42 +0200207
208 // Init element and update
209 this.update();
210
211 return this;
212 },
Akrond2474aa2018-08-28 12:06:27 +0200213
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 },
Akron43c5cc62018-08-28 13:10:25 +0200242
Akron8a670162018-08-28 10:09:13 +0200243
Akronb19803c2018-08-16 16:39:42 +0200244 /**
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) {
Akronadab5e52018-08-20 13:50:53 +0200260 var e = this.builder();
Akronb19803c2018-08-16 16:39:42 +0200261
262 if (e.firstChild !== null) {
Akronadab5e52018-08-20 13:50:53 +0200263
264 // Object not yet set
Akronb19803c2018-08-16 16:39:42 +0200265 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
Akronadab5e52018-08-20 13:50:53 +0200284
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
Akronb19803c2018-08-16 16:39:42 +0200298 /**
Akron68d28322018-08-27 15:02:42 +0200299 * Get the element associated with the virtual corpus
Akronb19803c2018-08-16 16:39:42 +0200300 */
301 element : function() {
Akronb19803c2018-08-16 16:39:42 +0200302 if (this._element !== undefined) {
303 return this._element;
304 };
305
306 this._element = document.createElement('div');
Akronec6bb8e2018-08-29 13:07:56 +0200307 this._element.classList.add('vc');
308
Akronb19803c2018-08-16 16:39:42 +0200309
Akronadab5e52018-08-20 13:50:53 +0200310 this._builder = this._element.addE('div');
311 this._builder.setAttribute('class', 'builder');
312
Akronec6bb8e2018-08-29 13:07:56 +0200313 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
Akronb19803c2018-08-16 16:39:42 +0200324 // Initialize root
Akronadab5e52018-08-20 13:50:53 +0200325 this._builder.appendChild(this._root.element());
Akronb19803c2018-08-16 16:39:42 +0200326
327 // Add panel to display corpus statistic, ...
328 this.addVcInfPanel();
329
330 return this._element;
331 },
332
Akronec6bb8e2018-08-29 13:07:56 +0200333
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
Akronb19803c2018-08-16 16:39:42 +0200363 /**
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
Akron8a670162018-08-28 10:09:13 +0200402
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
Akronb19803c2018-08-16 16:39:42 +0200417 /**
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});