All files / app/assets/javascripts/repository/pages index.vue

75% Statements 3/4
100% Branches 0/0
100% Functions 3/3
75% Lines 3/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 343x                                 3x     3x                          
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import { updateElementsVisibility } from '../utils/dom';
import TreePage from './tree.vue';
 
export default {
  components: {
    TreePage,
  },
  props: {
    refType: {
      type: String,
      required: false,
      default: null,
    },
  },
  mounted() {
    this.updateProjectElements(true);
  },
  beforeDestroy() {
    this.updateProjectElements(false);
  },
  methods: {
    updateProjectElements(isShow) {
      updateElementsVisibility('.js-show-on-project-root', isShow);
    },
  },
};
</script>
 
<template>
  <tree-page path="/" :ref-type="refType" />
</template>