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;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
openedFiles() {
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
this.tabsOverflow = this.isOverflow();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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>
|