summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/GroupModule.vue
blob: f873e6832f3e6b702719de8d4f7e0eb85a213fd2 (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 class="tabs-wrapper" xl10 offset-xl1 lg12>
        <v-card>
          <v-tabs :value="activeTab" @input="setActiveTab" :dark="tabsDark" :color="tabsColor" :slider-color="tabsSliderColor">
            <template v-for="(item, index) in tabChain">
              <v-icon v-if="item.tabType !== 'home'" :key="'arrow' + index">keyboard_arrow_right</v-icon>
              <v-tab ripple :key="'tab' + index">
                <v-icon v-if="item.tabType === 'home'">home</v-icon>
                <v-icon v-if="item.tabType === 'client'" style="margin-right: 10px">computer</v-icon>
                <template v-if="item.tabType !== 'home'">{{ item.name || item.id || ' . . . . . . . . . . ' }}</template>
              </v-tab>
            </template>
          </v-tabs>
        </v-card>
        <v-tabs-items :value="activeTab" @input="setActiveTab" touchless style="padding-bottom: 20px">
          <v-tab-item v-for="(item, index) in tabChain" :key="index">
            <group-module-home-view v-if="item.tabType === 'home'" :home="item" />
            <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 GroupModuleHomeView from '@/components/GroupModuleHomeView'
import GroupModuleGroupView from '@/components/GroupModuleGroupView'
import GroupModuleClientView from '@/components/GroupModuleClientView'
import GroupModuleDialog from '@/components/GroupModuleDialog'
import { mapState, mapGetters, mapMutations } from 'vuex'

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

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>