gitlab-org--gitlab-foss/app/assets/javascripts/repo/repo_tabs.vue

39 lines
740 B
Vue
Raw Normal View History

2017-07-24 12:15:41 -04:00
<script>
import Vue from 'vue';
import Store from './repo_store';
import RepoTab from './repo_tab.vue';
import RepoMiniMixin from './repo_mini_mixin';
const RepoTabs = {
mixins: [RepoMiniMixin],
2017-07-24 13:42:11 -04:00
components: {
2017-07-24 12:15:41 -04:00
'repo-tab': RepoTab,
},
data: () => Store,
methods: {
isOverflow() {
return this.$el.scrollWidth > this.$el.offsetWidth;
2017-07-26 08:56:31 -04:00
},
2017-07-24 12:15:41 -04:00
},
watch: {
openedFiles() {
Vue.nextTick(() => {
this.tabsOverflow = this.isOverflow();
});
2017-07-26 08:56:31 -04:00
},
},
};
2017-07-24 12:15:41 -04:00
export default RepoTabs;
</script>
<template>
<ul id="tabs" v-if="isMini" v-cloak :class="{'overflown': tabsOverflow}">
<repo-tab v-for="tab in openedFiles" :key="tab.id" :tab="tab" :class="{'active' : tab.active}"/>
</ul>
</template>