[enhancement] [Request] Split Brackets
#55
Interested in doing split brackets with the same number of teams on each side.
I'm interested in this also do you have any update on this or suggestions on how to make it work?
+1 for this feature! march madness is coming up.
I just don't know how to get the css setup right the functionality for 64 teams works but it should split and start with 32 teams on each side.
might I suggest instead of setting up the bracket like
.bracket({ init: [leftBracket, 'lr'], init: [rightBracket, 'rl'] }) from #55
that we do something like
.bracket({ init: [fullBracket, 'split'] })
The API should be something that clearly shows the intention. I would perhaps go with something like this:
$("#selector").bracket({
init: bracketData,
layout: "split"
});
There is also already the dir parameter that is used to adjust the direction of the bracket. Another option would be to expand it with split or something more descriptive (regarding direction). It currently supports lr and rl.
After looking at the code it seems like there will need to be a bunch of functional changes and not just a new set of css stylings.
Correct me if i'm wrong?
Yea...
I tried my hand at starting the refactor but quickly stopped. I stopped because I was only thinking through the one use case for March Madness in particular but it seemed there should be more initializing data passed in like "region list" and the like to help determine the bracket output and have the appropriate regions grouped, etc.
Any update on this or when it might be looked at?
Any suggestions on modifications to get split brackets to work? I'm not good with styling.
I'm not good with styling
I think it'll require considerable code modifications too.
As a hack, you could maybe combine two bracket instances and fetch the final teams from each side for the grand final.