diff --git a/models/league.js b/models/league.js deleted file mode 100644 index 8b3228a..0000000 --- a/models/league.js +++ /dev/null @@ -1,23 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; - - -let leagueM = -new Schema( - { - Name: {type: String, required: true, max: 20, unique:true}, - Players: {type: Array, required: true, max: 10}, - Games:{type: Array, required:true}, - Owner:{type:String, required:true} - } - ); - - - - -const League = module.exports = mongoose.model('leagues',leagueM); -module.exports.get = (callback, limit)=> -{ - League.find(callback).limit(limit); -} - \ No newline at end of file diff --git a/models/leagueGame.js b/models/leagueGame.js deleted file mode 100644 index 6a4506b..0000000 --- a/models/leagueGame.js +++ /dev/null @@ -1,56 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; - - -let leagueGameM = -new Schema( - { - PA:{type:Object, required:true}, - PB:{type:Object, required:true}, - Winner:{type:String, required:true}, - WinCondition:{type:String, required:true}, - Played:{type:Boolean, required:true}, - PlayedTimeStamp:{type:String, required:true} - } - ); - - - - -const leagueGame = module.exports = mongoose.model('leagueGames', leagueGameM); -module.exports.get = (callback, limit)=> -{ - leagueGame.find(callback).limit(limit); -} - /** - * - result:{ - winCondition:'string' - winner:string - }, - gameData: - { - PlayerA: - { - championName:PA.championName, - items:PA.items, - level:PA.level, - runes:PA.runes, - skin:PA.skinID, - skinName:PA.skinName, - summs:PA.summonerSpells - }, - PlayerB: - { - championName:PB.championName, - items:PB.items, - level:PB.level, - runes:PB.runes, - skin:PB.skinID, - skinName:PB.skinName, - summs:PB.summonerSpells - }, - gameTime:data.gameData.gameTime - } - - */ \ No newline at end of file diff --git a/public/css/league.css b/public/css/league.css deleted file mode 100644 index d033dde..0000000 --- a/public/css/league.css +++ /dev/null @@ -1,227 +0,0 @@ -body -{ - background-color: #071c24; - position: absolute; - margin: 0; - width: 100%; - height: 100%; - font-family: 'Eczar', serif; - font-weight: bold; -} - -/* width */ -::-webkit-scrollbar { - width: 10px; - } - - /* Track */ - ::-webkit-scrollbar-track { - background: #020a0e91; - margin-top: 3em; - margin-bottom: 3em; - border-radius: 30px; - } - - /* Handle */ - ::-webkit-scrollbar-thumb { - background: #076969; - border-radius: 30px; - } - - /* Handle on hover */ - ::-webkit-scrollbar-thumb:hover { - background: #064e4e; - } - - -#TableWrapper -{ - background-color:#758186a9; - width: 40%; - height:75%; - position:relative; - left:5%; - top:25%; - border:0 solid transparent; - border-radius:25px; - overflow-y:scroll; -} - -#LeagueTable -{ - width:100%; - height:100%; - margin:0; - padding:0; - border-collapse: collapse; - -} -#LeagueHeader -{ - width:70%; -} -th -{ - height:2em; - font-size:2em; - border-bottom:1px solid black; - -} -td -{ - font-size:1.3em; - text-align:center; -} -.league -{ - cursor:pointer; -} - -#span -{ - color:#9fc3c3; - font-size: 2em; - position:relative; - top:calc(100% - 1.4em); -} - -.hidden -{ - display:none; -} -.sideWrapper -{ - - width:40%; - height:75%; - position:absolute; - top:25%; - right:5%; -} -.button -{ - width:8em; - height:5%; - background-color:#758186a9; - background-position:10%; - margin:0; - position:relative; - top:0; - left:0; - float:left; - border-radius:25px 25px 0px 0px; - text-align:center; - cursor:pointer; -} -.scheduleBt -{ - margin-left:-5%; -} -.button > span -{ - position: relative; - top:calc(50% - 0.5em); -} -.active -{ - background-color:#385663; - display: block !important; - z-index:1; -} -.bg_div -{ - /* background-color:#758186a9; */ - border-radius:0px 25px 25px 25px; - position:relative; - top:10%; - left:0; - width:100%; - height:90%; -} -.results -{ - background-color:#385663; - height:105.5%; - width:100%; - position:relative; - top:-5.7%; - left:0; - border-radius:0px 25px 25px 25px; - font-weight:bold; - text-align:left; - display: none; -} -.schedule -{ - background-color:#385663; - height:105.5%; - width:100%; - position:relative; - top:-5.7%; - left:0; - border-radius:2px 25px 25px 25px; - font-weight:bold; - text-align:left; - display: none; -} -.schedule .matchPlayers -{ - cursor:pointer; -} -.winner -{ - color:green; -} -.tab -{ - font-size:1.5em; - font-family: 'Eczar', serif; - color:#9fc3c3; -} -#day -{ - color:#9fc3c3; - margin-top:0px; - width:90%; - position:relative; - left:10px; - text-align:left; - border-bottom:2px solid #9fc3c3; -} -#dayp -{ - text-align: left; -} -#day > p -{ - position:relative; - margin:0; - left:-28%; -} - -.match -{ - display:flex; - position:relative; - width:90%; - left:2%; - margin:0; - font-weight:bolder; - -} -.matchPlayers -{ - flex:1; - flex-direction: column; - justify-content: left; -} -.matchPlayers > p -{ - margin:0; - position:relative; - left:2.5%; -} -.matchResult -{ - width:15%; -} diff --git a/public/css/leaguelistener.css b/public/css/leaguelistener.css deleted file mode 100644 index d960fd1..0000000 --- a/public/css/leaguelistener.css +++ /dev/null @@ -1,152 +0,0 @@ -body -{ - text-align: center; - background-color: #071c24; -} -.wrapper -{ - position: absolute; - top:60vh; - left:calc(50% - 150px); -} -.bt -{ - position: absolute; - border-bottom: 100px solid #1e252a; - border-left: 50px solid transparent; - border-right: 50px solid transparent; - border-radius: 0% 0% 50% 50%; - height: 0; - cursor: pointer; - width: 200px; -} - -.base -{ - z-index: 1; -} -.border -{ - position: relative; - left:-5px; - top: -0.23em; - z-index: 0; - border-bottom: 108px solid #0F9C94; - border-left: 52px solid transparent; - border-right: 52px solid transparent; - border-radius: 0% 0% 50% 50%; - height: 0; - width: 206px; -} - -.border2 -{ - position: relative; - top:calc(-108px + -1em); - left:calc(-5px + -1em); - z-index: -1; - border-bottom: calc(108px + 1.5em) solid #081620; - border-left: 60px solid transparent; - border-right: 60px solid transparent; - border-radius: 0% 0% 50% 50%; - height: 0; - width: calc(206px + 1em); -} -.border3 -{ - position: relative; - top:calc(-216px + -2.8em); - left:calc(-5px + -1.35em); - z-index: -2; - border-bottom: calc(108px + 2em) solid #7A6B43; - border-left: 66px solid transparent; - border-right: 66px solid transparent; - border-radius: 0% 0% 50% 50%; - height: 0; - width: calc(206px + 1em); -} -.bt_text -{ - color: #9fc3c3; - position:relative; - font-family: 'Eczar', serif; - font-weight: bold; - text-transform: uppercase; - font-size: 3em; - top:0.4em; - left:0em; -} - -h1{ - margin-top: 27vh; - color: #9fc3c3; -} -h3 -{ - color: #9fc3c3; -} - -@keyframes spin3D { - from { - transform: rotate3d(.5,.5,.5, 360deg); - } - to{ - transform: rotate3d(0deg); - } -} -.active -{ - display:flex !important; -} -.spinner { - position: absolute; - top:38vh; - left:44.5vw; - display:none; - width: 200px; - height: 200px; - justify-content: center; - align-items: center; - background-color: transparent; -} -.leo-border-1 { - position: absolute; - width: 100px; - height: 100px; - padding: 3px; - display: flex; - justify-content: center; - align-items: center; - border-radius: 50%; - background: rgb(63,249,220); - background: linear-gradient(0deg, rgba(63,249,220,0.1) 33%, rgba(63,249,220,1) 100%); - animation: spin3D 1.8s linear 0s infinite; -} - -.leo-core-1 { - width: 100%; - height: 100%; - background-color: #37474faa; - border-radius: 50%; -} - -.leo-border-2 { - position: absolute; - width: 100px; - height: 100px; - padding: 3px; - display: flex; - justify-content: center; - align-items: center; - border-radius: 50%; - background: rgb(251, 91, 83); - background: linear-gradient(0deg, rgba(251, 91, 83, 0.1) 33%, rgba(251, 91, 83, 1) 100%); - animation: spin3D 2.2s linear 0s infinite; -} - -.leo-core-2 { - width: 100%; - height: 100%; - background-color: #1d2630aa; - border-radius: 50%; -} diff --git a/public/css/leagues.css b/public/css/leagues.css deleted file mode 100644 index ae06575..0000000 --- a/public/css/leagues.css +++ /dev/null @@ -1,97 +0,0 @@ -body -{ - text-align: center; - background-color: #071c24; - position: absolute; - margin: 0; - width: 100%; - height: 100%; - align-content:center; - font-family: 'Eczar', serif; - font-weight: bold; -} - -/* width */ -::-webkit-scrollbar { - width: 10px; - } - - /* Track */ - ::-webkit-scrollbar-track { - background: #020a0e91; - margin-top: 3em; - margin-bottom: 3em; - border-radius: 30px; - } - - /* Handle */ - ::-webkit-scrollbar-thumb { - background: #076969; - border-radius: 30px; - } - - /* Handle on hover */ - ::-webkit-scrollbar-thumb:hover { - background: #064e4e; - } - - -#TableWrapper -{ - background-color:#758186a9; - width: 50%; - height:50%; - position:relative; - left:25%; - top:25%; - border:0 solid transparent; - border-radius:25px; - overflow-y:scroll; - -} -#LeaguesTable -{ - width:100%; - height:100%; - margin:0; - padding:0; - border-collapse: collapse; - -} -#LeagueHeader -{ - width:70%; -} -th -{ - height:2em; - font-size:2em; - border-bottom:1px solid black; - -} -td -{ - font-size:1.3em; -} -.league -{ - cursor:pointer; -} -.CreateButton -{ - background-color:#0F9C94; - height: 3em; - width:150px; - position:absolute; - top: 1em; - right: 2em; - border-radius:25px; - cursor:pointer; -} -span -{ - color:#9fc3c3; - font-size: 2em; - position:relative; - top:calc(100% - 1.4em); -} diff --git a/public/js/createleague.js b/public/js/createleague.js deleted file mode 100644 index 3d746bd..0000000 --- a/public/js/createleague.js +++ /dev/null @@ -1,55 +0,0 @@ -var User; - - -window.onload = async () => -{ - const fragment = new URLSearchParams(window.location.hash.slice(1)); - const [accessToken, tokenType] = [fragment.get('access_token'), fragment.get('token_type')]; - if (!accessToken) return window.location.href = '/'; - User = await getUser(accessToken, tokenType); -}; - -async function getUser(accessToken, tokenType) -{ - - return await fetch(`${window.location.origin}/api/getUser`, - { - method: "POST", - headers: { - authorization: `${tokenType} ${accessToken}`, - }, - }) - .then(result => result.json()) - .then(response => - { - return response - }) - .catch(console.error); -} -async function sendRequest(form) -{ - var leagueName = form.children[0].children[1].value; - var players = form.children[1].children[0].children[0].children[0].value - var owner= User.id - var payload = { - name:leagueName, - players, - owner - } - return await fetch(`${window.location.origin}/api/createLeague`, - { - method: "POST", - headers: { - 'Content-Type': 'application/json', - 'Accept': 'application/json', - }, - body:JSON.stringify(payload), - }) - .then(result => result.json()) - .then(response => - { - if(response.Error) alert(response.Error) - location.replace(location.origin+'/leagues?league='+response.data._id); - }) - .catch(console.error); -} \ No newline at end of file diff --git a/public/js/league.js b/public/js/league.js deleted file mode 100644 index cd9988e..0000000 --- a/public/js/league.js +++ /dev/null @@ -1,152 +0,0 @@ -var leagueID; -window.onload = async ()=> -{ - leagueID = location.href.split('/')[location.href.split('/').length-1] - var league = await fetch(`${window.location.origin}/api/getLeague`, - { - method: "GET", - headers:{ - leagueid:leagueID - } - }) - .then(res=>{return res.json()}) - .then(response=> - { - if(response.Error) alert(response.Error) - return response.data; - }) - .catch(console.error) - fillResults(league.Games); - fillSchedule(league.Games); - fillPlayers(league.Players) -} -function toggleTab (bt, oBt) -{ - bt.classList.contains('active')?bt.classList.remove('active'):bt.classList.add('active'); - oBt.classList.contains('active')?oBt.classList.remove('active'):oBt.classList.add('active'); - var results = document.getElementById('results'); - var schedule = document.getElementById('schedule'); - results.classList.contains('active')?results.classList.remove('active'):results.classList.add('active'); - schedule.classList.contains('active')?schedule.classList.remove('active'):schedule.classList.add('active'); -} - -async function fillResults(Games) -{ - //just so that I have 1 to work with - // Games[0].Played = true; - // Games[0].Winner = 'hc12'; - // Games[0].PA.Winner = true; - // Games[0].PA.Kills = 1; - // Games[0].PA.CS = 50; - // Games[0].PlayedTimeStamp = new Date(Date.now()).getDate()+'/' + (new Date(Date.now()).getMonth()+1); - // Games[0].WinCondition = "FirstBlood"; - // Games = Games.filter(x=>x.Played) - Games = Games.filter(x=>x.Played==true); - if(Games.length==0) return; - const filteredGames = Games.reduce((Game, obj) => - { - const { PlayedTimeStamp, ...rest } = obj; - Game[PlayedTimeStamp] = Game[PlayedTimeStamp] || []; - Game[PlayedTimeStamp].push(rest); - return Game; - }, {}); - var matches =[]; - var days=[]; - for await(var day of Object.keys(filteredGames)) - { - for await(var game of filteredGames[day]) - { - console.log(game) - matches.push(` -
- ${game.PA.Name} x ${game.PB.Name} -
-Day:${day?(Day.getDate()+'/' + (Day.getMonth()+1)):Object.keys(filteredGames).length}
-- ${game.PA.Name} x ${game.PB.Name} -
-League | -Players - |
---|