about summary refs log tree commit diff
path: root/pages/punktacja.vue
blob: c263e5e26ab9d88e47c3ae8ca04be4c97e93c1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
  <div style="max-width: 900px">
    <h1>Punktacja</h1>
    <ranking-list v-if="scores" :scores="scores" />
    <p v-else>Loading...</p>
  </div>
</template>

<script>
import RankingList from '~/components/Ranking/RankingList'

const FAUNA_KEY = 'fnADeP_U0uACC4Hruw9JvjexNsvB-V-QjI3wr8yH'
const b64encodedSecret = Buffer.from(FAUNA_KEY + ':').toString('base64')
const query = `
{
    getPoints{data {points troop{name}}}
}`
const URL = 'https://graphql.fauna.com/graphql'
const FETCH_OPTIONS = {
  method: 'POST',
  headers: {
    Authorization: `Basic ${b64encodedSecret}`
  },
  body: JSON.stringify({ query })
}

export default {
  components: {
    RankingList
  },
  data() {
    return {
      scores: undefined
    }
  },
  mounted() {
    this.getScores()
  },
  methods: {
    async getScores() {
      const r = await fetch(URL, FETCH_OPTIONS)
      const { data } = await r.json()
      this.scores = data.getPoints.data.map(({ points, troop }) => ({
        troop: troop.name,
        points
      }))
    }
  }
}
</script>