From c55a5263bf202122ca77cf20de65cc611bc8fb80 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Tue, 11 Mar 2025 11:42:10 +0100 Subject: [PATCH] refactor --- jrpg.ts | 49 ++++++++++++++++--------------------------------- 1 file changed, 16 insertions(+), 33 deletions(-) diff --git a/jrpg.ts b/jrpg.ts index 5514254..d41f1cc 100644 --- a/jrpg.ts +++ b/jrpg.ts @@ -7,6 +7,11 @@ function getdompareser(html) return parser.parseFromString(html, "text/html") } +function gettables(doc) +{ + return [...doc.getElementsByTagName("h2")].map(h2 => h2.id) +} + function getcategory(doc, category, notes) { const result = [] @@ -36,14 +41,17 @@ function getcategory(doc, category, notes) function getnotes(doc) { - return [] const lastsup = [...doc.getElementsByTagName("sup")].pop() + if (!lastsup) + { + return [] + } return lastsup.parentElement.textContent.split("\n") .filter(i => i.length) .map(i => i.substr(3)) } -async function getpage(url, tables) +async function getpage(url) { const result = {} const response = await fetch(url) @@ -51,7 +59,7 @@ async function getpage(url, tables) const doc = getdompareser(html) const notes = getnotes(doc) - + const tables = gettables(doc) tables.forEach(category => { result[category] = getcategory(doc, category, notes) @@ -64,9 +72,8 @@ function format(equipment) const result = [] const exclude = ["Found", "Sold", "Available", "Ft","Mr","Go"] + // todo: notes as footers instead of column // todo: put excludes in config - // todo: fix footer notes - // todo: guess tables list // todo: invert available X mark // todo: remove a column if always empty @@ -123,7 +130,7 @@ async function getdata(configname) for (const index in pages) { const page = pages[index] - const pagedata = await getpage([root, configname, page.url].join("/"), page.tables) + const pagedata = await getpage([root, configname, page].join("/") + ".html") result = {...result, ...pagedata} } return result @@ -135,35 +142,11 @@ function output(string) } const configs = { - ffantasy: [ - { - url: "weapons.html", - tables: ["swords", "axes", "daggers", "staffs", "hammers", "nunchucks", "miscellaneous"] - }, - { - url: "armor.html", - tables: ["armor", "braceletes", "shields", "helmets", "gauntlets"] - }, - { - url: "blackmagic.html", - tables: ["black_magic"] - }, - { - url: "whitemagic.html", - tables: ["white_magic"] - }], - dw3: [ - { - url: "armor.html", - tables: ["armor", "shields", "helmets"] - }, - { - url: "weapons.html", - tables: ["weapons"] - }] + ffantasy: ["weapons", "armor", "blackmagic", "whitemagic"], + dw3: ["armor", "weapons"] } -getdata("ffantasy") +getdata("dw3") .then(format) .then(output)