import { API_ROOT } from "./global.js" const {team: TEAM, username: USERNAME} = getUserInfo() async function increment() { const response = await fetch(`${API_ROOT}/increment/${TEAM}/${USERNAME}`, {"method": "POST"}) const {points} = await response.json() return points } function getUserInfo() { const urlParams = new URLSearchParams(window.location.search); return {"team": urlParams.get("team"), "username": urlParams.get("username")} } async function getUserPoints() { const response = await fetch(`${API_ROOT}/points/${TEAM}/${USERNAME}`) const {points} = await response.json() return points } document.querySelector("#increment").addEventListener("click", increment) document.querySelector(".username")