| /** |
| * Information about a match. |
| */ |
| define([ |
| 'match/infolayer', |
| 'match/table', |
| 'match/treehierarchy', |
| 'match/treearc', |
| 'match/meta', |
| 'util' |
| ], function (infoLayerClass, |
| matchTableClass, |
| matchTreeHierarchyClass, |
| matchTreeArcClass, |
| matchMetaClass) { |
| |
| // Override |
| KorAP.API.getMatchInfo = KorAP.API.getMatchInfo || function () { |
| KorAP.log(0, 'KorAP.API.getMatchInfo() not implemented') |
| return {}; |
| }; |
| |
| const loc = KorAP.Locale; |
| const d = document; |
| |
| return { |
| |
| /** |
| * Create new match object |
| */ |
| create : function (match) { |
| return Object.create(this)._init(match); |
| }, |
| |
| |
| /** |
| * Initialize object |
| */ |
| _init : function (match) { |
| this._match = match; |
| this.opened = false; |
| return this; |
| }, |
| |
| |
| /** |
| * Get match object |
| */ |
| match : function () { |
| return this._match; |
| }, |
| |
| |
| /** |
| * Open the information view, |
| * if closed, otherwise close. |
| */ |
| /* |
| toggle : function () { |
| |
| var elem = this._match.element(); |
| |
| if (this.opened == true) { |
| elem.removeChild( |
| this.element() |
| ); |
| this.opened = false; |
| } |
| else { |
| // Append element to match |
| elem.appendChild( |
| this.element() |
| ); |
| this.opened = true; |
| }; |
| |
| return this.opened; |
| }, |
| */ |
| |
| |
| /** |
| * Retrieve and parse snippet for table |
| * representation |
| */ |
| getTableData : function (tokens, cb) { |
| var focus = []; |
| |
| // Get all tokens |
| if (tokens === undefined) { |
| focus = this._match.getTokens(); |
| } |
| |
| // Get only some tokens |
| else { |
| |
| // Push newly to focus array |
| for (var i = 0; i < tokens.length; i++) { |
| var term = tokens[i]; |
| try { |
| // Create info layer objects |
| var layer = infoLayerClass.create(term); |
| layer.type = "tokens"; |
| focus.push(layer); |
| } |
| catch (e) { |
| continue; |
| }; |
| }; |
| }; |
| |
| // No tokens chosen |
| if (focus.length == 0) |
| cb(null); |
| |
| // Get info (may be cached) |
| KorAP.API.getMatchInfo( |
| this._match, |
| { 'spans' : false, 'layer' : focus }, |
| |
| // Callback for retrieval |
| function (matchResponse) { |
| |
| if (matchResponse === undefined) |
| cb(null); |
| |
| // Get snippet from match info |
| if (matchResponse["snippet"] !== undefined) { |
| this._table = matchTableClass.create(matchResponse["snippet"]); |
| cb(this._table); |
| }; |
| }.bind(this) |
| ); |
| |
| /* |
| // Todo: Store the table as a hash of the focus |
| return null; |
| */ |
| }, |
| |
| |
| getMetaData : function (metaInfo, cb) { |
| // ... |
| }, |
| |
| |
| /** |
| * Retrieve and parse snippet for tree representation |
| */ |
| getTreeData : function (foundry, layer, type, cb) { |
| var focus = []; |
| |
| // TODO: Support and cache multiple trees |
| KorAP.API.getMatchInfo( |
| this._match, { |
| 'spans' : true, |
| 'foundry' : foundry, |
| 'layer' : layer |
| }, |
| function (matchResponse) { |
| // Get snippet from match info |
| if (matchResponse["snippet"] !== undefined) { |
| // Todo: This should be cached somehow |
| |
| if (type === "spans") { |
| cb(matchTreeHierarchyClass.create(matchResponse["snippet"])); |
| } |
| else if (type === "rels") { |
| cb(matchTreeArcClass.create(matchResponse["snippet"])); |
| } |
| |
| // Unknown tree type |
| else { |
| cb(null); |
| }; |
| } |
| else { |
| cb(null); |
| }; |
| }.bind(this) |
| ); |
| }, |
| |
| |
| /** |
| * Destroy this match information view. |
| */ |
| destroy : function () { |
| |
| // Remove circular reference |
| /* |
| if (this._treeMenu !== undefined) |
| delete this._treeMenu["info"]; |
| |
| this._treeMenu.destroy(); |
| this._treeMenu = undefined; |
| */ |
| this._match = undefined; |
| this._matchCreator = undefined; |
| // Element destroy |
| }, |
| |
| |
| /** |
| * Add a new tree view to the list |
| */ |
| showTree : function (foundry, layer, type, cb) { |
| var matchtree = d.createElement('div'); |
| matchtree.classList.add('matchtree', 'loading'); |
| |
| this.element().appendChild(matchtree); |
| |
| // Add title line |
| var h6 = matchtree.addE('h6'); |
| h6.addE('span').addT(foundry); |
| h6.addE('span').addT(layer); |
| |
| var tree = matchtree.addE('div'); |
| |
| // Add close action button |
| var actions = this._addButton('close', matchtree, function (e) { |
| this.parentNode.removeChild(this); |
| e.halt(); |
| }); |
| |
| // tree.classList.add('loading'); // alternatively |
| |
| // Get tree data async |
| this.getTreeData(foundry, layer, type, function (treeObj) { |
| matchtree.classList.remove('loading'); |
| |
| // Something went wrong - probably log!!! |
| |
| if (treeObj === null) { |
| tree.addT('No data available.'); |
| } |
| else { |
| tree.appendChild(treeObj.element()); |
| treeObj.show(); |
| |
| // Reposition the view to the center |
| // (This may in a future release be a reposition |
| // to move the root to the actual match) |
| |
| // This is currently not supported by relations |
| if (type === "spans") { |
| var dl = d.createElement('li'); |
| dl.className = 'download'; |
| dl.addEventListener( |
| 'click', function (e) { |
| var a = treeObj.downloadLink(); |
| d.body.appendChild(a); |
| a.click(); |
| d.body.removeChild(a) |
| e.halt(); |
| } |
| ); |
| |
| actions.appendChild(dl); |
| }; |
| |
| treeObj.center(); |
| }; |
| |
| if (cb !== undefined) |
| cb(treeObj); |
| }); |
| matchtree.classList.remove('loading'); |
| }, |
| |
| |
| // Add meta information to match |
| showMeta : function () { |
| var metaTable = document.createElement('div'); |
| metaTable.classList.add('metatable', 'loading'); |
| this.element().appendChild(metaTable); |
| |
| // TODO: This is part of the getMeta! |
| var metaInfo = this._match.element().getAttribute('data-info'); |
| |
| if (metaInfo) |
| metaInfo = JSON.parse(metaInfo); |
| |
| // There is metainfo |
| if (metaInfo) { |
| |
| // Load data |
| metaTable.classList.remove('loading'); |
| |
| // Add metainfo to matchview |
| var metaElem = matchMetaClass.create(this._match).element(metaInfo); |
| metaTable.appendChild(metaElem); |
| |
| // Add button |
| this._addButton('close', metaTable, function (e) { |
| this.parentNode.removeChild(this); |
| e.halt(); |
| }); |
| }; |
| |
| // Load data |
| metaTable.classList.remove('loading'); |
| }, |
| |
| |
| // Add table |
| showTable : function () { |
| |
| // Append default table |
| var matchtable = d.createElement('div'); |
| matchtable.classList.add('matchtable', 'loading'); |
| var info = this.element(); |
| info.appendChild(matchtable); |
| |
| |
| // TODO: |
| // Create try-catch-exception-handling |
| |
| // Create the table asynchronous |
| this.getTableData(undefined, function (table) { |
| |
| // Load data |
| matchtable.classList.remove('loading'); |
| |
| if (table !== null) { |
| matchtable.appendChild(table.element()); |
| }; |
| }); |
| |
| // Add button |
| this._addButton('close', matchtable, function (e) { |
| this.parentNode.removeChild(this); |
| e.halt(); |
| }); |
| |
| // Load data |
| matchtable.classList.remove('loading'); |
| }, |
| |
| // Add action button |
| _addButton : function (buttonType, element, cb) { |
| // TODO: Unless existent |
| var actions = document.createElement('ul'); |
| actions.classList.add('action', 'image'); |
| var b = actions.addE('li'); |
| b.className = buttonType; |
| b.addE('span').addT(buttonType); |
| b.addEventListener( |
| 'click', cb.bind(element) |
| ); |
| |
| element.appendChild(actions); |
| return actions; |
| }, |
| |
| |
| /** |
| * Create match information view. |
| */ |
| element : function () { |
| |
| if (this._element !== undefined) |
| return this._element; |
| |
| // Create info table |
| var info = d.createElement('div'); |
| info.classList.add('matchinfo'); |
| |
| this._element = info; |
| |
| return this._element; |
| } |
| }; |
| }); |