2024-02-23 23:41:24 +00:00
|
|
|
import {createApp} from 'vue';
|
|
|
|
|
|
|
|
export async function initRepoCodeFrequency() {
|
|
|
|
const el = document.getElementById('repo-code-frequency-chart');
|
|
|
|
if (!el) return;
|
|
|
|
|
|
|
|
const {default: RepoCodeFrequency} = await import(/* webpackChunkName: "code-frequency-graph" */'../components/RepoCodeFrequency.vue');
|
|
|
|
try {
|
|
|
|
const View = createApp(RepoCodeFrequency, {
|
|
|
|
locale: {
|
|
|
|
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-23 23:41:24 +00:00
|
|
|
});
|
|
|
|
View.mount(el);
|
|
|
|
} catch (err) {
|
|
|
|
console.error('RepoCodeFrequency failed to load', err);
|
|
|
|
el.textContent = el.getAttribute('data-locale-component-failed-to-load');
|
|
|
|
}
|
|
|
|
}
|