{"mappings":"A,M,qC,C,I,E,W,E,C,E,E,C,E,E,E,iB,A,O,I,A,C,E,S,C,E,G,K,E,O,C,C,E,C,O,C,G,K,E,C,I,E,C,C,E,A,Q,C,C,E,C,I,E,C,G,E,Q,C,C,E,O,C,C,E,C,E,E,I,C,E,O,C,E,E,O,E,E,O,A,C,I,E,A,M,uB,E,I,O,E,I,C,mB,C,C,E,Q,C,S,C,C,C,E,C,C,E,C,C,E,E,iB,C,G,E,Q,C,I,E,E,SCEA,SAAS,gBAAgB,CAAC,mBAAoB,UAC5C,GAAI,CAEF,IAAM,EAAa,MAAM,AAAA,CAAA,EAAA,EAAA,cAAa,AAAb,EAAe,WAAW,GACnD,QAAQ,GAAG,CAAC,eAAgB,GAC5B,IAAI,EAAW,OAEf,GAAI,EAAW,eAAe,CAC5B,GAAI,CAEF,SAAS,cAAc,CAAC,iBAAiB,SAAS,CAAC,MAAM,CAAC,UAC1D,IAAM,EAAqB,MAAM,AAAA,CAAA,EAAA,EAAA,cAAa,AAAb,EAAe,mBAAmB,GACnE,QAAQ,GAAG,CAAC,uBAAwB,GAEhC,EAAmB,OAAO,EAE5B,CAAA,EAAW,EAAmB,UAAU,CAAC,kBAAkB,EACjD,EAAmB,UAAU,CAAC,IAAI,EAClC,EAAmB,UAAU,CAAC,KAAK,EAAI,MAFjD,CAIJ,CAAE,MAAO,EAAO,CACd,QAAQ,KAAK,CAAC,kCAAmC,EACnD,MAGA,SAAS,cAAc,CAAC,iBAAiB,SAAS,CAAC,GAAG,CAAC,UAGzD,GAAI,CAEF,SAAS,cAAc,CAAC,YAAY,WAAW,CAAG,GAAY,QAI9D,AADmB,SAAS,cAAc,CAAC,eAChC,WAAW,CAAG,EAAS,MAAM,CAAC,GAAG,WAAW,GAGvD,SAAS,cAAc,CAAC,iBAAiB,gBAAgB,CAAC,QAAS,UACjE,MAAM,AAAA,CAAA,EAAA,EAAA,cAAa,AAAb,EAAe,OAAO,GAC5B,OAAO,QAAQ,CAAC,IAAI,CAAG,YACzB,GACA,QAAQ,GAAG,CAAC,WAGZ,SAAS,cAAc,CAAC,kBAAkB,gBAAgB,CAAC,QAAS,KAClE,QAAQ,GAAG,CAAC,0BACR,EAAW,eAAe,EAC5B,QAAQ,GAAG,CAAC,iBACZ,OAAO,QAAQ,CAAC,IAAI,CAAG,kBAEvB,OAAO,QAAQ,CAAC,IAAI,CAAG,WAE3B,EAgBF,CAAE,MAAO,EAAO,CACd,QAAQ,KAAK,CAAC,2BAA4B,EAG5C,CACF,CAAE,MAAO,EAAO,CACd,QAAQ,KAAK,CAAC,2BAA4B,EAC5C,CACF","sources":["","games.js"],"sourcesContent":["import \"./auth.856e296b.js\";\n\n\n var $parcel$global = globalThis;\n \nvar $parcel$modules = {};\nvar $parcel$inits = {};\n\nvar parcelRequire = $parcel$global[\"parcelRequireeac0\"];\n\nif (parcelRequire == null) {\n parcelRequire = function(id) {\n if (id in $parcel$modules) {\n return $parcel$modules[id].exports;\n }\n if (id in $parcel$inits) {\n var init = $parcel$inits[id];\n delete $parcel$inits[id];\n var module = {id: id, exports: {}};\n $parcel$modules[id] = module;\n init.call(module.exports, module, module.exports);\n return module.exports;\n }\n var err = new Error(\"Cannot find module '\" + id + \"'\");\n err.code = 'MODULE_NOT_FOUND';\n throw err;\n };\n\n parcelRequire.register = function register(id, init) {\n $parcel$inits[id] = init;\n };\n\n $parcel$global[\"parcelRequireeac0\"] = parcelRequire;\n}\n\nvar parcelRegister = parcelRequire.register;\n\nvar $jUUxy = parcelRequire(\"jUUxy\");\ndocument.addEventListener(\"DOMContentLoaded\", async ()=>{\n try {\n // Check if user is authenticated\n const authStatus = await (0, $jUUxy.Authentication).checkStatus();\n console.log(\"Auth Status:\", authStatus); // Debug log\n let username = \"User\";\n if (authStatus.isAuthenticated) try {\n // Get username from user attributes in Cognito\n document.getElementById(\"logout-button\").classList.remove(\"hidden\");\n const attributesResponse = await (0, $jUUxy.Authentication).fetchUserAttributes();\n console.log(\"Attributes Response:\", attributesResponse); // Debug log\n if (attributesResponse.success) // Get preferred_username or name attribute, fallback to email if not available\n username = attributesResponse.attributes.preferred_username || attributesResponse.attributes.name || attributesResponse.attributes.email || \"User\";\n } catch (error) {\n console.error(\"Error fetching user attributes:\", error);\n }\n else document.getElementById(\"logout-button\").classList.add(\"hidden\");\n try {\n // Display username\n document.getElementById(\"username\").textContent = username || \"Guest\";\n // Set user avatar with first letter of username\n const userAvatar = document.getElementById(\"user-avatar\");\n userAvatar.textContent = username.charAt(0).toUpperCase();\n // Handle logout\n document.getElementById(\"logout-button\").addEventListener(\"click\", async ()=>{\n await (0, $jUUxy.Authentication).signOut();\n window.location.href = \"index.html\";\n });\n console.log(\"Entered\");\n // Handle Minecraft card click\n document.getElementById(\"minecraft-card\").addEventListener(\"click\", ()=>{\n console.log(\"Minecraft card clicked\");\n if (authStatus.isAuthenticated) {\n console.log(\"Authenticated\");\n window.location.href = \"dashboard.html\";\n } else window.location.href = \"auth.html\";\n });\n /*\r\n // Display server count based on cookie\r\n const serverStatus = CookieUtils.getCookie(\"serverStatus\");\r\n const serverCountElement = document.getElementById(\"minecraft-server-count\");\r\n \r\n if (serverStatus && serverStatus !== \"offline\") {\r\n serverCountElement.textContent = \"1 server\";\r\n } else {\r\n serverCountElement.textContent = \"0 servers\";\r\n }\r\n } catch (error) {\r\n console.error(\"Error loading user data:\", error);\r\n // Redirect to login on error\r\n window.location.href = \"auth.html\";\r\n */ } catch (error) {\n console.error(\"Error loading user data:\", error);\n // Redirect to login on error\n // window.location.href = \"auth.html\"; // Uncomment if you want to redirect\n }\n } catch (error) {\n console.error(\"Error loading user data:\", error);\n }\n});\n\n\n//# sourceMappingURL=games.e17ace8a.js.map\n","import { Authentication } from './auth.js';\r\n\r\ndocument.addEventListener(\"DOMContentLoaded\", async () => {\r\n try {\r\n // Check if user is authenticated\r\n const authStatus = await Authentication.checkStatus();\r\n console.log(\"Auth Status:\", authStatus); // Debug log\r\n let username = \"User\";\r\n\r\n if (authStatus.isAuthenticated) {\r\n try {\r\n // Get username from user attributes in Cognito\r\n document.getElementById(\"logout-button\").classList.remove(\"hidden\");\r\n const attributesResponse = await Authentication.fetchUserAttributes();\r\n console.log(\"Attributes Response:\", attributesResponse); // Debug log\r\n \r\n if (attributesResponse.success) {\r\n // Get preferred_username or name attribute, fallback to email if not available\r\n username = attributesResponse.attributes.preferred_username || \r\n attributesResponse.attributes.name || \r\n attributesResponse.attributes.email || \"User\";\r\n }\r\n } catch (error) {\r\n console.error(\"Error fetching user attributes:\", error);\r\n }\r\n }\r\n else {\r\n document.getElementById(\"logout-button\").classList.add(\"hidden\");\r\n }\r\n\r\n try {\r\n // Display username\r\n document.getElementById(\"username\").textContent = username || \"Guest\";\r\n \r\n // Set user avatar with first letter of username\r\n const userAvatar = document.getElementById(\"user-avatar\");\r\n userAvatar.textContent = username.charAt(0).toUpperCase();\r\n \r\n // Handle logout\r\n document.getElementById(\"logout-button\").addEventListener(\"click\", async () => {\r\n await Authentication.signOut();\r\n window.location.href = \"index.html\";\r\n });\r\n console.log(\"Entered\");\r\n\r\n // Handle Minecraft card click\r\n document.getElementById(\"minecraft-card\").addEventListener(\"click\", () => {\r\n console.log(\"Minecraft card clicked\");\r\n if (authStatus.isAuthenticated) {\r\n console.log(\"Authenticated\");\r\n window.location.href = \"dashboard.html\";\r\n } else {\r\n window.location.href = \"auth.html\";\r\n }\r\n });\r\n /*\r\n // Display server count based on cookie\r\n const serverStatus = CookieUtils.getCookie(\"serverStatus\");\r\n const serverCountElement = document.getElementById(\"minecraft-server-count\");\r\n \r\n if (serverStatus && serverStatus !== \"offline\") {\r\n serverCountElement.textContent = \"1 server\";\r\n } else {\r\n serverCountElement.textContent = \"0 servers\";\r\n }\r\n } catch (error) {\r\n console.error(\"Error loading user data:\", error);\r\n // Redirect to login on error\r\n window.location.href = \"auth.html\";\r\n */\r\n } catch (error) {\r\n console.error(\"Error loading user data:\", error);\r\n // Redirect to login on error\r\n // window.location.href = \"auth.html\"; // Uncomment if you want to redirect\r\n }\r\n } catch (error) {\r\n console.error(\"Error loading user data:\", error);\r\n }\r\n});"],"names":["$parcel$global","globalThis","$parcel$modules","$parcel$inits","parcelRequire","id","exports","init","module","call","err","Error","code","register","$jUUxy","document","addEventListener","authStatus","Authentication","checkStatus","console","log","username","isAuthenticated","getElementById","classList","remove","attributesResponse","fetchUserAttributes","success","attributes","preferred_username","name","email","error","add","textContent","userAvatar","charAt","toUpperCase","signOut","window","location","href"],"version":3,"file":"games.e17ace8a.js.map"}