refactor
This commit is contained in:
parent
ce323cbb32
commit
972653f159
112
jrpg.ts
112
jrpg.ts
|
@ -3,68 +3,70 @@ 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 getcategory(doc, category, notes)
|
function getcategory(doc, category, notes)
|
||||||
{
|
{
|
||||||
const result = [];
|
const result = []
|
||||||
const items = [...doc.getElementById(category).nextSibling.nextSibling.nextSibling.firstChild.children[0].children];
|
const items = [...doc.getElementById(category).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
|
||||||
});
|
})
|
||||||
item.Notes = ""
|
item.Notes = ""
|
||||||
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)
|
||||||
{
|
{
|
||||||
return []
|
return []
|
||||||
const lastsup = [...doc.getElementsByTagName("sup")].pop();
|
const lastsup = [...doc.getElementsByTagName("sup")].pop()
|
||||||
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))
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getpage(url, tables)
|
async function getpage(url, tables)
|
||||||
{
|
{
|
||||||
const result = {}
|
const result = {}
|
||||||
const response = await fetch(root + 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)
|
||||||
|
|
||||||
tables.forEach(category =>
|
tables.forEach(category =>
|
||||||
{
|
{
|
||||||
result[category] = getcategory(doc, category, notes);
|
result[category] = getcategory(doc, category, notes)
|
||||||
});
|
})
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
function output(equipment)
|
function format(equipment)
|
||||||
{
|
{
|
||||||
const result = []
|
const result = []
|
||||||
const exclude = ["Found", "Sold", "Available", "Ft","Mr","Go"] // add unused classes/jobs
|
const exclude = ["Found", "Sold", "Available", "Ft","Mr","Go"]
|
||||||
|
|
||||||
|
// todo: put excludes in config
|
||||||
// todo: fix footer notes
|
// todo: fix footer notes
|
||||||
|
// todo: guess tables list
|
||||||
// todo: invert available X mark
|
// todo: invert available X mark
|
||||||
// todo: remove a column if always empty
|
// todo: remove a column if always empty
|
||||||
|
|
||||||
|
@ -110,48 +112,58 @@ function output(equipment)
|
||||||
result.push(" ")
|
result.push(" ")
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log(result.join("\n"))
|
return result.join("\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
const root = "https://mikesrpgcenter.com"
|
async function getdata(configname)
|
||||||
let equipment = {};
|
{
|
||||||
|
const pages = configs[configname]
|
||||||
const dq3pages = [
|
let result = {}
|
||||||
|
const root = "https://mikesrpgcenter.com"
|
||||||
|
for (const index in pages)
|
||||||
{
|
{
|
||||||
url: "/dw3/armor.html",
|
const page = pages[index]
|
||||||
tables: ["armor", "shields", "helmets"]
|
const pagedata = await getpage([root, configname, page.url].join("/"), page.tables)
|
||||||
},
|
result = {...result, ...pagedata}
|
||||||
{
|
|
||||||
url: "/dw3/weapons.html",
|
|
||||||
tables: ["weapons"]
|
|
||||||
}
|
}
|
||||||
]
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
const ff1pages = [
|
function output(string)
|
||||||
|
{
|
||||||
|
console.log(string)
|
||||||
|
}
|
||||||
|
|
||||||
|
const configs = {
|
||||||
|
ffantasy: [
|
||||||
{
|
{
|
||||||
url: "/ffantasy/weapons.html",
|
url: "weapons.html",
|
||||||
tables: ["swords", "axes", "daggers", "staffs", "hammers", "nunchucks", "miscellaneous"]
|
tables: ["swords", "axes", "daggers", "staffs", "hammers", "nunchucks", "miscellaneous"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "/ffantasy/armor.html",
|
url: "armor.html",
|
||||||
tables: ["armor", "braceletes", "shields", "helmets", "gauntlets"]
|
tables: ["armor", "braceletes", "shields", "helmets", "gauntlets"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "/ffantasy/blackmagic.html",
|
url: "blackmagic.html",
|
||||||
tables: ["black_magic"]
|
tables: ["black_magic"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "/ffantasy/whitemagic.html",
|
url: "whitemagic.html",
|
||||||
tables: ["white_magic"]
|
tables: ["white_magic"]
|
||||||
}
|
}],
|
||||||
]
|
dw3: [
|
||||||
|
{
|
||||||
const pages = ff1pages
|
url: "armor.html",
|
||||||
for (const index in pages)
|
tables: ["armor", "shields", "helmets"]
|
||||||
{
|
},
|
||||||
const page = pages[index]
|
{
|
||||||
equipment = {...equipment, ...(await getpage(page.url, page.tables))}
|
url: "weapons.html",
|
||||||
|
tables: ["weapons"]
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
||||||
output(equipment)
|
getdata("ffantasy")
|
||||||
|
.then(format)
|
||||||
|
.then(output)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue