Nuxt/examples/vue-chartjs/pages/contributors.vue

51 lines
1.1 KiB
Vue
Raw Normal View History

2017-08-24 10:16:12 +00:00
<template>
<div class="doughnut-chart">
<DoughnutChart :data="doughnutChartData" :options="{ legend: { display: false }, maintainAspectRatio: false }" />
2017-08-24 10:16:12 +00:00
</div>
</template>
<script>
import DoughnutChart from '~/components/doughnut-chart'
import axios from 'axios'
function getRandomColor() {
const letters = '0123456789ABCDEF'
let color = '#'
for (let i = 0; i < 6; i++) {
2017-10-31 13:43:55 +00:00
color += letters[Math.floor(Math.random() * 16)]
2017-08-24 10:16:12 +00:00
}
2017-10-31 13:43:55 +00:00
return color
2017-08-24 10:16:12 +00:00
}
export default {
async asyncData({ env }) {
const res = await axios.get(`https://api.github.com/repos/nuxt/nuxt.js/stats/contributors?access_token=${env.githubToken}`)
return {
doughnutChartData: {
labels: res.data.map(stat => stat.author.login),
2017-08-24 10:16:12 +00:00
datasets: [
{
label: 'Nuxt.js Contributors',
backgroundColor: res.data.map(getRandomColor),
data: res.data.map(() => 1)
2017-08-24 10:16:12 +00:00
}
]
}
}
},
components: {
DoughnutChart
}
}
</script>
<style scoped>
.doughnut-chart {
position: fixed;
left: 10%;
top: 10%;
width: 80%;
height: 80%;
}
</style>