mirror of https://github.com/go-gitea/gitea.git
Add Vue linting (#13447)
* Add Vue linting Turns out the .vue files were not linted at all, so I added that as well as re-indented the file to 2-space and fixed all reasonable issues that cam up except one case of a unintended side effect for which I have no idea how to fix it, so the rule was disabled. * misc tweaks * update lockfile * use overrides to include .vue files * treat warnings as errors on lint-frontend * also treat stylelint warnings as errors * use equal sign syntax Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>pull/13455/head^2
parent
ed47da2e29
commit
7c47e24093
@ -1,79 +1,71 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div v-show="isLoading">
|
<div v-show="isLoading">
|
||||||
<slot name="loading"></slot>
|
<slot name="loading"/>
|
||||||
</div>
|
|
||||||
<h4 class="total-contributions" v-if="!isLoading">
|
|
||||||
{{ totalContributions }} total contributions in the last 12 months
|
|
||||||
</h4>
|
|
||||||
<calendar-heatmap v-show="!isLoading" :locale="locale" :no-data-text="locale.no_contributions" :tooltip-unit="locale.contributions" :end-date="endDate" :values="values" :range-color="colorRange"/>
|
|
||||||
</div>
|
</div>
|
||||||
|
<h4 v-if="!isLoading" class="total-contributions">
|
||||||
|
{{ values.length }} total contributions in the last 12 months
|
||||||
|
</h4>
|
||||||
|
<calendar-heatmap
|
||||||
|
v-show="!isLoading"
|
||||||
|
:locale="locale"
|
||||||
|
:no-data-text="locale.no_contributions"
|
||||||
|
:tooltip-unit="locale.contributions"
|
||||||
|
:end-date="endDate"
|
||||||
|
:values="values"
|
||||||
|
:range-color="colorRange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {CalendarHeatmap} from 'vue-calendar-heatmap';
|
import {CalendarHeatmap} from 'vue-calendar-heatmap';
|
||||||
const {AppSubUrl, heatmapUser} = window.config;
|
const {AppSubUrl, heatmapUser} = window.config;
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ActivityHeatmap",
|
name: 'ActivityHeatmap',
|
||||||
components: {
|
components: {CalendarHeatmap},
|
||||||
CalendarHeatmap
|
data: () => ({
|
||||||
},
|
isLoading: true,
|
||||||
data() {
|
colorRange: [],
|
||||||
return {
|
endDate: null,
|
||||||
isLoading: true,
|
values: [],
|
||||||
colorRange: [],
|
suburl: AppSubUrl,
|
||||||
endDate: null,
|
user: heatmapUser,
|
||||||
values: [],
|
locale: {
|
||||||
totalContributions: 0,
|
contributions: 'contributions',
|
||||||
suburl: AppSubUrl,
|
no_contributions: 'No contributions',
|
||||||
user: heatmapUser,
|
|
||||||
locale: {
|
|
||||||
contributions: 'contributions',
|
|
||||||
no_contributions: 'No contributions',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
mounted() {
|
}),
|
||||||
this.colorRange = [
|
mounted() {
|
||||||
this.getColor(0),
|
this.colorRange = [
|
||||||
this.getColor(1),
|
this.getColor(0),
|
||||||
this.getColor(2),
|
this.getColor(1),
|
||||||
this.getColor(3),
|
this.getColor(2),
|
||||||
this.getColor(4),
|
this.getColor(3),
|
||||||
this.getColor(5)
|
this.getColor(4),
|
||||||
];
|
this.getColor(5)
|
||||||
this.endDate = new Date();
|
];
|
||||||
this.loadHeatmap(this.user);
|
this.endDate = new Date();
|
||||||
},
|
this.loadHeatmap(this.user);
|
||||||
methods: {
|
},
|
||||||
loadHeatmap(userName) {
|
methods: {
|
||||||
const self = this;
|
async loadHeatmap(userName) {
|
||||||
$.get(`${this.suburl}/api/v1/users/${userName}/heatmap`, (chartRawData) => {
|
const res = await fetch(`${this.suburl}/api/v1/users/${userName}/heatmap`);
|
||||||
const chartData = [];
|
const data = await res.json();
|
||||||
for (let i = 0; i < chartRawData.length; i++) {
|
this.values = data.map(({contributions, timestamp}) => {
|
||||||
self.totalContributions += chartRawData[i].contributions;
|
return {date: new Date(timestamp * 1000), count: contributions};
|
||||||
chartData[i] = {date: new Date(chartRawData[i].timestamp * 1000), count: chartRawData[i].contributions};
|
});
|
||||||
}
|
this.isLoading = false;
|
||||||
self.values = chartData;
|
|
||||||
self.isLoading = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
getColor(idx) {
|
|
||||||
const el = document.createElement('div');
|
|
||||||
el.className = `heatmap-color-${idx}`;
|
|
||||||
document.body.appendChild(el);
|
|
||||||
|
|
||||||
const color = getComputedStyle(el).backgroundColor;
|
|
||||||
|
|
||||||
document.body.removeChild(el);
|
|
||||||
|
|
||||||
return color;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
getColor(idx) {
|
||||||
|
const el = document.createElement('div');
|
||||||
|
el.className = `heatmap-color-${idx}`;
|
||||||
|
document.body.appendChild(el);
|
||||||
|
const color = getComputedStyle(el).backgroundColor;
|
||||||
|
document.body.removeChild(el);
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style scoped/>
|
||||||
<style scoped>
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
@ -1,102 +1,101 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="activity-bar-graph" ref="style" style="width:0px;height:0px"></div>
|
<div class="activity-bar-graph" ref="style" style="width:0px;height:0px"/>
|
||||||
<div class="activity-bar-graph-alt" ref="altStyle" style="width:0px;height:0px"></div>
|
<div class="activity-bar-graph-alt" ref="altStyle" style="width:0px;height:0px"/>
|
||||||
<vue-bar-graph
|
<vue-bar-graph
|
||||||
:points="graphData"
|
:points="graphData"
|
||||||
:show-x-axis="true"
|
:show-x-axis="true"
|
||||||
:show-y-axis="false"
|
:show-y-axis="false"
|
||||||
:show-values="true"
|
:show-values="true"
|
||||||
:width="graphWidth"
|
:width="graphWidth"
|
||||||
:bar-color="colors.barColor"
|
:bar-color="colors.barColor"
|
||||||
:text-color="colors.textColor"
|
:text-color="colors.textColor"
|
||||||
:text-alt-color="colors.textAltColor"
|
:text-alt-color="colors.textAltColor"
|
||||||
:height="100"
|
:height="100"
|
||||||
:label-height="20"
|
:label-height="20"
|
||||||
>
|
>
|
||||||
<template v-slot:label="opt">
|
<template #label="opt">
|
||||||
<g v-for="(author, idx) in authors" :key="author.position">
|
<g v-for="(author, idx) in authors" :key="author.position">
|
||||||
<a
|
<a
|
||||||
v-if="opt.bar.index === idx && author.home_link !== ''"
|
v-if="opt.bar.index === idx && author.home_link !== ''"
|
||||||
:href="author.home_link"
|
:href="author.home_link"
|
||||||
>
|
>
|
||||||
<image
|
<image
|
||||||
:x="`${opt.bar.midPoint - 10}px`"
|
:x="`${opt.bar.midPoint - 10}px`"
|
||||||
:y="`${opt.bar.yLabel}px`"
|
:y="`${opt.bar.yLabel}px`"
|
||||||
height="20"
|
height="20"
|
||||||
width="20"
|
width="20"
|
||||||
:href="author.avatar_link"
|
:href="author.avatar_link"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
<image
|
<image
|
||||||
v-else-if="opt.bar.index === idx"
|
v-else-if="opt.bar.index === idx"
|
||||||
:x="`${opt.bar.midPoint - 10}px`"
|
:x="`${opt.bar.midPoint - 10}px`"
|
||||||
:y="`${opt.bar.yLabel}px`"
|
:y="`${opt.bar.yLabel}px`"
|
||||||
height="20"
|
height="20"
|
||||||
width="20"
|
width="20"
|
||||||
:href="author.avatar_link"
|
:href="author.avatar_link"
|
||||||
/>
|
/>
|
||||||
</g>
|
</g>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:title="opt">
|
<template #title="opt">
|
||||||
<tspan v-for="(author, idx) in authors" :key="author.position"><tspan v-if="opt.bar.index === idx">{{ author.name }}</tspan></tspan>
|
<tspan v-for="(author, idx) in authors" :key="author.position">
|
||||||
</template>
|
<tspan v-if="opt.bar.index === idx">
|
||||||
</vue-bar-graph>
|
{{ author.name }}
|
||||||
</div>
|
</tspan>
|
||||||
|
</tspan>
|
||||||
|
</template>
|
||||||
|
</vue-bar-graph>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import VueBarGraph from 'vue-bar-graph';
|
import VueBarGraph from 'vue-bar-graph';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {VueBarGraph},
|
||||||
VueBarGraph,
|
props: {
|
||||||
},
|
data: {type: Array, default: () => []},
|
||||||
props: {
|
},
|
||||||
data: { type: Array, default: () => [] },
|
data: () => ({
|
||||||
|
colors: {
|
||||||
|
barColor: 'green',
|
||||||
|
textColor: 'black',
|
||||||
|
textAltColor: 'white',
|
||||||
},
|
},
|
||||||
mounted() {
|
}),
|
||||||
const st = window.getComputedStyle(this.$refs.style);
|
computed: {
|
||||||
const stalt = window.getComputedStyle(this.$refs.altStyle);
|
graphData() {
|
||||||
|
return this.data.map((item) => {
|
||||||
this.colors.barColor = st.backgroundColor;
|
return {
|
||||||
this.colors.textColor = st.color;
|
value: item.commits,
|
||||||
this.colors.textAltColor = stalt.color;
|
label: item.name,
|
||||||
|
};
|
||||||
|
});
|
||||||
},
|
},
|
||||||
data() {
|
authors() {
|
||||||
|
return this.data.map((item, idx) => {
|
||||||
return {
|
return {
|
||||||
colors: {
|
position: idx + 1,
|
||||||
barColor: 'green',
|
...item,
|
||||||
textColor: 'black',
|
|
||||||
textAltColor: 'white',
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
graphWidth() {
|
||||||
|
return this.data.length * 40;
|
||||||
},
|
},
|
||||||
computed: {
|
},
|
||||||
graphData() {
|
mounted() {
|
||||||
return this.data.map((item) => {
|
const st = window.getComputedStyle(this.$refs.style);
|
||||||
return {
|
const stalt = window.getComputedStyle(this.$refs.altStyle);
|
||||||
value: item.commits,
|
|
||||||
label: item.name,
|
this.colors.barColor = st.backgroundColor;
|
||||||
};
|
this.colors.textColor = st.color;
|
||||||
});
|
this.colors.textAltColor = stalt.color;
|
||||||
},
|
},
|
||||||
authors() {
|
methods: {
|
||||||
return this.data.map((item, idx) => {
|
hasHomeLink(i) {
|
||||||
return {
|
return this.graphData[i].homeLink !== '' && this.graphData[i].homeLink !== null;
|
||||||
position: idx+1,
|
|
||||||
...item,
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
graphWidth() {
|
|
||||||
return this.data.length * 40;
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
methods: {
|
}
|
||||||
hasHomeLink(i) {
|
};
|
||||||
return this.graphData[i].homeLink !== '' && this.graphData[i].homeLink !== null;
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue