refactor
This commit is contained in:
parent
98b602cdcc
commit
7a4d9072df
294
jrpg.ts
294
jrpg.ts
|
@ -1,147 +1,147 @@
|
||||||
// deno
|
// deno
|
||||||
import { DOMParser } from 'https://deno.land/x/deno_dom/deno-dom-wasm.ts'
|
import { DOMParser } from 'https://deno.land/x/deno_dom/deno-dom-wasm.ts'
|
||||||
|
|
||||||
function getdompareser(html)
|
function getdompareser(html)
|
||||||
{
|
{
|
||||||
const parser = new DOMParser()
|
const parser = new DOMParser()
|
||||||
return parser.parseFromString(html, "text/html")
|
return parser.parseFromString(html, "text/html")
|
||||||
}
|
}
|
||||||
|
|
||||||
function gettables(doc)
|
function gettables(doc)
|
||||||
{
|
{
|
||||||
return [...doc.getElementsByTagName("h2")].map(h2 => h2.id)
|
return [...doc.getElementsByTagName("h2")].map(h2 => h2.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
function gettable(doc, table, notes)
|
function gettable(doc, table, notes)
|
||||||
{
|
{
|
||||||
const result = []
|
const result = []
|
||||||
const items = [...doc.getElementById(table).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 = {}
|
||||||
const columns = [...elt.children]
|
const columns = [...elt.children]
|
||||||
header.forEach( (h,i) =>
|
header.forEach( (h,i) =>
|
||||||
{
|
{
|
||||||
item[h] = columns[i].textContent
|
item[h] = columns[i].textContent
|
||||||
})
|
})
|
||||||
if (item.Name)
|
if (item.Name)
|
||||||
{
|
{
|
||||||
const sup = parseInt(item.Name.split(" ").pop())
|
const sup = parseInt(item.Name.split(" ").pop())
|
||||||
if (!isNaN(sup))
|
if (!isNaN(sup))
|
||||||
{
|
{
|
||||||
item.Notes = notes[sup - 1]
|
item.Notes = notes[sup - 1]
|
||||||
item.Name = item.Name.substr(0, item.Name.length - 2)
|
item.Name = item.Name.substr(0, item.Name.length - 2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
result.push(item)
|
result.push(item)
|
||||||
})
|
})
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
function getnotes(doc)
|
function getnotes(doc)
|
||||||
{
|
{
|
||||||
const lastsup = [...doc.getElementsByTagName("sup")].pop()
|
const lastsup = [...doc.getElementsByTagName("sup")].pop()
|
||||||
if (!lastsup)
|
if (!lastsup)
|
||||||
{
|
{
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
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).trim())
|
.map(i => i.substr(3).trim())
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getpage(url)
|
async function getpage(url)
|
||||||
{
|
{
|
||||||
const result = {}
|
const result = {}
|
||||||
const response = await fetch(url)
|
const response = await fetch(url)
|
||||||
const html = await response.text()
|
const html = await response.text()
|
||||||
|
|
||||||
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(table =>
|
tables.forEach(table =>
|
||||||
{
|
{
|
||||||
result[table] = gettable(doc, table, notes)
|
result[table] = gettable(doc, table, notes)
|
||||||
})
|
})
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
function format(equipment, exclude)
|
function format(equipment, exclude)
|
||||||
{
|
{
|
||||||
const result = []
|
const result = []
|
||||||
|
|
||||||
Object.keys(equipment).forEach(table => {
|
Object.keys(equipment).forEach(table => {
|
||||||
const columnsizes = {}
|
const columnsizes = {}
|
||||||
result.push(table.toUpperCase())
|
result.push(table.toUpperCase())
|
||||||
const items = equipment[table]
|
const items = equipment[table]
|
||||||
|
|
||||||
// exclude
|
// exclude
|
||||||
items.forEach(item => {
|
items.forEach(item => {
|
||||||
exclude.forEach(name => {
|
exclude.forEach(name => {
|
||||||
delete item[name]
|
delete item[name]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// init sizes
|
// init sizes
|
||||||
items.forEach(item =>
|
items.forEach(item =>
|
||||||
{
|
{
|
||||||
Object.keys(item).forEach(columnname => {
|
Object.keys(item).forEach(columnname => {
|
||||||
columnsizes[columnname] = columnsizes[columnname] || columnname.length
|
columnsizes[columnname] = columnsizes[columnname] || columnname.length
|
||||||
columnsizes[columnname] = Math.max(columnsizes[columnname], (item[columnname] || "").length)
|
columnsizes[columnname] = Math.max(columnsizes[columnname], (item[columnname] || "").length)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// write 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]
|
||||||
line += columnname + " ".repeat((Math.max(0, size - columnname.length))) + "|"
|
line += columnname + " ".repeat((Math.max(0, size - columnname.length))) + "|"
|
||||||
})
|
})
|
||||||
result.push(line)
|
result.push(line)
|
||||||
|
|
||||||
// write lines
|
// write lines
|
||||||
items.forEach(item => {
|
items.forEach(item => {
|
||||||
let line = ""
|
let line = ""
|
||||||
Object.keys(columnsizes).forEach(columnname => {
|
Object.keys(columnsizes).forEach(columnname => {
|
||||||
const size = columnsizes[columnname]
|
const size = columnsizes[columnname]
|
||||||
const value = (item[columnname] || "").replace("\n", " ")
|
const value = (item[columnname] || "").replace("\n", " ")
|
||||||
line += value + " ".repeat(Math.max(0, size - value.length)) + "|"
|
line += value + " ".repeat(Math.max(0, size - value.length)) + "|"
|
||||||
})
|
})
|
||||||
result.push(line)
|
result.push(line)
|
||||||
})
|
})
|
||||||
result.push(" ")
|
result.push(" ")
|
||||||
})
|
})
|
||||||
|
|
||||||
return result.join("\n")
|
return result.join("\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getdata(configname)
|
async function getdata(configname)
|
||||||
{
|
{
|
||||||
const pages = configs[configname].pages
|
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)
|
||||||
{
|
{
|
||||||
const page = pages[index]
|
const page = pages[index]
|
||||||
const pagedata = await getpage([root, configname, page].join("/") + ".html")
|
const pagedata = await getpage([root, configname, page].join("/") + ".html")
|
||||||
result = {...result, ...pagedata}
|
result = {...result, ...pagedata}
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
function output(stringresult, configname)
|
function output(stringresult, configname)
|
||||||
{
|
{
|
||||||
//console.log(stringresult)
|
//console.log(stringresult)
|
||||||
Deno.writeTextFile(configname + ".txt", stringresult)
|
Deno.writeTextFile(configname + ".txt", stringresult)
|
||||||
}
|
}
|
||||||
|
|
||||||
const configs = {
|
const configs = {
|
||||||
ffantasy: { pages: ["weapons", "armor", "blackmagic", "whitemagic"], exclude: ["Found", "Sold", "Available", "Notes", "Cost", "Ni", "WM", "WW", "BM", "BW", "Th", "BB", "Ma"] },
|
ffantasy: { pages: ["weapons", "armor", "blackmagic", "whitemagic"], exclude: ["Found", "Sold", "Available", "Notes", "Cost", "Ni", "WM", "WW", "BM", "BW", "Th", "BB", "Ma"] },
|
||||||
dw3: { pages: ["armor", "weapons"], exclude: [] },
|
dw3: { pages: ["armor", "weapons"], exclude: [] },
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const configname in configs) {
|
for (const configname in configs) {
|
||||||
const data = await getdata(configname)
|
const data = await getdata(configname)
|
||||||
const stringresult = format(data, configs[configname].exclude)
|
const stringresult = format(data, configs[configname].exclude)
|
||||||
output(stringresult, configname)
|
output(stringresult, configname)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue