summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleClientView.vue
blob: 6e5e2e678a2626c3eaf27cfe328a542b14d08405 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<i18n>
{
  "en": {
    "name": "Name",
    "description": "Description",
    "config": "iPXE Config",
    "groups": "Groups",
    "ip": "IP Address",
    "mac": "MAC Address",
    "uuid": "UUID",
    "more": "more"
  },
  "de": {
    "name": "Name",
    "description": "Beschreibung",
    "config": "iPXE Konfiguration",
    "groups": "Gruppen",
    "ip": "IP Adresse",
    "mac": "MAC Adresse",
    "uuid": "UUID",
    "more": "mehr"
  }
}
</i18n>

<template>
  <div>
    <v-card style="margin-top: 24px">
      <v-card-text>
        <v-layout wrap>
          <v-flex lg4 sm6 xs12 order-lg1 order-xs2>
            <v-layout column>
              <v-flex>
                <div class="info-box">
                  <div class="body-2 info-heading"><v-icon>label</v-icon><span>{{ $t('name') }}</span></div>
                  <div class="info-text">
                    <v-text-field v-if="editMode" class="info-input" color="primary" v-model="info.name" hide-details tabindex="1"></v-text-field>
                    <div v-else>{{ client.name || '-' }}</div>
                  </div>
                </div>
              </v-flex>
              <v-flex>
                <div class="info-box">
                  <div class="body-2 info-heading"><v-icon>device_hub</v-icon><span>{{ $t('groups') }}</span></div>
                  <div class="info-text">
                    <select-box v-if="editMode" v-model="groups" :items="groupList" class="info-input" hide-details></select-box>
                    <div v-else class="chip-container non-selectable">
                      <v-tooltip v-for="group in firstGroups" :key="group.id" top open-delay="800">
                        <template #activator="{ on }">
                          <v-chip v-on="on" small label style="width: calc(50% - 8px)" @click="openGroup(group)">
                            <span class="chip-text">{{ group.name || group.id }}</span>
                          </v-chip>
                        </template>
                        <span>{{ group.name || group.id }}</span>
                      </v-tooltip>

                      <span v-if="client.groups && client.groups.length > 5" class="and-more">+ {{ client.groups.length - 5 }} {{ $t('more') }}</span>
                      <span v-else-if="client.groups === undefined || client.groups.length === 0">-</span>
                    </div>
                  </div>
                </div>
              </v-flex>
              <v-flex>
                <div class="info-box">
                  <div class="body-2 info-heading"><v-icon>list</v-icon><span>{{ $t('config') }}</span></div>
                  <div class="info-text">
                    <v-select v-if="editMode"
                      class="info-input"
                      clearable
                      item-text="name"
                      item-value="id"
                      :menu-props="{ offsetY: '' }"
                      hide-details
                      color="primary"
                      v-model="info.configId"
                      :items="configList"
                    ></v-select>
                    <div v-else>{{ client.config ? (client.config.name || client.config.id) : '-' }}</div>
                  </div>
                </div>
              </v-flex>
            </v-layout>
          </v-flex>
          <v-flex lg4 sm6 xs12 order-lg2 order-xs3>
            <div class="info-box">
              <div class="body-2 info-heading"><v-icon>description</v-icon><span>{{ $t('description') }}</span></div>
              <div class="info-text">
                <v-textarea v-if="editMode" class="info-input" rows="1" auto-grow hide-details color="primary" v-model="info.description" tabindex="2"></v-textarea>
                <div v-else style="white-space: pre-wrap;">{{ client.description || '-' }}</div>
              </div>
            </div>
          </v-flex>
          <v-flex lg4 xs12 order-lg3 order-xs1 class="text-xs-right">
            <div class="info-box">
              <div v-if="!editMode">
                <v-btn color="error" flat @click="deleteClient" class="info-buttons">
                  <v-icon left>delete</v-icon>{{ $t('delete') }}
                </v-btn>
                <v-btn color="primary" flat @click="editInfo" class="info-buttons">
                  <v-icon left>create</v-icon>{{ $t('edit') }}
                </v-btn>
              </div>
              <div v-else>
                <v-btn color="primary" flat @click="cancelEdit" class="info-buttons">{{ $t('cancel') }}</v-btn>
                <v-btn color="primary" @click="saveData" class="info-buttons" tabindex="6">
                  <v-icon left>save</v-icon>{{ $t('save') }}
                </v-btn>
              </div>
            </div>
          </v-flex>
        </v-layout>
        <v-layout wrap>
          <v-flex lg4 sm6 xs12>
            <div class="info-box">
              <div class="body-2 info-heading"><v-icon>language</v-icon><span>{{ $t('ip') }}</span></div>
              <div class="info-text">
                <v-text-field v-if="editMode" class="info-input" color="primary" v-model="info.ip" hide-details tabindex="3"></v-text-field>
                <div v-else>{{ client.ip || '-' }}</div>
              </div>
            </div>
          </v-flex>
          <v-flex lg4 sm6 xs12>
            <div class="info-box">
              <div class="body-2 info-heading"><v-icon>memory</v-icon><span>{{ $t('mac') }}</span></div>
              <div class="info-text">
                <v-text-field v-if="editMode" class="info-input" color="primary" v-model="info.mac" hide-details tabindex="4"></v-text-field>
                <div v-else>{{ client.mac || '-' }}</div>
              </div>
            </div>
          </v-flex>
          <v-flex lg4 sm6 xs12>
            <div class="info-box">
              <div class="body-2 info-heading"><v-icon>fingerprint</v-icon><span>{{ $t('uuid') }}</span></div>
              <div class="info-text">
                <v-text-field v-if="editMode" class="info-input" color="primary" v-model="info.uuid" hide-details tabindex="5"></v-text-field>
                <div v-else>{{ client.uuid || '-' }}</div>
              </div>
            </div>
          </v-flex>
        </v-layout>
      </v-card-text>
    </v-card>
  </div>
</template>

<script>
import SelectBox from '@/components/SelectBox'
import { mapState, mapMutations } from 'vuex'

export default {
  name: 'GroupModuleClientView',
  props: {
    client: {
      type: Object,
      default: () => {}
    },
    tabIndex: {
      type: Number
    }
  },
  components: {
    SelectBox
  },
  data () {
    return {
      editMode: false,
      info: {
        name: '',
        description: '',
        configId: null,
        ip: '',
        mac: '',
        uuid: ''
      },
      groups: []
    }
  },
  computed: {
    ...mapState('groups', ['groupList', 'configList']),
    headers () {
      return [
        { key: 'name', text: this.$t('name') }
      ]
    },
    firstGroups () {
      return this.client.groups ? this.client.groups.slice(0, 5) : []
    }
  },
  watch: {
    client (newValue, oldValue) {
      if (newValue.id === 'create') this.editInfo()
      else if (newValue.id !== oldValue.id) this.editMode = false
    }
  },
  methods: {
    ...mapMutations('groups', ['setDialog', 'setActiveTab', 'adjustTabSlider', 'deleteFromTabChain']),
    editInfo () {
      this.editMode = true
      this.info.name = this.client.name
      this.info.description = this.client.description
      this.info.configId = this.client.configId
      this.info.ip = this.client.ip
      this.info.mac = this.client.mac
      this.info.uuid = this.client.uuid
      this.groups = this.client.groups ? this.client.groups.slice(0) : []
    },
    cancelEdit () {
      this.editMode = false
      if (this.client.id === 'create') {
        this.deleteFromTabChain({ index: this.tabIndex, count: 1 })
        this.setActiveTab(this.tabIndex - 1)
      }
    },
    saveData () {
      this.info.configId = this.info.configId === undefined ? null : this.info.configId
      this.adjustTabSlider()
      this.$store.dispatch('groups/saveClient', {
        id: this.client.id,
        data: this.info,
        groups: this.groups,
        tabIndex: this.tabIndex,
        callback: this.updateUrl
      })
      this.editMode = false
    },
    deleteClient () {
      this.setDialog({ show: true, info: { action: 'delete', type: 'client', selected: [this.client] } })
    },
    updateUrl (id) {
      this.$router.replace({
        name: 'GroupModule.client',
        params: { id, noReload: true }
      })
    },
    openGroup (group) {
      this.$store.dispatch('groups/loadGroup', { id: group.id, name: group.name, tabIndex: this.tabIndex, asParent: true, switchTab: true })
    }
  },
  created () {
    if (this.client.id === 'create') this.editInfo()
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.info-buttons {
  margin: 0;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.chip-container >>> .v-chip__content {
  width: 100%;
  cursor: pointer;
}

.chip-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.and-more {
  font-size: 13px;
  display: flex;
  align-items: center;
  margin: 4px 17px;
}

.info-box {
  padding: 20px;
}

.info-input {
  margin: 0;
  padding: 0 0 1px 0;
  overflow: hidden;
}

.info-heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info-heading-button {
  margin: -2px 0 -2px 10px;
}

.info-heading > span {
  margin-left: 10px;
}

.info-text {
  overflow-x: auto;
  margin-left: 34px;
  font-family: 'Roboto Mono';
  min-height: 34px;
  display: flex;
  align-items: center;
}
</style>