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