diff --git a/public/css/dashboard.css b/public/css/dashboard.css index 9d4d53d..efef086 100644 --- a/public/css/dashboard.css +++ b/public/css/dashboard.css @@ -388,6 +388,10 @@ body { { cursor:pointer; } +#Strikes +{ + cursor:pointer; +} .rules { border: 2px solid #020608; diff --git a/public/css/strikesdashboard.css b/public/css/strikesdashboard.css new file mode 100644 index 0000000..468e84c --- /dev/null +++ b/public/css/strikesdashboard.css @@ -0,0 +1,126 @@ +@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,900&display=swap'); +:root +{ + --card-color: rgb(23, 23, 23); +} +body +{ + padding: 0; + margin: 0; + width: 100%; + justify-content: center; + background-color: #071c24; +} + +#userWrapper +{ + display: flex; + flex-wrap: wrap; + gap: 1em; + justify-content: center; + margin-top:3vh; + margin-left: 10%; + text-align: center; + align-items: center; + height: 15vh; + width: 80%; + background-color: var(--card-color); + border-radius: 10px; + border: 1px solid #fffff042; +} +#avatar +{ + flex-direction: column; + background-color: ivory; + height: 10vh; + width: 10vh; + background-size: 10vh 10vh; + border-radius: 10px; +} +.userNameWrapper +{ + display: flex; + flex-direction: column; + min-width: 20vh; + max-width: 70%; + height: 15vh; + justify-content: center; + text-align: center; +} +#userName +{ + margin: 0; + position: relative; + + font-size: 2.5em; + font-family: 'Lato'; + font-weight: bolder; + white-space: pre-wrap; + color: rgb(15, 98, 131); +} + + +#maindisplay +{ + width: 90%; + margin-top: 2vh; + margin-left: 5%; + color:white; + display: flex; + justify-content: center; + align-items: center; + text-align: center; + flex-wrap: wrap; +} +.strike +{ + width: 100%; + color: white; + display: flex; + justify-content: space-between; + background-color: var(--card-color); + border-radius: 10px; + border: 1px solid #fffff042; +} +.strike-info > h3 > span> img +{ + border: none; + border-radius: 50%; + width: 1em; + height: 1em; + transform: translateY(0.25em); +} +.strike-info > h3 > span +{ + background-color: rgb(44, 151, 238); + height: 5em; + border: none; + border-radius: 5px; + padding-left: 0.2em; + padding-right: 0.2em; + padding-bottom: 0.2em; +} +.strike-info > h3 > span.striked +{ + background-color: rgb(58, 23, 23); +} +.strike-info { + flex: 4; +} + +.actions { + flex:2; + display: flex; + flex-direction: column; + justify-content: space-evenly; + color:white; + cursor: pointer; + margin-right: 1em; + +} +.actions >div:hover +{ + background-color: darkslategray; + border:none; + border-radius: 5px; +} \ No newline at end of file diff --git a/public/js/dashboard.js b/public/js/dashboard.js index fe3ca3b..f38ad37 100644 --- a/public/js/dashboard.js +++ b/public/js/dashboard.js @@ -45,6 +45,7 @@ function updateGuildData(accessToken, tokenType) if(guilds.Error) return console.log(guilds.Error) guildsCache = new Map(); guilds.forEach(guild => { + console.log(guild) guildsCache.set(guild.id, guild) }); makeCards(guilds); @@ -86,7 +87,6 @@ function handleClose(element) } async function requestChange() { - console.log('here') return await fetch(`${window.location.origin}/api/change`, { method: "POST", @@ -563,4 +563,9 @@ async function channelCheck(yt) return error; }); return res +} +function handleStrikesDashboard(element) +{ + const guildID = element.parentNode.getElementsByTagName('h3')[0].id; + window.open(`${window.location.origin}/strikes/${guildID}/${userID}`, '_blank'); } \ No newline at end of file diff --git a/routes/routes.js b/routes/routes.js index 2704eea..fca7469 100644 --- a/routes/routes.js +++ b/routes/routes.js @@ -23,6 +23,11 @@ module.exports = (io, bot)=> router.route('/dashboard').get(dash.get(io)) .post(dash.post(io)); router.route('/getMessage').get(api.getMessage(bot)); + //! Using ? on a param makes it optional + router.route('/strikes/:id/:userid/:strikeid?').get(api.strikeDashboard(bot)) + .post(api.getStrikes(bot)) + .put(api.updateStrikes(bot)) + .delete(api.deleteStrikes(bot)); router.route('/dc').get(homeController.dc); router.route('/addtodiscord').get(homeController.addtodiscord) return router; diff --git a/views/strikelist.ejs b/views/strikelist.ejs new file mode 100644 index 0000000..d1c1c83 --- /dev/null +++ b/views/strikelist.ejs @@ -0,0 +1,36 @@ +<% strikes.forEach(strike=>{%> +
<%= guild.name%>
+