summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/GroupModuleClientList.vue
blob: e8809d3ee8bab7ae7fc226999d6b8dfc34410227 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


         









                                                              

         









                                                                       




          



                                                                              
                                                                                                                                                  












                                                  

                                                                                                   




                                        
                                     







                                                          
                                                                                                                             





                                                     



                                                                                                                 

                                      



                                                                                                                               

            


           

                                             

                                
                                            

            




                   










                                                 






                                  

     
            
                                                                       
                     
                                                                                                     





                                                            






                                                                                                                                  
     








                                                                   




                      










                            
        
<i18n>
{
  "en": {
    "id": "ID",
    "name": "Name",
    "ip": "IP Address",
    "mac": "MAC Address",
    "uuid": "UUID",
    "search": "Search",
    "removeClients": "Remove one client | Remove {0} clients",
    "addClients": "Add clients",
    "deleteClients": "Delete one client | Delete {0} clients",
    "createClient": "Create client"
  },
  "de": {
    "id": "ID",
    "name": "Name",
    "ip": "IP Adresse",
    "mac": "MAC Adresse",
    "uuid": "UUID",
    "search": "Suche",
    "removeClients": "Entferne einen Clienten | Entferne {0} Clienten",
    "addClients": "Füge Clienten hinzu",
    "deleteClients": "Lösche einen Clienten | Lösche {0} Clienten",
    "createClient": "Client erstellen"
  }
}
</i18n>

<template>
  <div>
    <v-card>
      <v-card-title v-if="tabIndex === 0 && showAll" class="search-container">
        <div>
          <v-text-field class="search-field" :placeholder="$t('search')" v-model="search" hide-details prepend-inner-icon="search"></v-text-field>
        </div>
      </v-card-title>
      <v-divider></v-divider>
      <v-data-table
        :headers="headers"
        :items="clients"
        item-key="id"
        select-all
        :hide-actions="tabIndex > 0 || !showAll"
        v-model="selected"
        :search="search"
      >
        <template slot="items" slot-scope="props">
          <tr @click.stop="props.selected = !props.selected" @dblclick="loadClient(props.item.id)">
            <td class="narrow-td">
              <v-checkbox
                color="primary"
                v-model="props.selected"
                hide-details
                @click.native.stop
                @dblclick.native.stop
              ></v-checkbox>
            </td>
            <td class="narrow-td">{{ props.item.id }}</td>
            <td>{{ props.item.name }}</td>
            <td>{{ props.item.ip }}</td>
            <td>{{ props.item.mac }}</td>
            <td>{{ props.item.uuid }}</td>
            <td class="narrow-td">
              <v-btn class="next-arrow" icon @click="loadClient(props.item.id)"><v-icon>keyboard_arrow_right</v-icon></v-btn>
            </td>
          </tr>
        </template>
      </v-data-table>
    </v-card>
    <div v-if="tabIndex === 0" class="text-xs-right">
      <v-btn flat color="error" @click="deleteSelected" :disabled="selected.length === 0">
        <v-icon left>delete</v-icon>{{ $tc('deleteClients', selected.length, [selected.length]) }}
      </v-btn>
      <v-btn flat color="success" @click="newClient"><v-icon left>create</v-icon>{{ $t('createClient') }}</v-btn>
    </div>
    <div v-else class="text-xs-right">
        <v-btn flat color="error" @click="removeSelected" :disabled="selected.length === 0">
          <v-icon left>remove_circle_outline</v-icon>{{ $tc('removeClients', selected.length, [selected.length]) }}
        </v-btn>
        <v-btn flat color="success" @click="addExisting"><v-icon left>add_circle_outline</v-icon>{{ $t('addClients') }}</v-btn>
      </div>
  </div>
</template>

<script>
import { mapState, mapMutations } from 'vuex'

export default {
  name: 'GroupModuleClientList',
  props: ['tabIndex', 'groupId', 'clients'],
  data () {
    return {
      selected: [],
      search: ''
    }
  },
  computed: {
    ...mapState('groups', ['showAll']),
    headers () {
      return [
        { text: this.$t('id'), value: 'id' },
        { text: this.$t('name'), value: 'name' },
        { text: this.$t('ip'), value: 'ip' },
        { text: this.$t('mac'), value: 'mac' },
        { text: this.$t('uuid'), value: 'uuid' },
        { sortable: false }
      ]
    }
  },
  watch: {
    showAll (value) {
      if (!value) this.search = ''
    },
    clients () {
      this.selected = []
    }
  },
  methods: {
    ...mapMutations('groups', ['setActiveTab', 'setTab', 'setDialog']),
    loadClient (id) {
      this.$store.dispatch('groups/loadClient', { id, tabIndex: this.tabIndex + 1, switchTab: true })
    },
    newClient () {
      this.setTab({ index: 1, item: { tabType: 'client' } })
      this.setActiveTab(1)
    },
    deleteSelected () {
      this.setDialog({ show: true, info: { action: 'delete', type: 'client', selected: this.selected } })
    },
    removeSelected () {
      this.setDialog({ show: true, info: { action: 'remove', type: 'client', selected: this.selected, tabIndex: this.tabIndex } })
    },
    addExisting () {
      this.setDialog({ show: true, info: { action: 'add', type: 'client', selected: this.selected, tabIndex: this.tabIndex } })
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.narrow-td {
  width: 10px;
}

.next-arrow {
  margin-left: 20px;
  margin-right: -10px;
}

.search-container {
  display: flex;
  justify-content: flex-end;
}

.search-field {
  margin-top: 0;
  margin-right: 10px;
  margin-bottom: 5px;
}
</style>