improvments

This commit is contained in:
quenousimporte 2025-03-11 12:23:19 +01:00
parent c55a5263bf
commit 2171ca44bb
1 changed files with 18 additions and 20 deletions

38
jrpg.ts
View File

@ -12,10 +12,10 @@ function gettables(doc)
return [...doc.getElementsByTagName("h2")].map(h2 => h2.id) return [...doc.getElementsByTagName("h2")].map(h2 => h2.id)
} }
function getcategory(doc, category, notes) function gettable(doc, table, notes)
{ {
const result = [] const result = []
const items = [...doc.getElementById(category).nextSibling.nextSibling.nextSibling.firstChild.children[0].children] const items = [...doc.getElementById(table).nextSibling.nextSibling.nextSibling.firstChild.children[0].children]
const header = [...items.shift().children].map(h => h.textContent) const header = [...items.shift().children].map(h => h.textContent)
items.forEach(elt => { items.forEach(elt => {
const item = {} const item = {}
@ -24,7 +24,6 @@ function getcategory(doc, category, notes)
{ {
item[h] = columns[i].textContent item[h] = columns[i].textContent
}) })
item.Notes = ""
if (item.Name) if (item.Name)
{ {
const sup = parseInt(item.Name.split(" ").pop()) const sup = parseInt(item.Name.split(" ").pop())
@ -48,7 +47,7 @@ function getnotes(doc)
} }
return lastsup.parentElement.textContent.split("\n") return lastsup.parentElement.textContent.split("\n")
.filter(i => i.length) .filter(i => i.length)
.map(i => i.substr(3)) .map(i => i.substr(3).trim())
} }
async function getpage(url) async function getpage(url)
@ -60,20 +59,17 @@ async function getpage(url)
const doc = getdompareser(html) const doc = getdompareser(html)
const notes = getnotes(doc) const notes = getnotes(doc)
const tables = gettables(doc) const tables = gettables(doc)
tables.forEach(category => tables.forEach(table =>
{ {
result[category] = getcategory(doc, category, notes) result[table] = gettable(doc, table, notes)
}) })
return result return result
} }
function format(equipment) function format(equipment, exclude)
{ {
const result = [] const result = []
const exclude = ["Found", "Sold", "Available", "Ft","Mr","Go"]
// todo: notes as footers instead of column // todo: notes as footers instead of column
// todo: put excludes in config
// todo: invert available X mark // todo: invert available X mark
// todo: remove a column if always empty // todo: remove a column if always empty
@ -98,7 +94,7 @@ function format(equipment)
}) })
}) })
// header // write header
let line = "" let line = ""
Object.keys(columnsizes).forEach(columnname => { Object.keys(columnsizes).forEach(columnname => {
const size = columnsizes[columnname] const size = columnsizes[columnname]
@ -106,7 +102,7 @@ function format(equipment)
}) })
result.push(line) result.push(line)
// lines // write lines
items.forEach(item => { items.forEach(item => {
let line = "" let line = ""
Object.keys(columnsizes).forEach(columnname => { Object.keys(columnsizes).forEach(columnname => {
@ -124,7 +120,7 @@ function format(equipment)
async function getdata(configname) async function getdata(configname)
{ {
const pages = configs[configname] const pages = configs[configname].pages
let result = {} let result = {}
const root = "https://mikesrpgcenter.com" const root = "https://mikesrpgcenter.com"
for (const index in pages) for (const index in pages)
@ -136,17 +132,19 @@ async function getdata(configname)
return result return result
} }
function output(string) function output(stringresult, configname)
{ {
console.log(string) //console.log(stringresult)
Deno.writeTextFile(configname + ".txt", stringresult)
} }
const configs = { const configs = {
ffantasy: ["weapons", "armor", "blackmagic", "whitemagic"], ffantasy: { pages: ["weapons", "armor", "blackmagic", "whitemagic"], exclude: ["Found", "Sold", "Available", "Notes", "Cost", "Ni", "WM", "WW", "BM", "BW", "Th", "BB", "Ma"] },
dw3: ["armor", "weapons"] dw3: { pages: ["armor", "weapons"], exclude: [] },
} }
getdata("dw3") const configname = "ffantasy"
.then(format)
.then(output)
const data = await getdata(configname)
const stringresult = format(data, configs[configname].exclude)
output(stringresult, configname)