blob: 59d2e8350e33b012e6dc76095ccf024efe8bd1c8 [file] [log] [blame]
Nils Diewalde8518f82015-03-18 22:41:49 +00001/**
Nils Diewalda297f062015-04-02 00:23:46 +00002 * Get information on matches,
3 * generate annotation tables and trees.
Nils Diewalde8518f82015-03-18 22:41:49 +00004 *
5 * @author Nils Diewald
6 */
7/*
Nils Diewald6e43ffd2015-03-25 18:55:39 +00008 * - Highlight (at least mark as bold) the match
9 * - Scroll to match vertically per default
Akron02360e42016-06-07 13:41:12 +020010 * - A click on a table field and a tree node should at the field description to the fragments list.
Nils Diewalde8518f82015-03-18 22:41:49 +000011 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000012define([
Akron24866cf2018-01-23 20:22:01 +010013 'match/info', // rename to anno
Akron52ed22d2018-07-11 17:05:19 +020014 'match/treeitem',
Akron13448c22018-07-10 13:05:46 +020015 'buttongroup',
Akron52ed22d2018-07-11 17:05:19 +020016 'buttongroup/menu',
Akron8b592d42018-01-26 18:33:06 +010017 'util'
Akron52ed22d2018-07-11 17:05:19 +020018], function (infoClass,treeItemClass,buttonGroupClass,buttonGroupMenuClass) { //, refClass) {
Nils Diewald4f6521a2015-03-20 21:30:13 +000019
Nils Diewald6e43ffd2015-03-25 18:55:39 +000020 // Localization values
Akron0b489ad2018-02-02 16:49:32 +010021 const loc = KorAP.Locale;
Akron24866cf2018-01-23 20:22:01 +010022 loc.SHOWINFO = loc.SHOWINFO || 'Show information';
Akrond5436a42018-02-09 11:09:16 +010023 loc.ADDTREE = loc.ADDTREE || 'Relations';
24 loc.SHOWANNO = loc.SHOWANNO || 'Tokens';
Akron24866cf2018-01-23 20:22:01 +010025 loc.CLOSE = loc.CLOSE || 'Close';
Akrond5436a42018-02-09 11:09:16 +010026 loc.SHOW_META = loc.SHOW_META || 'Metadata';
Nils Diewald0e6992a2015-04-14 20:13:52 +000027
Akron0a6768f2016-07-13 18:00:43 +020028 // 'corpusID', 'docID', 'textID'
Akron0b489ad2018-02-02 16:49:32 +010029 const _matchTerms = ['textSigle', 'matchID', 'available'];
30
31 const d = document;
Nils Diewalda297f062015-04-02 00:23:46 +000032
33 /**
34 * Match object
35 */
Nils Diewald0e6992a2015-04-14 20:13:52 +000036 return {
Nils Diewalde8518f82015-03-18 22:41:49 +000037
38 /**
39 * Create a new annotation object.
40 * Expects an array of available foundry/layer=type terms.
41 * Supported types are 'spans', 'tokens' and 'rels'.
42 */
Nils Diewalda297f062015-04-02 00:23:46 +000043 create : function (match) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000044 return Object.create(this)._init(match);
Nils Diewalde8518f82015-03-18 22:41:49 +000045 },
46
Nils Diewald7c8ced22015-04-15 19:21:00 +000047
Nils Diewald6e43ffd2015-03-25 18:55:39 +000048 /**
Nils Diewalda297f062015-04-02 00:23:46 +000049 * Initialize match.
Nils Diewald6e43ffd2015-03-25 18:55:39 +000050 */
Nils Diewalda297f062015-04-02 00:23:46 +000051 _init : function (match) {
52 this._element = null;
Nils Diewald6e43ffd2015-03-25 18:55:39 +000053
Nils Diewalda297f062015-04-02 00:23:46 +000054 // No match defined
55 if (arguments.length < 1 ||
Akron19d97fe2016-09-06 20:47:05 +020056 match === null ||
57 match === undefined) {
58 throw new Error('Missing parameters');
Nils Diewalda297f062015-04-02 00:23:46 +000059 }
Nils Diewald6e43ffd2015-03-25 18:55:39 +000060
Nils Diewalda297f062015-04-02 00:23:46 +000061 // Match defined as a node
62 else if (match instanceof Node) {
Akron19d97fe2016-09-06 20:47:05 +020063 this._element = match;
Nils Diewald6e43ffd2015-03-25 18:55:39 +000064
Akron19d97fe2016-09-06 20:47:05 +020065 // Circular reference !!
66 match["_match"] = this;
Nils Diewalda297f062015-04-02 00:23:46 +000067
Akron19d97fe2016-09-06 20:47:05 +020068 /*
69 this.corpusID = match.getAttribute('data-corpus-id'),
70 this.docID = match.getAttribute('data-doc-id'),
71 this.textID = match.getAttribute('data-text-id'),
72 */
73 if (match.hasAttribute('data-text-sigle')) {
74 this.textSigle = match.getAttribute('data-text-sigle')
75 }
76 else {
77 this.textSigle = match.getAttribute('data-corpus-id') +
78 '/' +
79 match.getAttribute('data-doc-id') +
80 '/' +
81 match.getAttribute('data-text-id');
82 };
Akron0a6768f2016-07-13 18:00:43 +020083
Akron19d97fe2016-09-06 20:47:05 +020084 this.matchID = match.getAttribute('data-match-id');
Nils Diewalda297f062015-04-02 00:23:46 +000085
Akron19d97fe2016-09-06 20:47:05 +020086 // List of available annotations
87 this.available = match.getAttribute('data-available-info').split(' ');
Nils Diewalda297f062015-04-02 00:23:46 +000088 }
89
90 // Match as an object
91 else {
92
Akron19d97fe2016-09-06 20:47:05 +020093 // Iterate over allowed match terms
94 for (var i in _matchTerms) {
95 var term = _matchTerms[i];
96 this[term] = match[term] !== undefined ? match[term] : undefined;
97 };
Nils Diewalda297f062015-04-02 00:23:46 +000098 };
Nils Diewald0e6992a2015-04-14 20:13:52 +000099
Nils Diewald7c8ced22015-04-15 19:21:00 +0000100 this._avail = {
Akron19d97fe2016-09-06 20:47:05 +0200101 tokens : [],
102 spans : [],
103 rels : []
Nils Diewalde8518f82015-03-18 22:41:49 +0000104 };
Nils Diewalda297f062015-04-02 00:23:46 +0000105
106 // Iterate over info layers
107 for (var i = 0; i < this.available.length; i++) {
Akron19d97fe2016-09-06 20:47:05 +0200108 var term = this.available[i];
Nils Diewalda297f062015-04-02 00:23:46 +0000109
Akron19d97fe2016-09-06 20:47:05 +0200110 // Create info layer objects
111 try {
112 var layer = require('match/infolayer').create(term);
113 this._avail[layer.type].push(layer);
114 }
115 catch (e) {
116 continue;
117 };
Nils Diewalde8518f82015-03-18 22:41:49 +0000118 };
Akron3a4a08e2017-05-23 22:34:18 +0200119
Nils Diewalde8518f82015-03-18 22:41:49 +0000120 return this;
121 },
122
Nils Diewalde8518f82015-03-18 22:41:49 +0000123 /**
124 * Return a list of parseable tree annotations.
125 */
126 getSpans : function () {
Nils Diewald7c8ced22015-04-15 19:21:00 +0000127 return this._avail.spans;
Nils Diewalde8518f82015-03-18 22:41:49 +0000128 },
129
130
131 /**
132 * Return a list of parseable token annotations.
133 */
134 getTokens : function () {
Nils Diewald7c8ced22015-04-15 19:21:00 +0000135 return this._avail.tokens;
Nils Diewalde8518f82015-03-18 22:41:49 +0000136 },
137
138
139 /**
140 * Return a list of parseable relation annotations.
141 */
142 getRels : function () {
Nils Diewald7c8ced22015-04-15 19:21:00 +0000143 return this._avail.rels;
Nils Diewalde8518f82015-03-18 22:41:49 +0000144 },
145
Nils Diewald7c8ced22015-04-15 19:21:00 +0000146
Nils Diewalda297f062015-04-02 00:23:46 +0000147 /**
148 * Open match
149 */
150 open : function () {
151
152 // Add actions unless it's already activated
153 var element = this._element;
154
155 // There is an element to open
156 if (this._element === undefined || this._element === null)
Akron19d97fe2016-09-06 20:47:05 +0200157 return false;
Nils Diewalda297f062015-04-02 00:23:46 +0000158
159 // The element is already opened
160 if (element.classList.contains('active'))
Akron19d97fe2016-09-06 20:47:05 +0200161 return false;
Nils Diewalda297f062015-04-02 00:23:46 +0000162
163 // Add active class to element
164 element.classList.add('active');
165
Nils Diewald7c8ced22015-04-15 19:21:00 +0000166 // Already there
167 if (element.classList.contains('action'))
Akron19d97fe2016-09-06 20:47:05 +0200168 return true;
Nils Diewald7c8ced22015-04-15 19:21:00 +0000169
Nils Diewalda297f062015-04-02 00:23:46 +0000170 // Create action buttons
Akron0b489ad2018-02-02 16:49:32 +0100171 var ul = d.createElement('ul');
Nils Diewalda297f062015-04-02 00:23:46 +0000172 ul.classList.add('action', 'right');
Nils Diewalda297f062015-04-02 00:23:46 +0000173
Nils Diewald7c8ced22015-04-15 19:21:00 +0000174 element.appendChild(ul);
175 element.classList.add('action');
176
177 // Todo: Open in new frame
Nils Diewalda297f062015-04-02 00:23:46 +0000178
179 // Add close button
Akron0b489ad2018-02-02 16:49:32 +0100180 var close = d.createElement('li');
181 close.addE('span').addT(loc.CLOSE);
Nils Diewalda297f062015-04-02 00:23:46 +0000182 close.classList.add('close');
183 close.setAttribute('title', loc.CLOSE);
Nils Diewald0e6992a2015-04-14 20:13:52 +0000184
Nils Diewalda297f062015-04-02 00:23:46 +0000185 var that = this;
186
Akron24866cf2018-01-23 20:22:01 +0100187 // Add meta button
188 var refLine = element.querySelector("p.ref");
189
Akron0b489ad2018-02-02 16:49:32 +0100190 // No reference found
Akron151bc872018-02-02 14:04:15 +0100191 if (!refLine)
192 return;
Akron0ad7cd22018-02-08 18:03:06 +0100193
Akron13448c22018-07-10 13:05:46 +0200194 var btns = buttonGroupClass.create(['action', 'bottom']);
Akron8b592d42018-01-26 18:33:06 +0100195
Akron13448c22018-07-10 13:05:46 +0200196 // Add meta button
197 btns.add(
198 loc.SHOW_META, ['meta'], function (e) {
Akron151bc872018-02-02 14:04:15 +0100199 that.info().showMeta();
200 }
201 );
Akron8b592d42018-01-26 18:33:06 +0100202
Akron13448c22018-07-10 13:05:46 +0200203 // Add token annotation button
204 btns.add(
205 loc.SHOWANNO, ['info'], function (e) {
Akron151bc872018-02-02 14:04:15 +0100206 that.info().showTable();
207 }
208 );
Akron24866cf2018-01-23 20:22:01 +0100209
Akron13448c22018-07-10 13:05:46 +0200210 // Add tree view button
211 btns.add(
212 loc.ADDTREE, ['tree'], function (e) {
Akron151bc872018-02-02 14:04:15 +0100213 if (KorAP.TreeMenu === undefined) {
Akron52ed22d2018-07-11 17:05:19 +0200214 KorAP.TreeMenu = buttonGroupMenuClass.create([], treeItemClass);
Akron151bc872018-02-02 14:04:15 +0100215 };
Akron8b592d42018-01-26 18:33:06 +0100216
Akron151bc872018-02-02 14:04:15 +0100217 var tm = KorAP.TreeMenu;
Akron8b592d42018-01-26 18:33:06 +0100218
Akron151bc872018-02-02 14:04:15 +0100219 // Reread list
220 tm.info(that.info());
221 tm.readItems(that.treeMenuList());
Akroneaba63e2018-01-26 19:49:30 +0100222
Akron151bc872018-02-02 14:04:15 +0100223 // Reposition and show menu
Akron151bc872018-02-02 14:04:15 +0100224 tm.show();
Akron52ed22d2018-07-11 17:05:19 +0200225 tm.button(this);
Akron151bc872018-02-02 14:04:15 +0100226 tm.focus();
227 }
228 );
Akron24866cf2018-01-23 20:22:01 +0100229
Akron13448c22018-07-10 13:05:46 +0200230
231 // Insert before reference line
232 refLine.insertBefore(
233 btns.element(),
234 refLine.firstChild
235 );
236
237
Nils Diewalda297f062015-04-02 00:23:46 +0000238 // Close match
239 close.addEventListener('click', function (e) {
Akron19d97fe2016-09-06 20:47:05 +0200240 e.halt();
241 that.close()
Nils Diewalda297f062015-04-02 00:23:46 +0000242 });
243
Nils Diewalda297f062015-04-02 00:23:46 +0000244 ul.appendChild(close);
Nils Diewalda297f062015-04-02 00:23:46 +0000245
246 return true;
247 },
248
Akron8c468a12016-11-13 23:57:41 +0100249
Akron6a535d42015-08-26 20:16:58 +0200250 // Todo: Test toggle
251 toggle : function () {
252 if (this._element.classList.contains('active'))
Akron19d97fe2016-09-06 20:47:05 +0200253 this.close();
Akron6a535d42015-08-26 20:16:58 +0200254 else
Akron19d97fe2016-09-06 20:47:05 +0200255 this.open();
Akron6a535d42015-08-26 20:16:58 +0200256 },
257
Nils Diewald7c8ced22015-04-15 19:21:00 +0000258
Nils Diewald8bc7e412015-03-19 22:08:27 +0000259 /**
Nils Diewalda297f062015-04-02 00:23:46 +0000260 * Close info view
261 */
262 close : function () {
263 this._element.classList.remove('active');
Akron151bc872018-02-02 14:04:15 +0100264 /*
265 if (this._info !== undefined) {
266 this._info.destroy();
267 };
268 */
Nils Diewalda297f062015-04-02 00:23:46 +0000269 },
270
271
Nils Diewalda297f062015-04-02 00:23:46 +0000272 /**
Akron151bc872018-02-02 14:04:15 +0100273 * Get and open associated match infos.
Nils Diewalda297f062015-04-02 00:23:46 +0000274 */
275 info : function () {
276
277 // Create match info
278 if (this._info === undefined)
Akron19d97fe2016-09-06 20:47:05 +0200279 this._info = infoClass.create(this);
Nils Diewalda297f062015-04-02 00:23:46 +0000280
281 // There is an element to append
282 if (this._element === undefined ||
Akron19d97fe2016-09-06 20:47:05 +0200283 this._element === null)
284 return this._info;
Nils Diewald7c8ced22015-04-15 19:21:00 +0000285
Nils Diewalda297f062015-04-02 00:23:46 +0000286 // Info is already activated
Nils Diewald5c5a7472015-04-02 22:13:38 +0000287 if (this._info._element !== undefined)
Akron19d97fe2016-09-06 20:47:05 +0200288 return this._info;
Nils Diewalda297f062015-04-02 00:23:46 +0000289
Akronbd342982018-01-25 18:01:46 +0100290 var refLine = this._element.querySelector("p.ref");
291 this._element.insertBefore(
292 this._info.element(),
293 refLine
294 );
295
Nils Diewalda297f062015-04-02 00:23:46 +0000296 return this._info;
297 },
298
Akron8b592d42018-01-26 18:33:06 +0100299
Akron151bc872018-02-02 14:04:15 +0100300 // Return tree menu list
Akroneaba63e2018-01-26 19:49:30 +0100301 treeMenuList : function () {
302
303 if (this._menuList)
304 return this._menuList;
Akron8b592d42018-01-26 18:33:06 +0100305
306 // Join spans and relations
307 var treeLayers = []
308 var spans = this.getSpans();
309 var rels = this.getRels();
310 var i;
311 for (i in spans) {
312 treeLayers.push(spans[i]);
313 };
314 for (i in rels) {
315 treeLayers.push(rels[i]);
316 };
317
318 // Get spans
319 treeLayers = treeLayers.sort(
320 function (a, b) {
321 if (a.foundry < b.foundry) {
322 return -1;
323 }
324 else if (a.foundry > b.foundry) {
325 return 1;
326 }
327 else if (a.layer < b.layer) {
328 return -1;
329 }
330 else if (a.layer > b.layer) {
331 return 1;
332 };
333 return 0;
334 });
335
336 var menuList = [];
337
338 // Show tree views
339 for (var i = 0; i < treeLayers.length; i++) {
340 var span = treeLayers[i];
341
342 // Add foundry/layer to menu list
343 menuList.push([
344 span.foundry + '/' + span.layer,
345 span.foundry,
346 span.layer,
347 span.type
348 ]);
349 };
350
351 // Create tree menu
Akroneaba63e2018-01-26 19:49:30 +0100352 this._menuList = menuList;
353 return menuList;
Akron8b592d42018-01-26 18:33:06 +0100354 },
355
Nils Diewald7c8ced22015-04-15 19:21:00 +0000356
Nils Diewalda297f062015-04-02 00:23:46 +0000357 /**
358 * Get match element.
359 */
360 element : function () {
Nils Diewald7c8ced22015-04-15 19:21:00 +0000361 return this._element; // May be null
Nils Diewalda297f062015-04-02 00:23:46 +0000362 }
363 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000364});