mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
109 lines
3.6 KiB
Vue
109 lines
3.6 KiB
Vue
<!--
|
|
- SettingArray.vue
|
|
-
|
|
- Description-
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU General Public License as published by
|
|
- the Free Software Foundation, either version 3 of the License, or
|
|
- (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
- GNU General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-
|
|
- @package LibreNMS
|
|
- @link https://www.librenms.org
|
|
- @copyright 2019 Tony Murray
|
|
- @author Tony Murray <murraytony@gmail.com>
|
|
-->
|
|
|
|
<template>
|
|
<div v-tooltip="disabled ? $t('settings.readonly') : false">
|
|
<draggable v-model="localList" @end="dragged()" :disabled="disabled">
|
|
<div v-for="(item, index) in localList" class="input-group">
|
|
<span :class="['input-group-addon', disabled ? 'disabled' : '']">{{ index+1 }}.</span>
|
|
<input type="text"
|
|
class="form-control"
|
|
:value="item"
|
|
:readonly="disabled"
|
|
@blur="updateItem(index, $event.target.value)"
|
|
@keyup.enter="updateItem(index, $event.target.value)"
|
|
>
|
|
<span class="input-group-btn">
|
|
<button v-if="!disabled" @click="removeItem(index)" type="button" class="btn btn-danger"><i class="fa fa-minus-circle"></i></button>
|
|
</span>
|
|
</div>
|
|
</draggable>
|
|
<div v-if="!disabled">
|
|
<div class="input-group">
|
|
<input type="text" v-model="newItem" @keyup.enter="addItem" class="form-control">
|
|
<span class="input-group-btn">
|
|
<button @click="addItem" type="button" class="btn btn-primary"><i class="fa fa-plus-circle"></i></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseSetting from "./BaseSetting";
|
|
import draggable from 'vuedraggable'
|
|
|
|
export default {
|
|
name: "SettingArray",
|
|
mixins: [BaseSetting],
|
|
components: {
|
|
draggable,
|
|
},
|
|
data() {
|
|
return {
|
|
localList: this.value ?? [],
|
|
newItem: ""
|
|
}
|
|
},
|
|
methods: {
|
|
addItem() {
|
|
if (this.disabled) return;
|
|
this.localList.push(this.newItem);
|
|
this.$emit('input', this.localList);
|
|
this.newItem = "";
|
|
},
|
|
removeItem(index) {
|
|
if (this.disabled) return;
|
|
this.localList.splice(index, 1);
|
|
this.$emit('input', this.localList);
|
|
},
|
|
updateItem(index, value) {
|
|
if (this.disabled || this.localList[index] === value) return;
|
|
this.localList[index] = value;
|
|
this.$emit('input', this.localList);
|
|
},
|
|
dragged() {
|
|
if (this.disabled) return;
|
|
this.$emit('input', this.localList);
|
|
}
|
|
},
|
|
watch: {
|
|
value(updated) {
|
|
// careful to avoid loops with this
|
|
this.localList = updated;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.input-group {
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.input-group-addon:not(.disabled) {
|
|
cursor: move;
|
|
}
|
|
</style>
|