X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FChallengeList.vue;h=a1c46cdc400da3d4fe42854048a8e9af664e2d7f;hb=4313762da3237b04f204e121a20cab3ba7bb5dd2;hp=8c1f2dd56c4e0beafc33ee2dc3edda9910c4adba;hpb=1c9826a545b4336ede227c132d7ccfdba70c4ec0;p=vchess.git diff --git a/client/src/components/ChallengeList.vue b/client/src/components/ChallengeList.vue index 8c1f2dd5..a1c46cdc 100644 --- a/client/src/components/ChallengeList.vue +++ b/client/src/components/ChallengeList.vue @@ -6,7 +6,7 @@ div th {{ st.tr["Variant"] }} th {{ st.tr["With"] }} th {{ st.tr["Cadence"] }} - th {{ st.tr["Random?"] }} + th {{ st.tr["Options"] }} tbody tr( v-for="c in sortedChallenges" @@ -16,7 +16,7 @@ div td {{ c.vname }} td {{ withWho(c) }} td {{ c.cadence }} - td(:class="getRandomnessClass(c)") + td(:class="getRandomnessClass(c)") {{ c.options.abridged || '' }} p(v-else) | {{ st.tr["No challenges found :( Click on 'New game'!"] }} @@ -33,7 +33,8 @@ export default { }, computed: { sortedChallenges: function() { - // Show in order: challenges I sent, challenges I received, other challenges + // Show in order: + // challenges I sent, challenges I received, other challenges let minAdded = Number.MAX_SAFE_INTEGER; let maxAdded = 0; let augmentedChalls = this.challenges.map(c => { @@ -47,7 +48,7 @@ export default { } if (c.added < minAdded) minAdded = c.added; if (c.added > maxAdded) maxAdded = c.added; - return Object.assign({}, c, { priority: priority }); + return Object.assign({ priority: priority }, c); }); const deltaAdded = maxAdded - minAdded; return augmentedChalls.sort((c1, c2) => { @@ -61,10 +62,14 @@ export default { return c.to || this.st.tr["Any player"]; return c.from.name || "@nonymous"; }, + // TODO: duplicated from Hall getRandomnessClass: function(c) { - return { - ["random-" + c.randomness]: true - }; + const opts = c.options; + if (opts.randomness === undefined && opts.random === undefined) + return {}; + if (opts.randomness !== undefined) + return { ["random-" + opts.randomness]: true }; + return { ["random-" + (opts.random ? 2 : 0)]: true }; } } }; @@ -83,9 +88,9 @@ tr.toyou > td tr > td:last-child &.random-0 - background-color: #FF5733 + background-color: #FEAF9E &.random-1 - background-color: #2B63B4 + background-color: #9EB2FE &.random-2 - background-color: #33B42B + background-color: #A5FE9E