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