2020-02-07 22:39:30 +05:30
|
|
|
export default async function initGitGraph() {
|
2019-11-22 05:00:14 +05:30
|
|
|
const graphCanvas = document.getElementById('graph-canvas');
|
|
|
|
if (!graphCanvas) return;
|
|
|
|
|
2020-03-12 01:04:54 +05:30
|
|
|
const {default: gitGraph} = await import(/* webpackChunkName: "gitgraph" */'../vendor/gitgraph.js');
|
2019-11-22 05:00:14 +05:30
|
|
|
|
|
|
|
const graphList = [];
|
|
|
|
$('#graph-raw-list li span.node-relation').each(function () {
|
|
|
|
graphList.push($(this).text());
|
|
|
|
});
|
|
|
|
|
|
|
|
gitGraph(graphCanvas, graphList);
|
2020-02-07 22:39:30 +05:30
|
|
|
}
|