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([ |
Akron | 13448c2 | 2018-07-10 13:05:46 +0200 | [diff] [blame] | 13 | 'buttongroup', |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 14 | 'panel/match', |
Akron | 8b592d4 | 2018-01-26 18:33:06 +0100 | [diff] [blame] | 15 | 'util' |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 16 | ], function (buttonGroupClass,matchPanelClass) { //, 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 |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 19 | const loc = KorAP.Locale; |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 20 | // loc.SHOWINFO = loc.SHOWINFO || 'Show information'; |
| 21 | // loc.ADDTREE = loc.ADDTREE || 'Relations'; |
| 22 | // loc.SHOWANNO = loc.SHOWANNO || 'Tokens'; |
Akron | 24866cf | 2018-01-23 20:22:01 +0100 | [diff] [blame] | 23 | loc.CLOSE = loc.CLOSE || 'Close'; |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 24 | // loc.SHOW_META = loc.SHOW_META || 'Metadata'; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 25 | |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 26 | // 'corpusID', 'docID', 'textID' |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 27 | const _matchTerms = ['textSigle', 'matchID', 'available']; |
| 28 | |
| 29 | const d = document; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 30 | |
| 31 | /** |
| 32 | * Match object |
| 33 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 34 | return { |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 35 | |
| 36 | /** |
| 37 | * Create a new annotation object. |
| 38 | * Expects an array of available foundry/layer=type terms. |
| 39 | * Supported types are 'spans', 'tokens' and 'rels'. |
| 40 | */ |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 41 | create : function (match) { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 42 | return Object.create(this)._init(match); |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 43 | }, |
| 44 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 45 | |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 46 | /** |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 47 | * Initialize match. |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 48 | */ |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 49 | _init : function (match) { |
| 50 | this._element = null; |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 51 | this._initialized = false; |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 52 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 53 | // No match defined |
| 54 | if (arguments.length < 1 || |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 55 | match === null || |
| 56 | match === undefined) { |
| 57 | throw new Error('Missing parameters'); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 58 | } |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 59 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 60 | // Match defined as a node |
| 61 | else if (match instanceof Node) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 62 | this._element = match; |
Nils Diewald | 6e43ffd | 2015-03-25 18:55:39 +0000 | [diff] [blame] | 63 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 64 | // Circular reference !! |
| 65 | match["_match"] = this; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 66 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 67 | /* |
| 68 | this.corpusID = match.getAttribute('data-corpus-id'), |
| 69 | this.docID = match.getAttribute('data-doc-id'), |
| 70 | this.textID = match.getAttribute('data-text-id'), |
| 71 | */ |
| 72 | if (match.hasAttribute('data-text-sigle')) { |
| 73 | this.textSigle = match.getAttribute('data-text-sigle') |
| 74 | } |
| 75 | else { |
| 76 | this.textSigle = match.getAttribute('data-corpus-id') + |
| 77 | '/' + |
| 78 | match.getAttribute('data-doc-id') + |
| 79 | '/' + |
| 80 | match.getAttribute('data-text-id'); |
| 81 | }; |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 82 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 83 | this.matchID = match.getAttribute('data-match-id'); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 84 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 85 | // List of available annotations |
| 86 | this.available = match.getAttribute('data-available-info').split(' '); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | // Match as an object |
| 90 | else { |
| 91 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 92 | // Iterate over allowed match terms |
| 93 | for (var i in _matchTerms) { |
| 94 | var term = _matchTerms[i]; |
| 95 | this[term] = match[term] !== undefined ? match[term] : undefined; |
| 96 | }; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 97 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 98 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 99 | this._avail = { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 100 | tokens : [], |
| 101 | spans : [], |
| 102 | rels : [] |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 103 | }; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 104 | |
| 105 | // Iterate over info layers |
| 106 | for (var i = 0; i < this.available.length; i++) { |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 107 | var term = this.available[i]; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 108 | |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 109 | // Create info layer objects |
| 110 | try { |
| 111 | var layer = require('match/infolayer').create(term); |
| 112 | this._avail[layer.type].push(layer); |
| 113 | } |
| 114 | catch (e) { |
| 115 | continue; |
| 116 | }; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 117 | }; |
Akron | 3a4a08e | 2017-05-23 22:34:18 +0200 | [diff] [blame] | 118 | |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 119 | return this; |
| 120 | }, |
| 121 | |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 122 | /** |
| 123 | * Return a list of parseable tree annotations. |
| 124 | */ |
| 125 | getSpans : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 126 | return this._avail.spans; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 127 | }, |
| 128 | |
| 129 | |
| 130 | /** |
| 131 | * Return a list of parseable token annotations. |
| 132 | */ |
| 133 | getTokens : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 134 | return this._avail.tokens; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 135 | }, |
| 136 | |
| 137 | |
| 138 | /** |
| 139 | * Return a list of parseable relation annotations. |
| 140 | */ |
| 141 | getRels : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 142 | return this._avail.rels; |
Nils Diewald | e8518f8 | 2015-03-18 22:41:49 +0000 | [diff] [blame] | 143 | }, |
| 144 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 145 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 146 | /** |
| 147 | * Open match |
| 148 | */ |
| 149 | open : function () { |
| 150 | |
| 151 | // Add actions unless it's already activated |
| 152 | var element = this._element; |
| 153 | |
| 154 | // There is an element to open |
| 155 | if (this._element === undefined || this._element === null) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 156 | return false; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 157 | |
| 158 | // The element is already opened |
| 159 | if (element.classList.contains('active')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 160 | return false; |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 161 | |
| 162 | // Add active class to element |
| 163 | element.classList.add('active'); |
| 164 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 165 | // Already there |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 166 | /* |
| 167 | if (element.classList.contains('action')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 168 | return true; |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 169 | */ |
| 170 | if (this._initialized) |
| 171 | return true; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 172 | |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 173 | var btn = buttonGroupClass.create( |
| 174 | ['action','button-view'] |
| 175 | ); |
| 176 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 177 | var that = this; |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 178 | btn.add(loc.CLOSE, ['button-icon','close'], function () { |
| 179 | that.close(); |
| 180 | }); |
| 181 | element.appendChild(btn.element()); |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 182 | |
Akron | 24866cf | 2018-01-23 20:22:01 +0100 | [diff] [blame] | 183 | // Add meta button |
| 184 | var refLine = element.querySelector("p.ref"); |
| 185 | |
Akron | 0b489ad | 2018-02-02 16:49:32 +0100 | [diff] [blame] | 186 | // No reference found |
Akron | 151bc87 | 2018-02-02 14:04:15 +0100 | [diff] [blame] | 187 | if (!refLine) |
| 188 | return; |
Akron | 13448c2 | 2018-07-10 13:05:46 +0200 | [diff] [blame] | 189 | |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 190 | var panel = matchPanelClass.create(this); |
| 191 | |
| 192 | this._element.insertBefore( |
| 193 | panel.element(), |
| 194 | this._element.querySelector("p.ref") |
| 195 | ); |
| 196 | |
Akron | 13448c2 | 2018-07-10 13:05:46 +0200 | [diff] [blame] | 197 | // Insert before reference line |
| 198 | refLine.insertBefore( |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 199 | panel.actions.element(), |
Akron | 13448c2 | 2018-07-10 13:05:46 +0200 | [diff] [blame] | 200 | refLine.firstChild |
| 201 | ); |
| 202 | |
Akron | bfe912c | 2018-07-17 19:30:52 +0200 | [diff] [blame^] | 203 | this._initialized = true; |
Akron | 13448c2 | 2018-07-10 13:05:46 +0200 | [diff] [blame] | 204 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 205 | return true; |
| 206 | }, |
| 207 | |
Akron | 8c468a1 | 2016-11-13 23:57:41 +0100 | [diff] [blame] | 208 | |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 209 | // Todo: Test toggle |
| 210 | toggle : function () { |
| 211 | if (this._element.classList.contains('active')) |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 212 | this.close(); |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 213 | else |
Akron | 19d97fe | 2016-09-06 20:47:05 +0200 | [diff] [blame] | 214 | this.open(); |
Akron | 6a535d4 | 2015-08-26 20:16:58 +0200 | [diff] [blame] | 215 | }, |
| 216 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 217 | |
Nils Diewald | 8bc7e41 | 2015-03-19 22:08:27 +0000 | [diff] [blame] | 218 | /** |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 219 | * Close info view |
| 220 | */ |
| 221 | close : function () { |
| 222 | this._element.classList.remove('active'); |
Akron | 8b592d4 | 2018-01-26 18:33:06 +0100 | [diff] [blame] | 223 | }, |
| 224 | |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 225 | |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 226 | /** |
| 227 | * Get match element. |
| 228 | */ |
| 229 | element : function () { |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 230 | return this._element; // May be null |
Nils Diewald | a297f06 | 2015-04-02 00:23:46 +0000 | [diff] [blame] | 231 | } |
| 232 | }; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 233 | }); |