aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/modules/stores.ts
blob: 65da1e044a8a605e4f00cae476b2126e18c67a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import {reactive} from 'vue';
import type {Reactive} from 'vue';

const {pageData} = window.config;

let diffTreeStoreReactive: Reactive<Record<string, any>>;
export function diffTreeStore() {
  if (!diffTreeStoreReactive) {
    diffTreeStoreReactive = reactive({
      files: pageData.DiffFiles,
      fileTreeIsVisible: false,
      selectedItem: '',
    });
  }
  return diffTreeStoreReactive;
}