summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleClientList.vue
blob: a1036aa75b02eb511d14543ef535562cb29c06cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<i18n>
{
  "en": {
  },
  "de": {
  }
}
</i18n>

<template>
  <v-data-table stlye="width: 100px"
    :headers="headers"
    :items="clients"
    item-key="id"
    hide-actions
    select-all
    v-model="selected"
  >
    <template slot="items" slot-scope="props">
      <tr @click="props.selected = !props.selected">
        <td class="narrow-td">
          <v-checkbox
            color="primary"
            v-model="props.selected"
            hide-details
            @click.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 icon @click.stop><v-icon color="primary">edit</v-icon></v-btn>
        </td>
      </tr>
    </template>
  </v-data-table>
</template>

<script>

export default {
  name: 'GroupModuleClientList',
  props: ['tabIndex'],
  data () {
    return {
      headers: [
        { text: 'ID', value: 'id' },
        { text: 'Name', value: 'name' },
        { text: 'IP Address', value: 'ip' },
        { text: 'MAC Address', value: 'mac' },
        { text: 'UUID', value: 'uuid' },
        { sortable: false }
      ],
      selected: []
    }
  },
  computed: {
    clients () {
      return this.$store.state.groups.groupChain[this.tabIndex].clients
    }
  }
}
</script>

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