2024-02-15 22:21:13 +00:00
|
|
|
import {createApp} from 'vue';
|
|
|
|
|
|
|
|
export async function initRepoContributors() {
|
|
|
|
const el = document.getElementById('repo-contributors-chart');
|
|
|
|
if (!el) return;
|
|
|
|
|
|
|
|
const {default: RepoContributors} = await import(/* webpackChunkName: "contributors-graph" */'../components/RepoContributors.vue');
|
|
|
|
try {
|
|
|
|
const View = createApp(RepoContributors, {
|
2024-06-06 02:28:33 +00:00
|
|
|
repoLink: el.getAttribute('data-repo-link'),
|
2024-02-15 22:21:13 +00:00
|
|
|
locale: {
|
|
|
|
filterLabel: el.getAttribute('data-locale-filter-label'),
|
|
|
|
contributionType: {
|
|
|
|
commits: el.getAttribute('data-locale-contribution-type-commits'),
|
|
|
|
additions: el.getAttribute('data-locale-contribution-type-additions'),
|
|
|
|
deletions: el.getAttribute('data-locale-contribution-type-deletions'),
|
|
|
|
},
|
|
|
|
|
|
|
|
loadingTitle: el.getAttribute('data-locale-loading-title'),
|
|
|
|
loadingTitleFailed: el.getAttribute('data-locale-loading-title-failed'),
|
|
|
|
loadingInfo: el.getAttribute('data-locale-loading-info'),
|
2024-03-22 14:06:53 +00:00
|
|
|
},
|
2024-02-15 22:21:13 +00:00
|
|
|
});
|
|
|
|
View.mount(el);
|
|
|
|
} catch (err) {
|
|
|
|
console.error('RepoContributors failed to load', err);
|
|
|
|
el.textContent = el.getAttribute('data-locale-component-failed-to-load');
|
|
|
|
}
|
|
|
|
}
|