Adding more sections to the gear list

Also changing over from a root level object to a root level list for `/gear/gear.json`
This commit is contained in:
April Eaton 2025-12-17 13:22:08 +01:00
parent 4940c3703f
commit 5c4d6c88ae
2 changed files with 31 additions and 5 deletions

View file

@ -1,5 +1,5 @@
[
{ {
"bondage": {
"name": "Bondage", "name": "Bondage",
"id": "bondage", "id": "bondage",
"values": [ "values": [
@ -14,5 +14,31 @@
"desc": "Lots of 'em" "desc": "Lots of 'em"
} }
] ]
},
{
"name": "Clothes",
"id": "clothes",
"values": []
},
{
"name": "Gags",
"id": "gags",
"values": []
},
{
"name": "Sensory Deprevation",
"id": "sensory-deprevation",
"values": []
},
{
"name": "Food Play",
"id": "food-play",
"values": [
{
"name": "Pet Bowl",
"id": "pet-bowl",
"desc": "A small dog bowl, ideal for kibble or other mostly solid foods"
} }
]
} }
]

View file

@ -6,7 +6,7 @@
* *
* @typedef {{name: string, id: string, values: GearListItem[]}} GearListSection * @typedef {{name: string, id: string, values: GearListItem[]}} GearListSection
* *
* @typedef {{bondage: GearListSection}} GearList * @typedef {GearListSection[]} GearList
*/ */
/** /**
@ -87,7 +87,7 @@ async function generateGearListArticle(position) {
divider.setAttribute("class", "gl-divider"); divider.setAttribute("class", "gl-divider");
bondageItems.appendChild(divider); bondageItems.appendChild(divider);
for (const section of Object.values(list)) { for (const section of list) {
let listSection = buildSection(section); let listSection = buildSection(section);
bondageItems.appendChild(listSection); bondageItems.appendChild(listSection);