Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 1 | /** |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 2 | * Get information on matches, |
| 3 | * generate annotation tables and trees. |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 4 | * |
| 5 | * @author Nils Diewald |
| 6 | */ |
| 7 | /* |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 8 | * - Highlight (at least mark as bold) the match |
| 9 | * - Scroll to match vertically per default |
Akron | 02360e4 | 2016-06-07 13:41:12 +0200 | [diff] [blame] | 10 | * - A click on a table field and a tree node should at the field description to the fragments list. |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 11 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 12 | define([ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 13 | 'match/info', |
Akron | 30ee514 | 2015-06-26 01:50:14 +0200 | [diff] [blame] | 14 | 'match/reference', |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 15 | 'util' |
Akron | 30ee514 | 2015-06-26 01:50:14 +0200 | [diff] [blame] | 16 | ], function (infoClass, refClass) { |
Nils Diewald | 4f6521a | 2015-03-20 21:30:13 +0000 | [diff] [blame] | 17 | |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 18 | // Localization values |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 19 | var loc = KorAP.Locale; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 20 | loc.ADDTREE = loc.ADDTREE || 'Add tree view'; |
| 21 | loc.SHOWINFO = loc.SHOWINFO || 'Show information'; |
| 22 | loc.CLOSE = loc.CLOSE || 'Close'; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 23 | |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 24 | // 'corpusID', 'docID', 'textID' |
| 25 | var _matchTerms = ['textSigle', 'matchID', 'available']; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 26 | |
| 27 | /** |
| 28 | * Match object |
| 29 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 30 | return { |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * Create a new annotation object. |
| 34 | * Expects an array of available foundry/layer=type terms. |
| 35 | * Supported types are 'spans', 'tokens' and 'rels'. |
| 36 | */ |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 37 | create : function (match) { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 38 | return Object.create(this)._init(match); |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 39 | }, |
| 40 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 41 | |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 42 | /** |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 43 | * Initialize match. |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 44 | */ |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 45 | _init : function (match) { |
| 46 | this._element = null; |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 47 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 48 | // No match defined |
| 49 | if (arguments.length < 1 || |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 50 | match === null || |
| 51 | match === undefined) { |
| 52 | throw new Error('Missing parameters'); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 53 | } |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 54 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 55 | // Match defined as a node |
| 56 | else if (match instanceof Node) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 57 | this._element = match; |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 58 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 59 | // Circular reference !! |
| 60 | match["_match"] = this; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 61 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 62 | /* |
| 63 | this.corpusID = match.getAttribute('data-corpus-id'), |
| 64 | this.docID = match.getAttribute('data-doc-id'), |
| 65 | this.textID = match.getAttribute('data-text-id'), |
| 66 | */ |
| 67 | if (match.hasAttribute('data-text-sigle')) { |
| 68 | this.textSigle = match.getAttribute('data-text-sigle') |
| 69 | } |
| 70 | else { |
| 71 | this.textSigle = match.getAttribute('data-corpus-id') + |
| 72 | '/' + |
| 73 | match.getAttribute('data-doc-id') + |
| 74 | '/' + |
| 75 | match.getAttribute('data-text-id'); |
| 76 | }; |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 77 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 78 | this.matchID = match.getAttribute('data-match-id'); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 79 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 80 | // List of available annotations |
| 81 | this.available = match.getAttribute('data-available-info').split(' '); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | // Match as an object |
| 85 | else { |
| 86 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 87 | // Iterate over allowed match terms |
| 88 | for (var i in _matchTerms) { |
| 89 | var term = _matchTerms[i]; |
| 90 | this[term] = match[term] !== undefined ? match[term] : undefined; |
| 91 | }; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 92 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 93 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 94 | this._avail = { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 95 | tokens : [], |
| 96 | spans : [], |
| 97 | rels : [] |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 98 | }; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 99 | |
| 100 | // Iterate over info layers |
| 101 | for (var i = 0; i < this.available.length; i++) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 102 | var term = this.available[i]; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 103 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 104 | // Create info layer objects |
| 105 | try { |
| 106 | var layer = require('match/infolayer').create(term); |
| 107 | this._avail[layer.type].push(layer); |
| 108 | } |
| 109 | catch (e) { |
| 110 | continue; |
| 111 | }; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 112 | }; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 113 | |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 114 | return this; |
| 115 | }, |
| 116 | |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 117 | /** |
| 118 | * Return a list of parseable tree annotations. |
| 119 | */ |
| 120 | getSpans : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 121 | return this._avail.spans; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 122 | }, |
| 123 | |
| 124 | |
| 125 | /** |
| 126 | * Return a list of parseable token annotations. |
| 127 | */ |
| 128 | getTokens : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 129 | return this._avail.tokens; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 130 | }, |
| 131 | |
| 132 | |
| 133 | /** |
| 134 | * Return a list of parseable relation annotations. |
| 135 | */ |
| 136 | getRels : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 137 | return this._avail.rels; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 138 | }, |
| 139 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 140 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 141 | /** |
| 142 | * Open match |
| 143 | */ |
| 144 | open : function () { |
| 145 | |
| 146 | // Add actions unless it's already activated |
| 147 | var element = this._element; |
| 148 | |
| 149 | // There is an element to open |
| 150 | if (this._element === undefined || this._element === null) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 151 | return false; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 152 | |
| 153 | // The element is already opened |
| 154 | if (element.classList.contains('active')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 155 | return false; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 156 | |
| 157 | // Add active class to element |
| 158 | element.classList.add('active'); |
| 159 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 160 | // Already there |
| 161 | if (element.classList.contains('action')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 162 | return true; |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 163 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 164 | // Create action buttons |
| 165 | var ul = document.createElement('ul'); |
| 166 | ul.classList.add('action', 'right'); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 167 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 168 | element.appendChild(ul); |
| 169 | element.classList.add('action'); |
| 170 | |
| 171 | // Todo: Open in new frame |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 172 | |
| 173 | // Add close button |
| 174 | var close = document.createElement('li'); |
| 175 | close.appendChild(document.createElement('span')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 176 | .appendChild(document.createTextNode(loc.CLOSE)); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 177 | close.classList.add('close'); |
| 178 | close.setAttribute('title', loc.CLOSE); |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 179 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 180 | // Add info button |
| 181 | var info = document.createElement('li'); |
| 182 | info.appendChild(document.createElement('span')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 183 | .appendChild(document.createTextNode(loc.SHOWINFO)); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 184 | info.classList.add('info'); |
| 185 | info.setAttribute('title', loc.SHOWINFO); |
| 186 | |
| 187 | var that = this; |
| 188 | |
| 189 | // Close match |
| 190 | close.addEventListener('click', function (e) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 191 | e.halt(); |
| 192 | that.close() |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 193 | }); |
| 194 | |
| 195 | // Add information, unless it already exists |
| 196 | info.addEventListener('click', function (e) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 197 | e.halt(); |
| 198 | that.info().toggle(); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 199 | }); |
| 200 | |
| 201 | ul.appendChild(close); |
| 202 | ul.appendChild(info); |
| 203 | |
| 204 | return true; |
| 205 | }, |
| 206 | |
Akron | 8c468a1 | 2016-11-13 23:57:41 +0100 | [diff] [blame^] | 207 | |
| 208 | /** |
| 209 | * Return a list of meta data. |
| 210 | */ |
| 211 | showMeta : function () { |
| 212 | this.metaInfo = this._element.getAttribute('data-info'); |
| 213 | console.log(JSON.parse(metaInfo)); |
| 214 | }, |
| 215 | |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 216 | // Todo: Test toggle |
| 217 | toggle : function () { |
| 218 | if (this._element.classList.contains('active')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 219 | this.close(); |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 220 | else |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 221 | this.open(); |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 222 | }, |
| 223 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 224 | |
Nils Diewald | 8bc7e41 | 2015-03-19 22:08:27 +0000 | [diff] [blame] | 225 | /** |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 226 | * Close info view |
| 227 | */ |
| 228 | close : function () { |
| 229 | this._element.classList.remove('active'); |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 230 | /* if (this._info !== undefined) { |
| 231 | * this._info.destroy(); |
| 232 | * }; |
| 233 | */ |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 234 | }, |
| 235 | |
| 236 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 237 | /** |
| 238 | * Get and open associated match info. |
| 239 | */ |
| 240 | info : function () { |
| 241 | |
| 242 | // Create match info |
| 243 | if (this._info === undefined) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 244 | this._info = infoClass.create(this); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 245 | |
| 246 | // There is an element to append |
| 247 | if (this._element === undefined || |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 248 | this._element === null) |
| 249 | return this._info; |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 250 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 251 | // Info is already activated |
Nils Diewald | 5c5a747 | 2015-04-02 22:13:38 +0000 | [diff] [blame] | 252 | if (this._info._element !== undefined) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 253 | return this._info; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 254 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 255 | return this._info; |
| 256 | }, |
| 257 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 258 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 259 | /** |
| 260 | * Get match element. |
| 261 | */ |
| 262 | element : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 263 | return this._element; // May be null |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 264 | } |
| 265 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 266 | }); |