-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript.js
282 lines (245 loc) · 10.4 KB
/
javascript.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
document.body.onload = () => {
document.body.style.opacity = 1
$('#header').change()
}
$("#animatible").hide()
let yPos = window.innerHeight/3
document.getElementById('thing').style.transform = `translate(0px,${yPos}px)`
document.getElementById('parallax').style.backgroundPositionY=`${0.5*yPos}px`
let touchstartY = 0
let touchendY = 0
window.addEventListener('touchstart', (event) => {
touchstartY = event.changedTouches[0].screenY;
}, false)
window.onmousedown = (event) => {
touchstartY = event.clientY
}
window.onmouseup = (event) => {
touchendY = event.clientY
if(event.target.id !== 'selectstation' && event.target.id !== 'st' ) handleSwipe(event)
}
window.addEventListener('touchend', (event) => {
touchendY = event.changedTouches[0].screenY;
handleSwipe(event)
}, false)
const handleSwipe = event => {
event.myDelta = -5*(touchstartY-touchendY)/window.innerHeight
parallax(event)
}
const addMouseWheelEventListener = scrollHandler => {
if (window.addEventListener) {
window.addEventListener('mousewheel', scrollHandler, false)
window.addEventListener('DOMMouseScroll', scrollHandler, false)
}
else window.attachEvent("onmousewheel", scrollHandler)
}
const parallax = event => { // Animation step for parallax effect
const e = window.event || event
const delta = event.myDelta ? event.myDelta : Math.max(-1, Math.min(1, e.wheelDelta || -e.detail))
const x = document.getElementById('thing')
const x2 = document.getElementById("parallax")
const dy = delta*90
if( -Math.abs(dy)-x.offsetHeight < (yPos+dy) && (yPos + dy) < window.innerHeight){
yPos += dy
x.style.transform =`translate(0px,${yPos}px)`
x2.style.backgroundPositionY=`${0.5*yPos}px`
}
}
addMouseWheelEventListener(parallax)
const loadDoc = (url, cfunc) => { // wrapper function for Ajax call function
let xhttp
xhttp=new XMLHttpRequest()
xhttp.onreadystatechange = async () => {
if (xhttp.readyState === 4 && xhttp.status == 200) {
await cfunc(JSON.parse(xhttp.responseText))
}
}
xhttp.open('GET', url, true)
xhttp.send()
}
const url3 = 'https://rata.digitraffic.fi/api/v1/live-trains/station/HKI?arrived_trains=0&arriving_trains=250&departed_trains=0&departing_trains=250&include_nonstopping=false'
const url = 'https://rata.digitraffic.fi/api/v1/metadata/stations'
const commuterStations = []
const findCommuterStations = stations => { // makes commuter station list
const commuterTrains = []
for(let i = 0; i < stations.length; i++)
if(stations[i].trainCategory === 'Commuter')
if(!commuterTrains.find(obj => (obj.commuterLineID === stations[i].commuterLineID)))
commuterTrains.push(stations[i])
for (let i = 0; i < commuterTrains.length; i++)
for(j = 0; j < commuterTrains[i].timeTableRows.length; j++)
if(!commuterStations.find(obj => (obj.stationShortCode === commuterTrains[i].timeTableRows[j].stationShortCode)))
commuterStations.push({stationShortCode:commuterTrains[i].timeTableRows[j].stationShortCode})
loadDoc(url,getStations)
}
$("#st").on("mouseover", () => {
$("#animatible").show()
if($("#animatible").css('width') !== '100%')
$( "#animatible" ).animate({
"width": "100%"
}, {
duration: 1000,
complete: () => {
$( "#animatible" ).css({'max-width':'100%'})
}
})
})
loadDoc(url3, findCommuterStations)
let st
const getStations = arr => {
st = new Map() // datalist-items
let out = ''
for(let i = 0; i < arr.length; i++)
if(commuterStations.find(obj => (obj.stationShortCode == arr[i].stationShortCode))){
out += `<option id='${arr[i].stationShortCode}' value='${arr[i].stationName}' style='width:fit-content;line-height:1.5em;font-size:x-large;'>${arr[i].stationName}</option>`
st.set(arr[i].stationShortCode,arr[i].stationName)
}
$('#selectstation').html(out)
}
const showTrains = arr => {
dispayTrains(getStationDataArray(arr))
}
const createRow = (i,arr) => { // time table row
let row = `<tr id='${i}'><td style='width:1em;padding:0em;border-right:solid 1px black;border-spacing: 0px;'>
<div class='starting'>${arr[i].commuterLineID}</div></td><td class='timeCell'
style='padding-left:0.5em;padding-right:0.5em;text-align:center;'>`
if(arr[i].liveEstimateTime) {
row += `<span style='margin:0px;padding:0px;color:#99ffe6;'>${printLocalTime(arr[i].liveEstimateTime)}` +
`</span></td><td style='padding-right:0em;' class='timeCell'>${arr[i].destination}</td>`
if(arr[i].differenceInMinutes !== 0)
row += ` </span><td class='timeCell' style='padding-right:0.5em;'><span style='color:#ff9933;'> Δt:`+
`${arr[i].differenceInMinutes}min</td>`
else row += `<td class='timeCell'></td>`
} else if(arr[i].cancelled)
row += `${printLocalTime(arr[i].scheduledTime)}</td><td style='padding-right:0em;' class='timeCell'>` +
`${arr[i].destination}</td><td class='timeCell'><span style='margin:0px;padding:0px;color:#ff9933;'>CANCELLED</span></td>`
else
row += `${printLocalTime(arr[i].scheduledTime)}</td><td style='padding-right:0.5em;' class='timeCell'>`+
`${arr[i].destination}</td><td class='timeCell'></td>`
row += `<td style='width:1em;padding:0;border-left:solid 1px black;border-spacing: 0px;'>
<div class='ending'>${arr[i].commercialTrack}</div></td></tr>`
return row
}
let statId
const dispayTrains = arr => {
$('#timeTable').html('')
let row = ''
for(i = 0; i < arr.length; i++) {
row += createRow(i,arr)
}
$('#timeTable').html(row)
$('#timeTable').css({'margin-bottom':'0.2em','margin-top':'0.5em'})
let time = new Date()
const timePeriod = time.toTimeString().slice(0,5) + '\-' +
(new Date(time.getTime() + 3600000)).toTimeString().slice(0,5)
const timePeriodArray = timePeriod.split('')
let timeperiodHtml = ''
for(i = 0; i < 11; i++){
if(i === 2 || i === 5 || i === 8 ){
timeperiodHtml += '<div style="width:.5rem;" class="clock">'+
timePeriodArray[i]+'</div>'
} else {
timeperiodHtml += '<div class="clock">'+
timePeriodArray[i]+'</div>'
}
}
$('#timeperiod').html(timeperiodHtml)
$('.middle').css({'min-width':`${$('#timeTable').width()}px`})
$('#bottom-left').show()
}
const trainI = ['HKI', 'PSL', 'KÄP', 'OLK', 'PMK', 'ML', 'TNA', 'PLA', 'TKL', 'HKH', 'HVK', 'ASO', 'LNÄ', 'LEN', 'VMS', 'AVP', 'RSM', 'KTÖ', 'VEH', 'VKS',
'LAV', 'MRL', 'LOH', 'MYR', 'MLO', 'KAN', 'POH', 'HPL', 'KHK', 'ILA', 'PSL', 'HKI'] // for special cases (train I and P, P = reverse(I) ).
const getStationDataArray = array => {
const stationDataArr = []
for(i = 0; i < array.length; i++){
if(array[i].trainCategory === 'Commuter'){
let object = array[i].timeTableRows.find(obj => (obj.stationShortCode === statId && obj.type === 'DEPARTURE' && !obj.actualTime))
object.commuterLineID = array[i].commuterLineID
object.destination = array[i].timeTableRows[array[i].timeTableRows.length-1].stationShortCode
if((object.commuterLineID == 'I' || object.commuterLineID == 'P') && statId =='PSL'){
if(!array[i].timeTableRows[2].actualTime){
object = array[i].timeTableRows[2]
object.destination = 'LEN'
} else {
object = array[i].timeTableRows[60]
object.destination = 'HKI'
}
object.commuterLineID = array[i].commuterLineID
stationDataArr.push(object)
continue
} else if(statId =='LEN'){
object.destination = 'HKI'
} else if(object.commuterLineID == 'I' && statId != 'PSL'){
if(trainI.indexOf(statId) < 13) object.destination = 'LEN'
else object.destination = 'HKI'
} else if(object.commuterLineID == 'P' && statId != 'PSL'){
if(trainI.indexOf(statId) > 13 ) object.destination = 'LEN'
else object.destination = 'HKI'
}
stationDataArr.push(object)
}
}
stationDataArr.sort(compare)
return stationDataArr
}
const printLocalTime = dateString => {
const dat = stringToDate(dateString)
const d = new Date(dat.getTime()-dat.getTimezoneOffset()*60*1000)
return d.toTimeString().slice(0,8)
}
const stringToDate = s => new Date(
s.slice(0,4),
Number(s.slice(5,7)) - 1,
s.slice(8,10),
s.slice(11,13),
s.slice(14,16),
s.slice(17,19),0)
const compare = (a,b) => {
const aDate = (a.liveEstimateTime ? a.liveEstimateTime : a.scheduledTime)
const bDate = (b.liveEstimateTime ? b.liveEstimateTime : b.scheduledTime)
if (aDate < bDate)
return -1
if (aDate > bDate)
return 1
return 0
}
let timer = 0
const getStationData = stationShortCode => {
const url2 = 'https://rata.digitraffic.fi/api/v1/live-trains/station/' + stationShortCode +
'?minutes_before_departure=60&minutes_after_departure=0&minutes_before_arrival=0&minutes_after_arrival=0&include_nonstopping=false'
loadDoc(url2,showTrains)
timer=setTimeout(getStationData.bind(null,stationShortCode), 20000) //updates 3 times in minute
}
const listSelectionHandler = () => {
const test = $(`#selectstation option[value='${$('#selectstation').val()}']`).attr('id')
if(test && test != statId){
clearTimeout(timer)
statId = test
getStationData(statId)
$('#header').html(st.get(statId))
$('#selectstation').blur()
$('#header').change()
}
}
const setHeaderFontSize = () => {
let hg = Math.round(2*$('#headerSpace').width()/$('#header').text().length)
$('#header').css({'font-size':`${hg}px`})
$('.middle').css({'min-width':`${$('#timeTable').width()}px`})
let i = 1
do {
hg = Math.round(2*$('#headerSpace').width()/$('#header').text().length)-i
i+=1
$('#header').css({'font-size':`${hg}px`})
} while ($('#header').width() >= $('#headerSpace').width())
}
window.addEventListener('resize', setHeaderFontSize)
$('#header').change(setHeaderFontSize)
$('input[name=station]').mouseover(e => {
$('input[name=station]').val('')
})
$('#selectstation').click(e => {
$('input[name=station]').val('')
})
'select change'.split(' ').forEach(e => {
window.addEventListener(e,listSelectionHandler,false)
})