blob: aa18c341e50f239cd9edadeafcc845e3dee5e30e [file] [log] [blame]
Nils Diewald58141332015-04-07 16:18:45 +00001/**
2 * Open and close a tutorial page.
3 * The current page is stored and retrieved in a session cookie.
4 */
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00005// 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 Diewald0e6992a2015-04-14 20:13:52 +00008define(['session', 'util'], function (sessionClass) {
Nils Diewald58141332015-04-07 16:18:45 +00009 "use strict";
10
11 // Localization values
Nils Diewald0e6992a2015-04-14 20:13:52 +000012 var loc = KorAP.Locale;
Nils Diewald58141332015-04-07 16:18:45 +000013 loc.CLOSE = loc.CLOSE || 'Close';
14
Nils Diewald0e6992a2015-04-14 20:13:52 +000015 return {
Nils Diewald58141332015-04-07 16:18:45 +000016 /**
17 * Create new tutorial object.
18 * Accepts an element to bind the tutorial window to.
19 */
Akron7716f012015-07-01 20:38:32 +020020 create : function (obj,session) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000021 if (!obj)
Akron086fe5d2017-11-13 14:01:45 +010022 return null;
Akron7716f012015-07-01 20:38:32 +020023 return Object.create(this)._init(obj,session);
Nils Diewald58141332015-04-07 16:18:45 +000024 },
25
26 // Initialize Tutorial object
Akron7716f012015-07-01 20:38:32 +020027 _init : function (obj, session) {
Nils Diewald0e6992a2015-04-14 20:13:52 +000028
Akron7716f012015-07-01 20:38:32 +020029 if (session === undefined) {
Akron086fe5d2017-11-13 14:01:45 +010030 this._session = sessionClass.create();
Akron7716f012015-07-01 20:38:32 +020031 }
32 else {
Akron086fe5d2017-11-13 14:01:45 +010033 this._session = session;
Akron7716f012015-07-01 20:38:32 +020034 };
35
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000036
37 if (obj) {
Akron086fe5d2017-11-13 14:01:45 +010038 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 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000045
Akron086fe5d2017-11-13 14:01:45 +010046 // 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;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000053
Akron086fe5d2017-11-13 14:01:45 +010054 // 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 Diewald58141332015-04-07 16:18:45 +000058 };
59
Nils Diewald58141332015-04-07 16:18:45 +000060 return this;
61 },
62
Nils Diewald7148c6f2015-05-04 15:07:53 +000063
64 /**
65 * Initialize a search with a defined query.
66 */
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000067 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) {
Akron086fe5d2017-11-13 14:01:45 +010072 this._cutoff.checked = true;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000073 };
74
Akron086fe5d2017-11-13 14:01:45 +010075 if (KorAP.QLmenu) {
76 KorAP.QLmenu.selectValue(ql);
77 };
78 /*
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000079 var qlf = this._ql.options;
80 for (var i in qlf) {
Akron99713ef2017-06-28 18:19:28 +020081 if (qlf[i].value == ql) {
82 qlf[i].selected = true;
83 break;
84 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000085 };
Akron086fe5d2017-11-13 14:01:45 +010086 */
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000087
88 this._q.value = q;
89 this.setPage(e);
90 this.hide();
91 },
92
Nils Diewald7148c6f2015-05-04 15:07:53 +000093 /**
94 * Decorate a page with query event handler.
95 */
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000096 initQueries : function (d) {
97 var qs = d.querySelectorAll('pre.query.tutorial');
98 var that = this;
99 for (var i = 0; i < qs.length; i++) {
Akron086fe5d2017-11-13 14:01:45 +0100100 qs[i].onclick = function (e) {
101 that.useQuery(this,e);
102 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000103 };
104 },
105
Nils Diewald61e6ff52015-05-07 17:26:50 +0000106 /**
107 * Decorate a page with documentation links
108 */
109 initDocLinks : function (d) {
110 var dl = d.getElementsByClassName('doc-link');
111 var that = this;
112 for (var i = 0; i < dl.length; i++) {
Akron086fe5d2017-11-13 14:01:45 +0100113 dl[i].onclick = function (e) {
114 that.setPage(this.getAttribute('href'));
115 return true;
116 };
Nils Diewald61e6ff52015-05-07 17:26:50 +0000117 };
118 },
119
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000120
Nils Diewald7148c6f2015-05-04 15:07:53 +0000121 /**
122 * Show the tutorial page embedded.
123 */
Nils Diewald58141332015-04-07 16:18:45 +0000124 show : function () {
125 var element = this._element;
126 if (element.style.display === 'block')
Akron99713ef2017-06-28 18:19:28 +0200127 return;
Nils Diewald58141332015-04-07 16:18:45 +0000128
129 if (this._iframe === null) {
Akron99713ef2017-06-28 18:19:28 +0200130 this._iframe = document.createElement('iframe');
131 this._iframe.setAttribute(
132 'src',
133 (this.getPage() || this.start) + '?embedded=true'
134 );
Akron086fe5d2017-11-13 14:01:45 +0100135
Akron99713ef2017-06-28 18:19:28 +0200136 var ul = document.createElement('ul');
137 ul.classList.add('action', 'right');
Nils Diewald58141332015-04-07 16:18:45 +0000138
Akron99713ef2017-06-28 18:19:28 +0200139 // Add close button
140 var close = document.createElement('li');
141 close.appendChild(document.createElement('span'))
142 .appendChild(document.createTextNode(loc.CLOSE));
143 close.classList.add('close');
144 close.setAttribute('title', loc.CLOSE);
145 close.onclick = function () {
146 element.style.display = 'none';
147 };
Nils Diewald58141332015-04-07 16:18:45 +0000148
Akron99713ef2017-06-28 18:19:28 +0200149 // Add open in new window button
150 // Add scroll to top button
151 /*
152 var info = document.createElement('li');
153 info.appendChild(document.createElement('span'))
154 .appendChild(document.createTextNode(loc.SHOWINFO));
155 info.classList.add('info');
156 info.setAttribute('title', loc.SHOWINFO);
157 */
Nils Diewald0e6992a2015-04-14 20:13:52 +0000158
Akron99713ef2017-06-28 18:19:28 +0200159 ul.appendChild(close);
Nils Diewald58141332015-04-07 16:18:45 +0000160
Akron99713ef2017-06-28 18:19:28 +0200161 element.appendChild(ul);
162 element.appendChild(this._iframe);
Nils Diewald58141332015-04-07 16:18:45 +0000163 };
164
165 element.style.display = 'block';
166 },
167
168 /**
169 * Close tutorial window.
170 */
171 hide : function () {
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000172 this._element.style.display = 'none';
Nils Diewald58141332015-04-07 16:18:45 +0000173 },
174
175 /**
176 * Set a page to be the current tutorial page.
177 * Expects either a string or an element.
178 */
179 setPage : function (obj) {
180 var page = obj;
181 if (typeof page != 'string') {
Akron086fe5d2017-11-13 14:01:45 +0100182 var l = this._iframe !== null ? window.frames[0].location : window.location;
183 page = l.pathname + l.search;
Akron792f58b2015-07-08 18:59:36 +0200184
Akron086fe5d2017-11-13 14:01:45 +0100185 for (var i = 1; i < 5; i++) {
186 if (obj.nodeName === 'SECTION') {
187 if (obj.hasAttribute('id'))
188 page += '#' + obj.getAttribute('id');
189 break;
190 }
191 else if (obj.nodeName === 'PRE' && obj.hasAttribute('id')) {
192 page += '#' + obj.getAttribute('id');
193 break;
194 }
195 else {
196 obj = obj.parentNode;
197 };
198 };
Nils Diewald58141332015-04-07 16:18:45 +0000199 };
200 this._session.set('tutpage', page);
201 },
202
203 /**
204 * Get the current tutorial URL
205 */
206 getPage : function () {
Akron792f58b2015-07-08 18:59:36 +0200207 return this._session.get('tutpage');
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000208 }
Nils Diewald0e6992a2015-04-14 20:13:52 +0000209 };
210});
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000211