Playing around with JQuery Brackets plugin
Created
March 20, 2020 06:07
-
-
Save weisk/5b76e6a1d92b3104e65b79061c5b96fa to your computer and use it in GitHub Desktop.
JQuery Brackets - Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
<span id="matchCallback"></span> | |
<div id="matches"> | |
<div class="demo"> | |
</div> | |
</div> | |
--> | |
<div id="matchesblank"> | |
<div class="demo"> | |
</div> | |
</div> | |
1 - e.g if 16 player tournament status[open] | |
2 - user should be able to put name forward for tournament (in beginning maybe first 16 should be granted entry?) | |
3 - should seeding be implement?(maybe future) | |
3 - players(16) should now be selected from pool of players that have put name forward | |
status [progress] depepnding on (2) | |
4 - tournament schedule and matches created | |
5 - user enters scores after each match | |
tournament complete, display winner tournament status[closed] | |
DATABASE | |
Tournament TABLE | |
-ID (primary key) | |
-DATE | |
-Status | |
-Article ID? | |
-No Players | |
Players TABLE | |
-playertblID (primary key) | |
-playerid(id_user) | |
-ID(Tournament TABLE) | |
Matches TABLE | |
-ID(Tournament TABLE) | |
-tournament date/time | |
-round no | |
-round name | |
-scoreh | |
-scorea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var matchData = { | |
teams : [ | |
["Team 1", "Team 2"], | |
["Team 3", "Team 4"], | |
["Team 5", "Team 6"], | |
["Team 7", "Team 8"], | |
["Team 9", "Team 10"], | |
["Team 11", "Team 12"], | |
["Team 13", "Team 14"], | |
["Team 15", "Team 16"] | |
], | |
results : [ | |
//first round - last 16 | |
[ | |
[4,3,'Match 1'], | |
[1,4,'Match 2'], | |
[1,4,'Match 3'], | |
[1,4,'Match 4'], | |
[6,4,'Match 5'], | |
[1,4,'Match 6'], | |
[1,4,'Match 7'], | |
[1,4,'Match 8'] | |
], | |
//second round - Quarter Final | |
[ | |
[4,3,'Match 9'], | |
[1,4,'Match 10'], | |
[1,4,'Match 11'], | |
[1,4,'Match 12'] | |
], | |
//third round - Semi Final | |
[ | |
[4,3,'Match 13'], | |
[1,4,'Match 14'] | |
], | |
//fourth round - Final | |
[ | |
[], //winners | |
[1,4,'Match 16'] //third place | |
] | |
] | |
} | |
var matchBlankData = { | |
teams : [ | |
["Open Slot", "Open Slot"], | |
["Open Slot", "Team 4"], | |
["Team 5", "Team 6"], | |
["Team 7", "Team 8"], | |
["Team 9", "Team 10"], | |
["Team 11", "Team 12"], | |
["Team 13", "Team 14"], | |
["Team 15", "Team 16"] | |
], | |
results : [ | |
//first round - last 16 | |
[ | |
[4,3,'Match 1'], | |
[1,4,'Match 2'], | |
[1,4,'Match 3'], | |
[1,4,'Match 4'], | |
[6,4,'Match 5'], | |
[1,4,'Match 6'], | |
[1,4,'Match 7'], | |
[1,4,'Match 8'] | |
], | |
//second round - Quarter Final | |
[ | |
[4,3,'Match 9'], | |
[1,4,'Match 10'], | |
[1,4,'Match 11'], | |
[1,4,'Match 12'] | |
], | |
//third round - Semi Final | |
[ | |
[4,3,'Match 13'], | |
[1,4,'Match 14'] | |
], | |
//fourth round - Final | |
[ | |
[], //winners | |
[1,4,'Match 16'] //third place | |
] | |
] | |
} | |
function onclick(data) { | |
$('#matchCallback').text("onclick(data: '" + data + "')") | |
} | |
function onhover(data, hover) { | |
$('#matchCallback').text("onhover(data: '" + data + "', hover: " + hover + ")") | |
} | |
$(function() { | |
$('#matches .demo').bracket({ | |
init: matchData, | |
onMatchClick: onclick, | |
onMatchHover: onhover | |
}) | |
$('#matchesblank .demo').bracket({ | |
init: matchBlankData, | |
onMatchClick: onclick, | |
onMatchHover: onhover | |
}) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src="https://www.aropupu.fi/bracket/jquery-bracket/dist/jquery.bracket.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://www.aropupu.fi/bracket/jquery-bracket/dist/jquery.bracket.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment