Files
Tony Murray 300645388f Dispatcher Service settings (#11760)
* Poller settings WIP

* Poller settings WIP2

* working on SettingMultiple

* setting multiple working

* settings sent with all required info

* fix translation

* Fix keys

* fix groups setting

* Apply settings to service
fixes and validations for setting

* don't error when no poller_cluster entry exists

* hid tab when no poller cluster entries

* Authorization

* make prod

* daily maintenance toggle should be advanced

* Update schema def
2020-06-08 08:27:03 -05:00

76 lines
2.2 KiB
Vue

<!--
- SettingMultiple.vue
-
- Setting for multiple select option. Value is expected to be a comma delimited string
-
- 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 <http://www.gnu.org/licenses/>.
-
- @package LibreNMS
- @link http://librenms.org
- @copyright 2020 Tony Murray
- @author Tony Murray <murraytony@gmail.com>
-->
<template>
<div>
<multiselect
@input="$emit('input', mutateInputEvent($event))"
:value="formattedValue"
:required="required"
:disabled="disabled"
:name="name"
label="label"
track-by="value"
:options="formattedOptions"
:allow-empty="false"
:multiple="true"
>
</multiselect>
</div>
</template>
<script>
import BaseSetting from "./BaseSetting";
export default {
name: "SettingMultiple",
mixins: [BaseSetting],
computed: {
formattedValue() {
if (this.value === undefined) {
return []
}
let values = this.value.toString().split(',')
return this.formatOptions(_.pick(this.options, ...values))
},
formattedOptions() {
return this.formatOptions(this.options)
}
},
methods: {
formatOptions(options) {
return Object.entries(options).map(([k, v]) => ({label: v, value: k}))
},
mutateInputEvent(options) {
return options.map(option => option.value).join(',');
}
}
}
</script>
<style scoped>
</style>