blob: 5009a17a30edfd788c97ea15222524970eae929e [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)
22 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) {
30 this._session = sessionClass.create();
31 }
32 else {
33 this._session = session;
34 };
35
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000036
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 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) {
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 Diewald7148c6f2015-05-04 15:07:53 +000087 /**
88 * Decorate a page with query event handler.
89 */
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000090 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 Diewald61e6ff52015-05-07 17:26:50 +0000100 /**
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 Diewaldfccfbcb2015-04-29 20:48:19 +0000114
Nils Diewald7148c6f2015-05-04 15:07:53 +0000115 /**
116 * Show the tutorial page embedded.
117 */
Nils Diewald58141332015-04-07 16:18:45 +0000118 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 Diewaldab4d3ca2015-04-17 01:48:43 +0000125 this._iframe.setAttribute(
126 'src',
127 (this.getPage() || this.start) + '?embedded=true'
128 );
Nils Diewald58141332015-04-07 16:18:45 +0000129
130 var ul = document.createElement('ul');
131 ul.classList.add('action', 'right');
132
Nils Diewald58141332015-04-07 16:18:45 +0000133 // 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 Diewald0e6992a2015-04-14 20:13:52 +0000152
Nils Diewald58141332015-04-07 16:18:45 +0000153 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 Diewaldfccfbcb2015-04-29 20:48:19 +0000166 this._element.style.display = 'none';
Nils Diewald58141332015-04-07 16:18:45 +0000167 },
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 Diewaldfccfbcb2015-04-29 20:48:19 +0000177 for (var i = 1; i < 5; i++) {
Nils Diewald58141332015-04-07 16:18:45 +0000178 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 Diewaldfccfbcb2015-04-29 20:48:19 +0000200 }
Nils Diewald0e6992a2015-04-14 20:13:52 +0000201 };
202});
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000203