From 8c0f7ebd0fb1d00eccc16c283dcab498a1b58d5b Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sat, 22 Jun 2024 16:56:04 -0400 Subject: [PATCH] test --- app.js | 26 +++++++++++++++++++------- index.html | 6 ++++-- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/app.js b/app.js index d479cad..b7e1383 100644 --- a/app.js +++ b/app.js @@ -61,18 +61,30 @@ function updatePeerCount() { } } -async function processGuild(guildData) { - const parsedData = JSON.parse(guildData); - config.guilds[parsedData.guildTopic] = { - alias: parsedData.guildAlias, - rooms: parsedData.rooms, - owner: parsedData.owner +async function processGuild(guildTopic) { + // Simulate fetching guild data for the given topic + const guildData = { + guildTopic, + guildAlias: "Sample Guild", + rooms: [ + { topic: "room1", alias: "Room 1" }, + { topic: "room2", alias: "Room 2" } + ], + owner: config.userName + }; + + config.guilds[guildData.guildTopic] = { + alias: guildData.guildAlias, + rooms: guildData.rooms, + owner: guildData.owner }; writeConfigToFile("./config.json"); renderGuildList(); - await joinGuild(parsedData.guildTopic); + await joinGuild(guildData.guildTopic); } +export { processGuild }; + async function joinGuild(guildTopic) { const guild = config.guilds[guildTopic]; if (guild) { diff --git a/index.html b/index.html index 8f539cb..51f79ce 100644 --- a/index.html +++ b/index.html @@ -103,7 +103,9 @@ - - \ No newline at end of file +