mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-03 10:57:18 +00:00
Add contributors page
This commit is contained in:
parent
e96ef9948e
commit
cfd8673a54
8
examples/vue-chartjs/components/doughnut-chart.js
Normal file
8
examples/vue-chartjs/components/doughnut-chart.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { Doughnut } from 'vue-chartjs'
|
||||||
|
|
||||||
|
export default Doughnut.extend({
|
||||||
|
props: ['data', 'options'],
|
||||||
|
mounted () {
|
||||||
|
this.renderChart(this.data, this.options)
|
||||||
|
}
|
||||||
|
})
|
36
examples/vue-chartjs/layouts/default.vue
Normal file
36
examples/vue-chartjs/layouts/default.vue
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<ul>
|
||||||
|
<li><nuxt-link to="/">Activity</nuxt-link></li>
|
||||||
|
<li><nuxt-link to="/contributors">Contributors</nuxt-link></li>
|
||||||
|
</ul>
|
||||||
|
<nuxt/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
ul li {
|
||||||
|
display: inline-block;
|
||||||
|
float: left;
|
||||||
|
border: 1px #ddd solid;
|
||||||
|
}
|
||||||
|
ul li a {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
color: #222;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
ul li a.nuxt-link-exact-active {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,5 +1,15 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
head: {
|
||||||
|
title: 'Nuxt.js + Vue-ChartJS',
|
||||||
|
meta: [
|
||||||
|
{ charset: 'utf-8' },
|
||||||
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
||||||
|
]
|
||||||
|
},
|
||||||
build: {
|
build: {
|
||||||
vendor: ['axios', 'moment', 'chart.js', 'vue-chartjs']
|
vendor: ['axios', 'moment', 'chart.js', 'vue-chartjs']
|
||||||
|
},
|
||||||
|
env: {
|
||||||
|
githubToken: '42cdf9fd55abf41d24f34c0f8a4d9ada5f9e9b93'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "hello-nuxt",
|
"name": "vue-chartjs-nuxt",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^0.16.2",
|
"axios": "^0.16.2",
|
||||||
"chart.js": "^2.6.0",
|
"chart.js": "^2.6.0",
|
||||||
|
51
examples/vue-chartjs/pages/contributors.vue
Normal file
51
examples/vue-chartjs/pages/contributors.vue
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<template>
|
||||||
|
<div class="doughnut-chart">
|
||||||
|
<doughnut-chart :data="doughnutChartData" :options="{ legend: { display: false }, maintainAspectRatio: false }"/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DoughnutChart from '~/components/doughnut-chart'
|
||||||
|
import axios from 'axios'
|
||||||
|
import moment from 'moment'
|
||||||
|
|
||||||
|
function getRandomColor() {
|
||||||
|
var letters = '0123456789ABCDEF';
|
||||||
|
var color = '#';
|
||||||
|
for (var i = 0; i < 6; i++) {
|
||||||
|
color += letters[Math.floor(Math.random() * 16)];
|
||||||
|
}
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
|
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),
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
label: 'Nuxt.js Contributors',
|
||||||
|
backgroundColor: res.data.map(() => getRandomColor()),
|
||||||
|
data: res.data.map((stat) => 1)
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
DoughnutChart
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.doughnut-chart {
|
||||||
|
position: fixed;
|
||||||
|
left: 10%;
|
||||||
|
top: 10%;
|
||||||
|
width: 80%;
|
||||||
|
height: 80%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -10,8 +10,8 @@ import axios from 'axios'
|
|||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
async asyncData() {
|
async asyncData({ env }) {
|
||||||
const res = await axios.get('https://api.github.com/repos/nuxt/nuxt.js/stats/commit_activity')
|
const res = await axios.get(`https://api.github.com/repos/nuxt/nuxt.js/stats/commit_activity?access_token=${env.githubToken}`)
|
||||||
return {
|
return {
|
||||||
barChartData: {
|
barChartData: {
|
||||||
labels: res.data.map((stat) => moment(stat.week * 1000).format('GGGG[-W]WW')),
|
labels: res.data.map((stat) => moment(stat.week * 1000).format('GGGG[-W]WW')),
|
||||||
@ -31,7 +31,7 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style scoped>
|
||||||
.bar-chart {
|
.bar-chart {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 10%;
|
left: 10%;
|
||||||
|
Loading…
Reference in New Issue
Block a user