mirror of
https://github.com/go-gitea/gitea
synced 2024-11-15 14:44:41 +00:00
348d1d0f32
Migrated a handful Vue components to the `setup` syntax using composition api as it has better Typescript support and is becoming the new default in the Vue ecosystem. - [x] ActionRunStatus.vue - [x] ActivityHeatmap.vue - [x] ContextPopup.vue - [x] DiffFileList.vue - [x] DiffFileTree.vue - [x] DiffFileTreeItem.vue - [x] PullRequestMergeForm.vue - [x] RepoActivityTopAuthors.vue - [x] RepoCodeFrequency.vue - [x] RepoRecentCommits.vue - [x] ScopedAccessTokenSelector.vue Left some larger components untouched for now to not go to crazy in this single PR: - [ ] DiffCommitSelector.vue - [ ] RepoActionView.vue - [ ] RepoContributors.vue - [ ] DashboardRepoList.vue - [ ] RepoBranchTagSelector.vue
106 lines
2.7 KiB
Vue
106 lines
2.7 KiB
Vue
<script lang="ts" setup>
|
|
import {VueBarGraph} from 'vue-bar-graph';
|
|
import {computed, onMounted, ref} from 'vue';
|
|
|
|
const colors = ref({
|
|
barColor: 'green',
|
|
textColor: 'black',
|
|
textAltColor: 'white',
|
|
});
|
|
|
|
// possible keys:
|
|
// * avatar_link: (...)
|
|
// * commits: (...)
|
|
// * home_link: (...)
|
|
// * login: (...)
|
|
// * name: (...)
|
|
const activityTopAuthors = window.config.pageData.repoActivityTopAuthors || [];
|
|
|
|
const graphPoints = computed(() => {
|
|
return activityTopAuthors.value.map((item) => {
|
|
return {
|
|
value: item.commits,
|
|
label: item.name,
|
|
};
|
|
});
|
|
});
|
|
|
|
const graphAuthors = computed(() => {
|
|
return activityTopAuthors.value.map((item, idx) => {
|
|
return {
|
|
position: idx + 1,
|
|
...item,
|
|
};
|
|
});
|
|
});
|
|
|
|
const graphWidth = computed(() => {
|
|
return activityTopAuthors.value.length * 40;
|
|
});
|
|
|
|
const styleElement = ref<HTMLElement | null>(null);
|
|
const altStyleElement = ref<HTMLElement | null>(null);
|
|
|
|
onMounted(() => {
|
|
const refStyle = window.getComputedStyle(styleElement.value);
|
|
const refAltStyle = window.getComputedStyle(altStyleElement.value);
|
|
|
|
colors.value = {
|
|
barColor: refStyle.backgroundColor,
|
|
textColor: refStyle.color,
|
|
textAltColor: refAltStyle.color,
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="activity-bar-graph" ref="styleElement" style="width: 0; height: 0;"/>
|
|
<div class="activity-bar-graph-alt" ref="altStyleElement" style="width: 0; height: 0;"/>
|
|
<vue-bar-graph
|
|
:points="graphPoints"
|
|
:show-x-axis="true"
|
|
:show-y-axis="false"
|
|
:show-values="true"
|
|
:width="graphWidth"
|
|
:bar-color="colors.barColor"
|
|
:text-color="colors.textColor"
|
|
:text-alt-color="colors.textAltColor"
|
|
:height="100"
|
|
:label-height="20"
|
|
>
|
|
<template #label="opt">
|
|
<g v-for="(author, idx) in graphAuthors" :key="author.position">
|
|
<a
|
|
v-if="opt.bar.index === idx && author.home_link"
|
|
:href="author.home_link"
|
|
>
|
|
<image
|
|
:x="`${opt.bar.midPoint - 10}px`"
|
|
:y="`${opt.bar.yLabel}px`"
|
|
height="20"
|
|
width="20"
|
|
:href="author.avatar_link"
|
|
/>
|
|
</a>
|
|
<image
|
|
v-else-if="opt.bar.index === idx"
|
|
:x="`${opt.bar.midPoint - 10}px`"
|
|
:y="`${opt.bar.yLabel}px`"
|
|
height="20"
|
|
width="20"
|
|
:href="author.avatar_link"
|
|
/>
|
|
</g>
|
|
</template>
|
|
<template #title="opt">
|
|
<tspan v-for="(author, idx) in graphAuthors" :key="author.position">
|
|
<tspan v-if="opt.bar.index === idx">
|
|
{{ author.name }}
|
|
</tspan>
|
|
</tspan>
|
|
</template>
|
|
</vue-bar-graph>
|
|
</div>
|
|
</template>
|