From 5ac72e5919a4b8a64f3671c41712db586e5113e3 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sat, 15 Apr 2017 14:36:58 +0000
Subject: [PATCH] Fix for hints not being translated
---
index.js | 35 ++++++++++++++++++++++++-----------
1 files changed, 24 insertions(+), 11 deletions(-)
diff --git a/index.js b/index.js
index a5aba2b..b76cb16 100644
--- a/index.js
+++ b/index.js
@@ -3,11 +3,12 @@
var ttss_refresh = 20000; // 20 seconds
var page_title = document.getElementsByTagName('title')[0];
+var ignore_hashchange = false;
var language = 'en';
var lang_select = document.getElementById('lang-select');
-var stop_id;
+var stop_id = '';
var stop_name = document.getElementById('stop-name');
var stop_name_form = stop_name.form;
var stop_name_autocomplete = document.getElementById('stop-name-autocomplete');
@@ -114,7 +115,7 @@
setText(alert_text, message);
alert.style.display = 'block';
- console.log(message + ' More details follow.');
+ console.log(message + (more ? ' More details follow.' : ''));
if(more) console.log(more);
}
@@ -151,8 +152,11 @@
if(times_xhr) times_xhr.abort();
console.log('loadTimes(' + stopId + ')');
+ stop_id = stopId;
- window.location.hash = '#!' + language + stop_id;
+ ignore_hashchange = true;
+ window.location.hash = '#!' + language + stopId;
+ ignore_hashchange = false;
refresh_button.removeAttribute('disabled');
loading_start();
@@ -253,6 +257,7 @@
addCellWithText(tr, data.old[i].stop_seq_num + '. ' + data.old[i].stop.name);
tr.className = 'active';
+ tr.addEventListener('click', function(stopId){ return function(){ loadTimes(stopId); } }(data.old[i].stop.shortName) );
route_table.appendChild(tr);
}
@@ -264,6 +269,7 @@
if(data.actual[i].status == 'STOPPING') {
tr.className = 'success';
}
+ tr.addEventListener('click', function(stopId){ return function(){ loadTimes(stopId); } }(data.actual[i].stop.shortName) );
route_table.appendChild(tr);
}
}).fail(fail_ajax);
@@ -319,15 +325,18 @@
stop_name.setAttribute('placeholder', lang.stop_name_placeholder);
- if(stop_id) return;
-
- setText(page_title, lang.page_title);
-
if(stop_name_autocomplete.value) {
setText(refresh_text, lang.select_stop_click_go);
} else {
setText(refresh_text, lang.enter_stop_name_to_begin);
}
+
+ if(!stop_id) return;
+
+ setText(page_title, lang.page_title);
+
+ loadTimes();
+ loadRoute();
}
function change_language(lang) {
@@ -349,17 +358,20 @@
document.body.removeChild(document.getElementById('lang_script'));
document.body.appendChild(script);
+ ignore_hashchange = true;
window.location.hash = '#!' + language + stop_id;
+ ignore_hashchange = false;
}
function hash() {
+ if(ignore_hashchange) return;
+
if(window.location.hash.match(/^#![0-9]+$/)) {
loadTimes(parseInt(window.location.hash.substr(2)));
} else if(window.location.hash.match(/^#![a-z]{2}[0-9]*$/)) {
var stop = parseInt(window.location.hash.substr(4));
if(stop) stop_id = stop;
change_language(window.location.hash.substr(2, 2));
- loadTimes(stop_id);
}
}
@@ -375,7 +387,7 @@
if(data[i].id > 6000) continue;
var opt = document.createElement('option');
opt.value = data[i].id;
- setText(opt, decodeEntities(data[i].name));
+ setText(opt, data[i].name);
stop_name_autocomplete.appendChild(opt);
}
@@ -410,8 +422,7 @@
stop_name_form.addEventListener('submit', function(e) {
e.preventDefault();
if(!stop_name_autocomplete.value) return;
- stop_id = stop_name_autocomplete.value;
- loadTimes(stop_id);
+ loadTimes(stop_name_autocomplete.value);
});
refresh_button.addEventListener('click', function(e) {
@@ -426,6 +437,8 @@
hash();
window.addEventListener('hashchange', hash);
+
+ checkVersionInit();
}
init();
--
Gitblit v1.9.1