File app/index.html changed (mode: 100644) (index f5c2c7c..d231005) |
27 |
27 |
<img src="images/christ_icon.jpg" /> |
<img src="images/christ_icon.jpg" /> |
28 |
28 |
</div> |
</div> |
29 |
29 |
|
|
30 |
|
<h2 class="oPage_header fillMain">Texte Liturgice Ortodoxe</h2> |
|
|
30 |
|
<h2 id="AppTitle" class="oPage_header fillMain">Texte Liturgice Ortodoxe</h2> |
31 |
31 |
|
|
32 |
|
<ul id="MainBooks" class="oListBare"> |
|
33 |
|
|
|
34 |
|
<!-- <li class="oListBare_item fillRoot hasChildren isOpen">Carte de rugaciuni</li> |
|
35 |
|
<li class="oListBare_item fillRoot hasChildren">Molitfelnic</li> |
|
36 |
|
--> |
|
37 |
|
</ul> |
|
|
32 |
|
<ul id="MainBooks" class="oListBare"></ul> |
38 |
33 |
</li> |
</li> |
39 |
34 |
|
|
|
35 |
|
<li id="Page2" class="oPage"> |
|
36 |
|
<h2 id="ChapterTitle" class="oPage_header fillMain"></h2> |
|
37 |
|
|
|
38 |
|
<ul id="ChapterBooks" class="oListBare"></ul> |
|
39 |
|
</li> |
|
40 |
|
|
40 |
41 |
</ul> |
</ul> |
41 |
42 |
|
|
42 |
43 |
<!-- -------------------------------------- --> |
<!-- -------------------------------------- --> |
43 |
44 |
|
|
44 |
45 |
<script type="text/javascript"> |
<script type="text/javascript"> |
45 |
46 |
|
|
46 |
|
var elPageIndex = document.getElementById('Page0'); |
|
47 |
|
var elPageHome = document.getElementById('Page1'); |
|
48 |
|
var elMainBooks = document.getElementById('MainBooks'); |
|
|
47 |
|
var DONE = 4; // readyState 4 means the request is done. |
|
48 |
|
var OK = 200; // status 200 is a successful return. |
49 |
49 |
|
|
|
50 |
|
var elPageIndex = document.getElementById('Page0'); |
|
51 |
|
var elPageHome = document.getElementById('Page1'); |
|
52 |
|
var elPageChapter = document.getElementById('Page2'); |
|
53 |
|
var elMainBooks = document.getElementById('MainBooks'); |
|
54 |
|
|
|
55 |
|
var pagesList = []; |
50 |
56 |
var mainBooks = []; |
var mainBooks = []; |
51 |
57 |
|
|
52 |
|
function hideIndexPage () { |
|
53 |
|
elPageIndex.classList.add('animated'); |
|
54 |
|
elPageIndex.classList.add('slideOutLeft'); |
|
55 |
|
elPageHome.classList.add('animated'); |
|
56 |
|
elPageHome.classList.add('slideInRight'); |
|
57 |
|
elPageHome.classList.add('isActive'); |
|
|
58 |
|
function changePage (elPageCurrent, elPageNew, fnCallback) { |
|
59 |
|
elPageCurrent.classList.add('animated'); |
|
60 |
|
elPageCurrent.classList.add('slideOutLeft'); |
|
61 |
|
elPageNew.classList.add('animated'); |
|
62 |
|
elPageNew.classList.add('slideInRight'); |
|
63 |
|
elPageNew.classList.add('isActive'); |
|
64 |
|
|
|
65 |
|
setTimeout(function () { |
|
66 |
|
elPageCurrent.classList.remove('animated'); |
|
67 |
|
elPageCurrent.classList.remove('slideOutLeft'); |
|
68 |
|
elPageCurrent.classList.remove('isActive'); |
|
69 |
|
elPageCurrent.classList.add('isRendered'); |
|
70 |
|
elPageNew.classList.remove('animated'); |
|
71 |
|
elPageNew.classList.remove('slideInRight'); |
|
72 |
|
|
|
73 |
|
if (typeof(fnCallback) == "function") { |
|
74 |
|
fnCallback.call(); |
|
75 |
|
} |
|
76 |
|
}, 1000); |
|
77 |
|
|
|
78 |
|
if (pagesList.length == 0) { |
|
79 |
|
pagesList.push(elPageCurrent); |
|
80 |
|
} |
58 |
81 |
|
|
59 |
|
setTimeout( function () { |
|
60 |
|
elPageIndex.classList.remove('isActive'); |
|
61 |
|
elPageIndex.classList.add('isRendered'); |
|
|
82 |
|
pagesList.push(elPageNew); |
|
83 |
|
} |
62 |
84 |
|
|
63 |
|
listBooks(); |
|
64 |
|
}, 1000); |
|
65 |
|
} |
|
|
85 |
|
function backPage () { |
|
86 |
|
var elPageCurrent = pagesList[pagesList.length - 1]; |
|
87 |
|
var elPagePrev; |
66 |
88 |
|
|
67 |
|
function listBooks () { |
|
68 |
|
for (var i = 0; i < mainBooks.length; i++) { |
|
69 |
|
addBook(mainBooks[i], i); |
|
|
89 |
|
if (pagesList.length > 2) { |
|
90 |
|
elPageCurrent.classList.add('animated'); |
|
91 |
|
elPageCurrent.classList.add('slideOutRight'); |
|
92 |
|
|
|
93 |
|
elPagePrev = pagesList[pagesList.length - 2]; |
|
94 |
|
elPagePrev.classList.remove('isRendered'); |
|
95 |
|
elPagePrev.classList.add('animated'); |
|
96 |
|
elPagePrev.classList.add('slideInLeft'); |
|
97 |
|
elPagePrev.classList.add('isActive'); |
|
98 |
|
|
|
99 |
|
setTimeout(function () { |
|
100 |
|
elPageCurrent.classList.remove('isActive'); |
|
101 |
|
elPageCurrent.classList.remove('animated'); |
|
102 |
|
elPageCurrent.classList.remove('slideOutRight'); |
|
103 |
|
elPagePrev.classList.remove('slideInLeft'); |
|
104 |
|
}, 1000); |
|
105 |
|
|
|
106 |
|
} else { |
|
107 |
|
alert("Exit APP"); |
70 |
108 |
} |
} |
|
109 |
|
|
|
110 |
|
pagesList.pop(); |
71 |
111 |
} |
} |
72 |
112 |
|
|
73 |
113 |
function addBook (currentBook, index, elParent) { |
function addBook (currentBook, index, elParent) { |
|
80 |
120 |
var type = 'Root'; |
var type = 'Root'; |
81 |
121 |
var hasChildren = false; |
var hasChildren = false; |
82 |
122 |
var elList; |
var elList; |
83 |
|
var id = "Book" + index; |
|
|
123 |
|
var id = "Book_" + currentBook.id; |
84 |
124 |
var idBox = id + "_box"; |
var idBox = id + "_box"; |
85 |
125 |
var animEffect = 'bounceInRight'; |
var animEffect = 'bounceInRight'; |
86 |
126 |
|
|
|
104 |
144 |
} else { |
} else { |
105 |
145 |
type = 'Secondary'; |
type = 'Secondary'; |
106 |
146 |
idBox = type + idBox; |
idBox = type + idBox; |
107 |
|
wait = 0; |
|
|
147 |
|
// wait = 0; |
108 |
148 |
animEffect = 'fadeIn'; |
animEffect = 'fadeIn'; |
109 |
149 |
} |
} |
110 |
150 |
|
|
111 |
151 |
elCheckbox.setAttribute('id', idBox); |
elCheckbox.setAttribute('id', idBox); |
112 |
152 |
elLbl.setAttribute('for', idBox); |
elLbl.setAttribute('for', idBox); |
|
153 |
|
elLbl.setAttribute('data-book', currentBook.id); |
113 |
154 |
elLbl.classList.add('fill' + type); |
elLbl.classList.add('fill' + type); |
114 |
155 |
elLbl.classList.add(animEffect); |
elLbl.classList.add(animEffect); |
115 |
156 |
elLbl.classList.add('animated'); |
elLbl.classList.add('animated'); |
|
121 |
162 |
|
|
122 |
163 |
elLbl.classList.add('hasChildren'); |
elLbl.classList.add('hasChildren'); |
123 |
164 |
hasChildren = true; |
hasChildren = true; |
|
165 |
|
} else { |
|
166 |
|
elLbl.addEventListener('click', bookClicked); |
124 |
167 |
} |
} |
125 |
168 |
|
|
126 |
169 |
setTimeout(function () { |
setTimeout(function () { |
|
134 |
177 |
}, wait); |
}, wait); |
135 |
178 |
} |
} |
136 |
179 |
|
|
137 |
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
180 |
|
function listBooks () { |
|
181 |
|
var elChapterTitle = document.getElementById('AppTitle'); |
|
182 |
|
|
|
183 |
|
elChapterTitle.addEventListener('click', backPage); |
|
184 |
|
|
|
185 |
|
for (var i = 0; i < mainBooks.length; i++) { |
|
186 |
|
addBook(mainBooks[i], i); |
|
187 |
|
} |
|
188 |
|
} |
|
189 |
|
|
|
190 |
|
function listChaper (chapterBooks, parentBookId) { |
|
191 |
|
var elChapterTitle = document.getElementById('ChapterTitle'); |
|
192 |
|
var elChapterBooks = document.getElementById('ChapterBooks'); |
|
193 |
|
var elParentBook = document.getElementById('Book_' + parentBookId); |
|
194 |
|
var elParentLabel = elParentBook.getElementsByTagName('label')[0]; |
138 |
195 |
|
|
|
196 |
|
elChapterTitle.addEventListener('click', backPage); |
|
197 |
|
elChapterTitle.textContent = elParentLabel.textContent; |
|
198 |
|
|
|
199 |
|
for (var i = 0; i < chapterBooks.length; i++) { |
|
200 |
|
addBook(chapterBooks[i], i, elChapterBooks); |
|
201 |
|
} |
|
202 |
|
} |
|
203 |
|
|
|
204 |
|
function bookClicked () { |
|
205 |
|
var bookId = this.getAttribute('data-book'); |
|
206 |
|
var bookUrl = 'books/' + bookId + '.json' |
139 |
207 |
var xhr = new XMLHttpRequest(); |
var xhr = new XMLHttpRequest(); |
140 |
|
xhr.open('GET', 'books.json'); |
|
|
208 |
|
xhr.open('GET', bookUrl); |
141 |
209 |
xhr.send(null); |
xhr.send(null); |
|
210 |
|
console.log("Request " + bookUrl); |
142 |
211 |
|
|
143 |
212 |
xhr.onreadystatechange = function () { |
xhr.onreadystatechange = function () { |
144 |
|
var DONE = 4; // readyState 4 means the request is done. |
|
145 |
|
var OK = 200; // status 200 is a successful return. |
|
146 |
|
|
|
147 |
213 |
if (xhr.readyState === DONE) { |
if (xhr.readyState === DONE) { |
|
214 |
|
var chapterBooks = []; |
|
215 |
|
|
148 |
216 |
if (xhr.status === OK) { |
if (xhr.status === OK) { |
|
217 |
|
console.log("Received data"); |
149 |
218 |
console.log(xhr.responseText); // 'This is the returned text.' |
console.log(xhr.responseText); // 'This is the returned text.' |
|
219 |
|
chapterBooks = JSON.parse(xhr.responseText); |
|
220 |
|
} else { |
|
221 |
|
console.log('Error: ' + xhr.status); // An error occurred during the request. |
|
222 |
|
} |
|
223 |
|
|
|
224 |
|
setTimeout( function () { |
|
225 |
|
changePage(elPageHome, elPageChapter, function () { listChaper(chapterBooks, bookId); }); |
|
226 |
|
}, 200); |
|
227 |
|
} |
|
228 |
|
}; |
|
229 |
|
} |
|
230 |
|
|
|
231 |
|
document.addEventListener('DOMContentLoaded', function() { |
|
232 |
|
var xhr = new XMLHttpRequest(); |
|
233 |
|
xhr.open('GET', 'books.json'); |
|
234 |
|
xhr.send(null); |
|
235 |
|
|
|
236 |
|
xhr.onreadystatechange = function () { |
|
237 |
|
if (xhr.readyState === DONE) { |
|
238 |
|
if (xhr.status === OK) { |
150 |
239 |
mainBooks = JSON.parse(xhr.responseText); |
mainBooks = JSON.parse(xhr.responseText); |
151 |
240 |
} else { |
} else { |
152 |
241 |
console.log('Error: ' + xhr.status); // An error occurred during the request. |
console.log('Error: ' + xhr.status); // An error occurred during the request. |
153 |
242 |
} |
} |
154 |
243 |
|
|
155 |
244 |
setTimeout( function () { |
setTimeout( function () { |
156 |
|
hideIndexPage(); |
|
|
245 |
|
changePage(elPageIndex, elPageHome, listBooks); |
157 |
246 |
}, 200); |
}, 200); |
158 |
247 |
} |
} |
159 |
248 |
}; |
}; |