html headers before wrapper errors
[sc2-widget] / widget.html
index 387d3db7e16a55bf5b5be5cac63c58b1babf58d5..d6f5f8d66ddeef85b5e32b721724e4873d38e5b2 100644 (file)
 <body>
 <p id="clan">No clan data</p>
 <script>
-       fetch('/schtarr/inno.json')
-       .then(res => res.json())
+       let request = this.location.pathname.split('/')
+       request.splice(2, 1) // strip page name
+       fetch(request.join('/') + '.json')
+       .then(res => {
+               if (res.status != 200) {
+                       console.log('got %o', res)
+                       throw `status ${res.status}`
+               }
+               return res.json()
+       })
        .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)}"
@@ -54,7 +62,7 @@
                        }
                })
        })
-       .catch(error => console.log(error))
+       .catch(msg => console.error('include failure:', msg))
 </script>
 </body>