combine data from previous season
[sc2-widget] / widget.html
index 12d83e6e653f8f0307edfa3d93f658fcc5e3f27c..26bdd168836cf38547ac14f277a68e7bf195658e 100644 (file)
@@ -12,7 +12,8 @@
 <body>
 <p id="clan">No clan data</p>
 <script>
-       fetch('/schtarr/inno.json')
+       let request = this.location.pathname.split('/')
+       fetch('/schtarr/data/' + request.pop() + '.json')
        .then(res => {
                if (res.status != 200) {
                        console.log('got %o', res)
@@ -23,7 +24,7 @@
        .then(clan => {
                let tiernum = (rank) => rank <= 8 ? 1 : rank <= 25 ? 2 : rank <= 50 ? 3 : 4;
                document.getElementById('clan').outerHTML = `
-                       <h1>${clan.tag}</h1>
+                       <h1>${clan.tag || clan.members[0].name}</h1>
                        <ul class=ladders>
                        ${clan.ladders.map(ladder => `
                                <li class="rank ${ladder.league} tier${tiernum(ladder.rank)}"