summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/GroupModule.vue
blob: 279b7f97cbecbf175d5e3072669fd2c1cc0b7786 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









          

                           
                                   

                                                                                                                                                            
                                                        
                                                                                                                     
                                                 
                                                                                                                                                                                  
                                                                                                 
                                                                                                                                                                             


                       
                                                                                                                                                                            
                 

                                                                                                                          



                                                                                                          

               
                           
                


           
                                                                    
                                                                      
                                                              
                                                                     


                      

             
                                     
                                            

     

                         

                          
    

            

     
             
                                                                



                                                                                


                       



                      
     
    
            
                                                                             
                                        
                              

                                                        
                                                                        


                                                                                               
                                                                                                                                 
       









                                                                                                                       
     

              

                                                                          
                                                                      
                            
                                                            
            




                                                                                              
     

                                      







                                                                                                                               


                                                                      
          


         







                          
<i18n>
{
  "en": {
  },
  "de": {
  }
}
</i18n>

<template>
  <v-container fill-height>
    <v-layout>
      <v-flex xl10 offset-xl1 lg12>
        <v-card class="tabbar-card non-selectable" style="display: flex; justify-content: space-between" :color="tabsColor">
          <v-tabs :value="activeTab" @change="setActiveTab" :dark="tabsDark" :color="tabsColor" :slider-color="tabsSliderColor" style="overflow-x: hidden;">
            <template v-for="(item, index) in tabChain">
              <v-icon v-if="item.id > 0 || item.id === 'create'" :key="'arrow' + index">keyboard_arrow_right</v-icon>
              <v-tab ripple :key="'tab' + index">
                <div v-if="item.tabType === 'group' && item.id === 0" class="tutorial-element label-top-left element-icon" style="--label-number: '1'"><v-icon>home</v-icon></div>
                <v-icon v-if="item.tabType === 'client'" class="tabbar-tabicon">computer</v-icon>
                <div v-if="item.id > 0 || item.id === 'create'" class="tab-text">{{ item.name ? item.name : item.id !== 'create' ? item.id : ' . . . . . . . . . . ' }}</div>
              </v-tab>
            </template>
          </v-tabs>
          <v-btn icon :loading="reloading" @click="reload" class="tutorial-element label-top-left element-icon" style="--label-number: '2'"><v-icon>refresh</v-icon></v-btn>
        </v-card>
        <v-tabs-items :value="activeTab" @input="setActiveTab" touchless style="padding-bottom: 12px">
          <v-tab-item v-for="(item, index) in tabChain" :key="index" lazy :transition="false" :reverse-transition="false">
            <group-module-group-view v-if="item.tabType === 'group'" :group="item" :tabIndex="index" />
            <group-module-client-view v-if="item.tabType === 'client'" :client="item" :tabIndex="index" />
          </v-tab-item>
        </v-tabs-items>
      </v-flex>
    </v-layout>
    <group-module-dialog />
  </v-container>
</template>

<script>
import GroupModuleGroupView from '@/components/GroupModuleGroupView'
import GroupModuleClientView from '@/components/GroupModuleClientView'
import GroupModuleDialog from '@/components/GroupModuleDialog'
import { mapState, mapGetters, mapMutations, mapActions } from 'vuex'

export default {
  name: 'GroupModule',
  routes () {
    return [
      { name: 'group', path: ':id' },
      { name: 'client', path: 'client/:id' }
    ]
  },
  components: {
    GroupModuleGroupView,
    GroupModuleClientView,
    GroupModuleDialog
  },
  data () {
    return {
    }
  },
  computed: {
    ...mapGetters(['tabsDark', 'tabsColor', 'tabsSliderColor']),
    ...mapState('groups', ['tabChain', 'activeTab', 'groupList', 'clientList']),
    reloading () {
      return this.tabChain.some(tab => tab.loading)
    }
  },
  watch: {
    activeTab (index) {
      this.updateUrl()
    },
    tabChain (value) {
      this.updateUrl()
    }
  },
  methods: {
    ...mapMutations('groups', ['setActiveTab', 'setTab', 'adjustTabSlider']),
    ...mapActions('groups', ['reload']),
    loadItem (routeName, id) {
      const type = routeName.replace('GroupModule.', '')
      if (id === 'create') {
        this.setTab({ index: 1, item: { id: 'create', tabType: type } })
        this.setActiveTab(1)
      } else {
        const action = type === 'group' ? 'loadGroup' : type === 'client' ? 'loadClient' : null
        if (action) this.$store.dispatch('groups/' + action, { id, tabIndex: id === 0 ? 0 : 1, switchTab: true, gotoInfo: true })
      }
    },
    updateUrl () {
      const item = this.tabChain[this.activeTab]
      if (item === undefined) return
      if (item.tabType !== this.$route.name.replace('GroupModule.', '') || String(item.id) !== this.$route.params.id) {
        this.$router.push({
          name: 'GroupModule.' + item.tabType,
          params: { id: item.id !== undefined ? item.id : 'create', noReload: true }
        })
      }
    }
  },
  created () {
    this.$store.dispatch('groups/loadLists')
    if (this.$route.params.id > 0 || this.$route.params.id === 'create') {
      this.$store.dispatch('groups/loadGroup', { id: 0, tabIndex: 0 })
      this.adjustTabSlider()
      this.loadItem(this.$route.name, this.$route.params.id)
    } else {
      const tabType = this.tabChain.length ? this.tabChain[this.activeTab].tabType : 'group'
      const id = this.tabChain.length ? this.tabChain[this.activeTab].id : 0
      this.$router.replace({ name: 'GroupModule.' + tabType, params: { id, noReload: true } })
      if (this.tabChain.length) this.reload()
      else this.$store.dispatch('groups/loadGroup', { id: 0, tabIndex: 0 })
    }
  },
  beforeRouteUpdate (to, from, next) {
    if (!to.params.noReload) {
      var tabIndex
      for (var i = 0; i < this.tabChain.length; i++) {
        if (this.tabChain[i].tabType === to.name.replace('GroupModule.', '') && String(this.tabChain[i].id) === to.params.id) {
          tabIndex = i
          break
        }
      }
      if (tabIndex === undefined) this.loadItem(to.name, to.params.id)
      else this.setActiveTab(tabIndex)
    }
    next()
  }
}
</script>

<style scoped>
.tab-text {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
</style>