aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-diff-filetree.ts
blob: bc275a90f6ab30a9a0dc3846ce03a553ffc68297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {createApp} from 'vue';
import DiffFileTree from '../components/DiffFileTree.vue';
import DiffFileList from '../components/DiffFileList.vue';

export function initDiffFileTree() {
  const el = document.querySelector('#diff-file-tree');
  if (!el) return;

  const fileTreeView = createApp(DiffFileTree);
  fileTreeView.mount(el);
}

export function initDiffFileList() {
  const fileListElement = document.querySelector('#diff-file-list');
  if (!fileListElement) return;

  const fileListView = createApp(DiffFileList);
  fileListView.mount(fileListElement);
}