2022-10-10 19:20:09 -06:00
|
|
|
/**
|
|
|
|
* Feis Dataset Importer
|
2022-10-10 15:53:55 -06:00
|
|
|
*/
|
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
import * as FeisWorx from "./feisworx.mjs"
|
2022-10-10 19:59:25 -06:00
|
|
|
import * as FeisResults from "./feisresults.mjs"
|
2022-10-10 15:53:55 -06:00
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
/**
|
|
|
|
* @typedef {import("./types.mjs").Results} Results
|
|
|
|
* @typedef {import("./types.mjs").Result} Result
|
|
|
|
* @typedef {import("./types.mjs").Round} Round
|
|
|
|
* @typedef {import("./types.mjs").Adjudication} Adjudication
|
|
|
|
* @typedef {Array.<Array.<String>>} RawData
|
2022-10-10 15:53:55 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new element and appends it to parent
|
|
|
|
*
|
2022-10-10 19:20:09 -06:00
|
|
|
* @param {Element} parent Element to append to
|
|
|
|
* @param {String} type Type of element to create
|
|
|
|
* @param {Object} [dataset] Data fields to set
|
2022-10-10 15:53:55 -06:00
|
|
|
* @returns {Element}
|
|
|
|
*/
|
2022-10-10 19:20:09 -06:00
|
|
|
function newElement(parent, type, dataset={}) {
|
|
|
|
let child = parent.appendChild(document.createElement(type))
|
|
|
|
for (let k in dataset) {
|
|
|
|
child.dataset[k] = dataset[k]
|
|
|
|
}
|
|
|
|
return child
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
/**
|
|
|
|
* Load a file and parse it into Results.
|
|
|
|
*
|
|
|
|
* @param {URL|String} url Location of file to load
|
|
|
|
* @returns {Results} Parsed results
|
|
|
|
*/
|
|
|
|
async function loadData(url) {
|
|
|
|
let resp = await fetch(url)
|
|
|
|
let contentType = resp.headers.get("Content-Type")
|
|
|
|
if (! contentType.includes("/xml")) {
|
|
|
|
console.error(`Cannot load data with content-type ${contentType}`)
|
|
|
|
return
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
2022-10-10 19:20:09 -06:00
|
|
|
let text = await resp.text()
|
|
|
|
let doc = new DOMParser().parseFromString(text, "text/xml")
|
|
|
|
let rawData = parseXMLDocument(doc)
|
|
|
|
return parseRawData(rawData)
|
|
|
|
}
|
2022-10-10 15:53:55 -06:00
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
/**
|
|
|
|
* Parse an XML document of feis results into a 2D array of strings
|
|
|
|
*
|
|
|
|
* @param {Document} doc XML Document
|
|
|
|
* @returns {RawData} Raw data
|
|
|
|
*/
|
|
|
|
function parseXMLDocument(doc) {
|
|
|
|
let table = doc.querySelector("Table")
|
|
|
|
let rawData = []
|
|
|
|
|
|
|
|
for (let dataRow of table.children) {
|
|
|
|
if (! ["tr"].includes(dataRow.tagName.toLowerCase())) {
|
|
|
|
console.warn(`Warning: unexpected XML tag ${dataRow.tagName}, expecting tr`)
|
|
|
|
continue
|
|
|
|
}
|
2022-10-10 15:53:55 -06:00
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
let row = []
|
|
|
|
for (let dataCell of dataRow.children) {
|
|
|
|
if (! ["th", "td"].includes(dataCell.tagName.toLowerCase())) {
|
|
|
|
console.warn(`Warning: unexpected XML tag ${dataRow.tagName}, expecting th/td`)
|
2022-10-10 15:53:55 -06:00
|
|
|
continue
|
|
|
|
}
|
2022-10-10 19:20:09 -06:00
|
|
|
row.push(dataCell.textContent)
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
rawData.push(row)
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
2022-10-10 19:20:09 -06:00
|
|
|
return rawData
|
|
|
|
}
|
2022-10-10 15:53:55 -06:00
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
/**
|
|
|
|
* Parse raw data into a list of adjudicators and results
|
|
|
|
*
|
|
|
|
* @param {RawData} rawData Raw data
|
|
|
|
* @returns {Results} Parsed Results
|
|
|
|
*/
|
|
|
|
function parseRawData(rawData) {
|
|
|
|
let firstRow = rawData[0]
|
|
|
|
if (firstRow[0].trim().toLowerCase() == "place awd pts") {
|
|
|
|
return FeisWorx.parse(rawData)
|
|
|
|
}
|
|
|
|
if (firstRow[firstRow.length-1].trim().toLowerCase() == "total ip *") {
|
2022-10-10 19:59:25 -06:00
|
|
|
return FeisResults.parse(rawData)
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
2022-10-10 19:20:09 -06:00
|
|
|
console.error("First row doesn't resemble anything I can cope with", firstRow)
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Fills a table element with some results
|
|
|
|
*
|
|
|
|
* @param {Element} table Table to fill in
|
2022-10-10 19:20:09 -06:00
|
|
|
* @param {Results} results Results to fill with
|
2022-10-10 15:53:55 -06:00
|
|
|
*/
|
|
|
|
function fillTable(table, results) {
|
|
|
|
let head = newElement(table, "thead")
|
|
|
|
let row0 = newElement(head, "tr")
|
|
|
|
let row1 = newElement(head, "tr")
|
|
|
|
let row2 = newElement(head, "tr")
|
|
|
|
|
2022-10-10 19:20:09 -06:00
|
|
|
newElement(row0, "th").colSpan = 2
|
|
|
|
newElement(row1, "th").colSpan = 2
|
2022-10-10 15:53:55 -06:00
|
|
|
newElement(row2, "th").textContent = "Name"
|
|
|
|
newElement(row2, "th").textContent = "Rank"
|
|
|
|
|
|
|
|
let roundNumber = 0
|
|
|
|
for (let round of results[0].rounds) {
|
|
|
|
let roundCell = newElement(row0, "th")
|
|
|
|
roundCell.textContent = `Round ${++roundNumber}`
|
|
|
|
roundCell.colSpan = 3*round.length
|
|
|
|
for (let adjudication of round) {
|
|
|
|
let adjudicator = adjudication.adjudicator
|
|
|
|
let cell = newElement(row1, "th")
|
|
|
|
cell.textContent = adjudicator
|
|
|
|
cell.colSpan = 3
|
|
|
|
|
|
|
|
newElement(row2, "th").textContent = "Raw"
|
|
|
|
newElement(row2, "th").textContent = "Placing"
|
|
|
|
newElement(row2, "th").textContent = "Points"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let body = newElement(table, "tbody")
|
|
|
|
for (let result of results) {
|
|
|
|
let row = newElement(body, "tr")
|
|
|
|
|
|
|
|
newElement(row, "th").textContent = result.name
|
|
|
|
newElement(row, "th").textContent = result.overallRank
|
|
|
|
|
|
|
|
let i = 0
|
|
|
|
for (let round of result.rounds) {
|
|
|
|
let first = true
|
|
|
|
for (let adjudication of round) {
|
|
|
|
let raw = newElement(row, "td")
|
|
|
|
raw.textContent = adjudication.raw
|
2022-10-10 19:20:09 -06:00
|
|
|
raw.classList.add("new-adjudication")
|
2022-10-10 15:53:55 -06:00
|
|
|
if (first) {
|
|
|
|
raw.classList.add("new-round")
|
|
|
|
first = false
|
|
|
|
}
|
|
|
|
|
|
|
|
newElement(row, "td").textContent = adjudication.placing
|
|
|
|
newElement(row, "td").textContent = adjudication.points
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function init() {
|
|
|
|
for (let div of document.querySelectorAll(".clrg-dataset")) {
|
2022-10-10 19:20:09 -06:00
|
|
|
let results = await loadData(div.dataset.url)
|
|
|
|
|
2022-10-10 15:53:55 -06:00
|
|
|
let table = newElement(div, "table")
|
2022-10-10 19:20:09 -06:00
|
|
|
fillTable(table, results)
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (document.readyState === "loading") {
|
|
|
|
document.addEventListener("DOMContentLoaded", init)
|
|
|
|
} else {
|
|
|
|
init()
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
2022-10-10 19:20:09 -06:00
|
|
|
loadData,
|
|
|
|
parseXMLDocument,
|
|
|
|
parseRawData,
|
2022-10-10 15:53:55 -06:00
|
|
|
}
|