Update staffLDB
This commit is contained in:
parent
fdd670cbe1
commit
c4841f6090
@ -59,10 +59,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
function parseTime(sch, act){
|
||||
return
|
||||
}
|
||||
|
||||
function parseDateTime(input) {
|
||||
const dt = new Date(input);
|
||||
const output = dt.toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'})
|
||||
@ -79,10 +75,35 @@
|
||||
return json
|
||||
}
|
||||
|
||||
async function generateServiceStats(service) {
|
||||
async function generateServiceData(service) {
|
||||
let serviceData = {
|
||||
to: await parseLocation(),
|
||||
from: await parseLocation(),
|
||||
length: await getTrainLength(service),
|
||||
platform: await parsePlatform(),
|
||||
}
|
||||
return serviceData;
|
||||
}
|
||||
|
||||
async function getTrainLength(service) {
|
||||
return;
|
||||
}
|
||||
|
||||
async function parseLocation(location) {
|
||||
return;
|
||||
}
|
||||
|
||||
async function parsePlatform(platform) {
|
||||
if (platform === "TBC") {
|
||||
return '-'
|
||||
}
|
||||
return platform;
|
||||
}
|
||||
|
||||
function parseTime(service){
|
||||
return
|
||||
}
|
||||
|
||||
function processNrcc(messages) { // Remove newlines and then <p> tags from input and append to array
|
||||
let arrMessages;
|
||||
if (!Array.isArray(messages)) {
|
||||
@ -122,7 +143,7 @@
|
||||
<th class="time">Exp Dep</th>
|
||||
</tr>
|
||||
{#each services as service}
|
||||
{#await generateServiceStats(service)}
|
||||
{#await generateServiceData(service)}
|
||||
<tr>
|
||||
<td colspan="8">
|
||||
Loading...
|
||||
|
Loading…
Reference in New Issue
Block a user