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) { |
| 77 | if (qlf[i].value == ql) { |
| 78 | qlf[i].selected = true; |
| 79 | }; |
| 80 | }; |
| 81 | |
| 82 | this._q.value = q; |
| 83 | this.setPage(e); |
| 84 | this.hide(); |
| 85 | }, |
| 86 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 87 | /** |
| 88 | * Decorate a page with query event handler. |
| 89 | */ |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 90 | initQueries : function (d) { |
| 91 | var qs = d.querySelectorAll('pre.query.tutorial'); |
| 92 | var that = this; |
| 93 | for (var i = 0; i < qs.length; i++) { |
| 94 | qs[i].onclick = function (e) { |
| 95 | that.useQuery(this,e); |
| 96 | }; |
| 97 | }; |
| 98 | }, |
| 99 | |
Nils Diewald | 61e6ff5 | 2015-05-07 17:26:50 +0000 | [diff] [blame] | 100 | /** |
| 101 | * Decorate a page with documentation links |
| 102 | */ |
| 103 | initDocLinks : function (d) { |
| 104 | var dl = d.getElementsByClassName('doc-link'); |
| 105 | var that = this; |
| 106 | for (var i = 0; i < dl.length; i++) { |
| 107 | dl[i].onclick = function (e) { |
| 108 | that.setPage(this.getAttribute('href')); |
| 109 | return true; |
| 110 | }; |
| 111 | }; |
| 112 | }, |
| 113 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 114 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 115 | /** |
| 116 | * Show the tutorial page embedded. |
| 117 | */ |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 118 | show : function () { |
| 119 | var element = this._element; |
| 120 | if (element.style.display === 'block') |
| 121 | return; |
| 122 | |
| 123 | if (this._iframe === null) { |
| 124 | this._iframe = document.createElement('iframe'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 125 | this._iframe.setAttribute( |
| 126 | 'src', |
| 127 | (this.getPage() || this.start) + '?embedded=true' |
| 128 | ); |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 129 | |
| 130 | var ul = document.createElement('ul'); |
| 131 | ul.classList.add('action', 'right'); |
| 132 | |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 133 | // Add close button |
| 134 | var close = document.createElement('li'); |
| 135 | close.appendChild(document.createElement('span')) |
| 136 | .appendChild(document.createTextNode(loc.CLOSE)); |
| 137 | close.classList.add('close'); |
| 138 | close.setAttribute('title', loc.CLOSE); |
| 139 | close.onclick = function () { |
| 140 | element.style.display = 'none'; |
| 141 | }; |
| 142 | |
| 143 | // Add open in new window button |
| 144 | // Add scroll to top button |
| 145 | /* |
| 146 | var info = document.createElement('li'); |
| 147 | info.appendChild(document.createElement('span')) |
| 148 | .appendChild(document.createTextNode(loc.SHOWINFO)); |
| 149 | info.classList.add('info'); |
| 150 | info.setAttribute('title', loc.SHOWINFO); |
| 151 | */ |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 152 | |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 153 | ul.appendChild(close); |
| 154 | |
| 155 | element.appendChild(ul); |
| 156 | element.appendChild(this._iframe); |
| 157 | }; |
| 158 | |
| 159 | element.style.display = 'block'; |
| 160 | }, |
| 161 | |
| 162 | /** |
| 163 | * Close tutorial window. |
| 164 | */ |
| 165 | hide : function () { |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 166 | this._element.style.display = 'none'; |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 167 | }, |
| 168 | |
| 169 | /** |
| 170 | * Set a page to be the current tutorial page. |
| 171 | * Expects either a string or an element. |
| 172 | */ |
| 173 | setPage : function (obj) { |
| 174 | var page = obj; |
| 175 | if (typeof page != 'string') { |
| 176 | page = window.location.pathname + window.location.search; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 177 | for (var i = 1; i < 5; i++) { |
Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame] | 178 | if (obj.nodeName === 'SECTION') { |
| 179 | if (obj.hasAttribute('id')) |
| 180 | page += '#' + obj.getAttribute('id'); |
| 181 | break; |
| 182 | } |
| 183 | else if (obj.nodeName === 'PRE' && obj.hasAttribute('id')) { |
| 184 | page += '#' + obj.getAttribute('id'); |
| 185 | break; |
| 186 | } |
| 187 | else { |
| 188 | obj = obj.parentNode; |
| 189 | }; |
| 190 | }; |
| 191 | }; |
| 192 | this._session.set('tutpage', page); |
| 193 | }, |
| 194 | |
| 195 | /** |
| 196 | * Get the current tutorial URL |
| 197 | */ |
| 198 | getPage : function () { |
| 199 | this._session.get('tutpage'); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 200 | } |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 201 | }; |
| 202 | }); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 203 | |