Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 1 | /** |
| 2 | * Open and close a tutorial page. |
| 3 | * The current page is stored and retrieved in a session cookie. |
| 4 | */ |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 5 | // TODO: Add query mechanism! |
| 6 | // TODO: Highlight current section: |
| 7 | // http://stackoverflow.com/questions/24887258/highlight-navigation-link-as-i-scroll-down-the-page |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 8 | define(['session', 'util'], function (sessionClass) { |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 9 | "use strict"; |
| 10 | |
| 11 | // Localization values |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 12 | var loc = KorAP.Locale; |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 13 | loc.CLOSE = loc.CLOSE || 'Close'; |
| 14 | |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 15 | return { |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 16 | /** |
| 17 | * Create new tutorial object. |
| 18 | * Accepts an element to bind the tutorial window to. |
| 19 | */ |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 20 | create : function (obj,session) { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 21 | if (!obj) |
| 22 | return null; |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 23 | return Object.create(this)._init(obj,session); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 24 | }, |
| 25 | |
| 26 | // Initialize Tutorial object |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 27 | _init : function (obj, session) { |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 28 | |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 29 | if (session === undefined) { |
| 30 | this._session = sessionClass.create(); |
| 31 | } |
| 32 | else { |
| 33 | this._session = session; |
| 34 | }; |
| 35 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 36 | |
| 37 | if (obj) { |
| 38 | this._show = obj; |
| 39 | this.start = obj.getAttribute('href'); |
| 40 | obj.removeAttribute('href'); |
| 41 | var that = this; |
| 42 | obj.onclick = function () { |
| 43 | that.show(); |
| 44 | }; |
| 45 | |
| 46 | // Injects a tutorial div to the body |
| 47 | var div = document.createElement('div'); |
| 48 | div.setAttribute('id', 'tutorial'); |
| 49 | div.style.display = 'none'; |
| 50 | document.getElementsByTagName('body')[0].appendChild(div); |
| 51 | this._iframe = null; |
| 52 | this._element = div; |
| 53 | |
| 54 | // Some fields |
| 55 | this._ql = document.getElementById("ql-field"); |
| 56 | this._q = document.getElementById("q-field") |
| 57 | this._cutoff = document.getElementById("q-cutoff-field"); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 58 | }; |
| 59 | |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 60 | return this; |
| 61 | }, |
| 62 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * Initialize a search with a defined query. |
| 66 | */ |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 67 | useQuery : function (e) { |
| 68 | var q = e.getAttribute("data-query"); |
| 69 | var ql = e.getAttribute("data-query-language"); |
| 70 | var qc = e.getAttribute("data-query-cutoff"); |
| 71 | if (qc !== 0 && qc !== "0" && qc !== "off" && qc !== null) { |
| 72 | this._cutoff.checked = true; |
| 73 | }; |
| 74 | |
| 75 | var qlf = this._ql.options; |
| 76 | for (var i in qlf) { |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 77 | if (qlf[i].value == ql) { |
| 78 | qlf[i].selected = true; |
| 79 | break; |
| 80 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | this._q.value = q; |
| 84 | this.setPage(e); |
| 85 | this.hide(); |
| 86 | }, |
| 87 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 88 | /** |
| 89 | * Decorate a page with query event handler. |
| 90 | */ |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 91 | initQueries : function (d) { |
| 92 | var qs = d.querySelectorAll('pre.query.tutorial'); |
| 93 | var that = this; |
| 94 | for (var i = 0; i < qs.length; i++) { |
| 95 | qs[i].onclick = function (e) { |
| 96 | that.useQuery(this,e); |
| 97 | }; |
| 98 | }; |
| 99 | }, |
| 100 | |
Nils Diewald | 61e6ff5 | 2015-05-07 17:26:50 +0000 | [diff] [blame] | 101 | /** |
| 102 | * Decorate a page with documentation links |
| 103 | */ |
| 104 | initDocLinks : function (d) { |
| 105 | var dl = d.getElementsByClassName('doc-link'); |
| 106 | var that = this; |
| 107 | for (var i = 0; i < dl.length; i++) { |
| 108 | dl[i].onclick = function (e) { |
| 109 | that.setPage(this.getAttribute('href')); |
| 110 | return true; |
| 111 | }; |
| 112 | }; |
| 113 | }, |
| 114 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 115 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 116 | /** |
| 117 | * Show the tutorial page embedded. |
| 118 | */ |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 119 | show : function () { |
| 120 | var element = this._element; |
| 121 | if (element.style.display === 'block') |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 122 | return; |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 123 | |
| 124 | if (this._iframe === null) { |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 125 | this._iframe = document.createElement('iframe'); |
| 126 | this._iframe.setAttribute( |
| 127 | 'src', |
| 128 | (this.getPage() || this.start) + '?embedded=true' |
| 129 | ); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 130 | |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 131 | var ul = document.createElement('ul'); |
| 132 | ul.classList.add('action', 'right'); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 133 | |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 134 | // Add close button |
| 135 | var close = document.createElement('li'); |
| 136 | close.appendChild(document.createElement('span')) |
| 137 | .appendChild(document.createTextNode(loc.CLOSE)); |
| 138 | close.classList.add('close'); |
| 139 | close.setAttribute('title', loc.CLOSE); |
| 140 | close.onclick = function () { |
| 141 | element.style.display = 'none'; |
| 142 | }; |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 143 | |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 144 | // Add open in new window button |
| 145 | // Add scroll to top button |
| 146 | /* |
| 147 | var info = document.createElement('li'); |
| 148 | info.appendChild(document.createElement('span')) |
| 149 | .appendChild(document.createTextNode(loc.SHOWINFO)); |
| 150 | info.classList.add('info'); |
| 151 | info.setAttribute('title', loc.SHOWINFO); |
| 152 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 153 | |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 154 | ul.appendChild(close); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 155 | |
Akron | 99713ef | 2017-06-28 18:19:28 +0200 | [diff] [blame] | 156 | element.appendChild(ul); |
| 157 | element.appendChild(this._iframe); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | element.style.display = 'block'; |
| 161 | }, |
| 162 | |
| 163 | /** |
| 164 | * Close tutorial window. |
| 165 | */ |
| 166 | hide : function () { |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 167 | this._element.style.display = 'none'; |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 168 | }, |
| 169 | |
| 170 | /** |
| 171 | * Set a page to be the current tutorial page. |
| 172 | * Expects either a string or an element. |
| 173 | */ |
| 174 | setPage : function (obj) { |
| 175 | var page = obj; |
| 176 | if (typeof page != 'string') { |
Akron | 792f58b | 2015-07-08 18:59:36 +0200 | [diff] [blame] | 177 | var l = this._iframe !== null ? window.frames[0].location : window.location; |
| 178 | page = l.pathname + l.search; |
| 179 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 180 | for (var i = 1; i < 5; i++) { |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 181 | if (obj.nodeName === 'SECTION') { |
| 182 | if (obj.hasAttribute('id')) |
| 183 | page += '#' + obj.getAttribute('id'); |
| 184 | break; |
| 185 | } |
| 186 | else if (obj.nodeName === 'PRE' && obj.hasAttribute('id')) { |
| 187 | page += '#' + obj.getAttribute('id'); |
| 188 | break; |
| 189 | } |
| 190 | else { |
| 191 | obj = obj.parentNode; |
| 192 | }; |
| 193 | }; |
| 194 | }; |
| 195 | this._session.set('tutpage', page); |
| 196 | }, |
| 197 | |
| 198 | /** |
| 199 | * Get the current tutorial URL |
| 200 | */ |
| 201 | getPage : function () { |
Akron | 792f58b | 2015-07-08 18:59:36 +0200 | [diff] [blame] | 202 | return this._session.get('tutpage'); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 203 | } |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 204 | }; |
| 205 | }); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 206 | |