mirror of
https://github.com/one-among-us/data.git
synced 2024-11-13 06:44:51 +08:00
[+] birthday list
This commit is contained in:
parent
ff30ff538a
commit
803574e899
@ -48,6 +48,7 @@ function buildPeopleInfoAndList() {
|
|||||||
// Compiled meta of list of people for the front page (contains keys id, name, profileUrl)
|
// Compiled meta of list of people for the front page (contains keys id, name, profileUrl)
|
||||||
const peopleList: PeopleMeta[] = [];
|
const peopleList: PeopleMeta[] = [];
|
||||||
const peopleHomeList: PeopleMeta[] = [];
|
const peopleHomeList: PeopleMeta[] = [];
|
||||||
|
const birthdayList = [] as [string, string][]
|
||||||
|
|
||||||
// For each person
|
// For each person
|
||||||
for (const { dirname, srcPath, distPath } of people) {
|
for (const { dirname, srcPath, distPath } of people) {
|
||||||
@ -78,6 +79,10 @@ function buildPeopleInfoAndList() {
|
|||||||
catch (e) { console.log(`Unable to calculate age for ${dirname}`) }
|
catch (e) { console.log(`Unable to calculate age for ${dirname}`) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (info.id && info.info && info.info.born) {
|
||||||
|
birthdayList.push([info.id, info.info.born])
|
||||||
|
}
|
||||||
|
|
||||||
// Convert info dict to [[key, value], ...]
|
// Convert info dict to [[key, value], ...]
|
||||||
// And add info k-v pairs from markdown to the info object in json5
|
// And add info k-v pairs from markdown to the info object in json5
|
||||||
info.info = [...Object.entries(mdMeta.info ?? {}), ...Object.entries(info.info ?? {})]
|
info.info = [...Object.entries(mdMeta.info ?? {}), ...Object.entries(info.info ?? {})]
|
||||||
@ -125,6 +130,7 @@ function buildPeopleInfoAndList() {
|
|||||||
// Write people-list.json
|
// Write people-list.json
|
||||||
fs.writeFileSync(path.join(projectRoot, DIST_DIR, `people-list${lang}.json`), JSON.stringify(peopleList));
|
fs.writeFileSync(path.join(projectRoot, DIST_DIR, `people-list${lang}.json`), JSON.stringify(peopleList));
|
||||||
fs.writeFileSync(path.join(projectRoot, DIST_DIR, `people-home-list${lang}.json`), JSON.stringify(peopleHomeList));
|
fs.writeFileSync(path.join(projectRoot, DIST_DIR, `people-home-list${lang}.json`), JSON.stringify(peopleHomeList));
|
||||||
|
fs.writeFileSync(path.join(projectRoot, DIST_DIR, 'birthday-list.json'), JSON.stringify(birthdayList));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user