summaryrefslogtreecommitdiff
path: root/src/views/_sila/Settings/TransferInfo/ModalSnmp.vue
blob: 76453f980e90716204952e6a8727ef91d268ff43 (plain)
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
<template>
  <b-modal
    id="modal-snmp"
    ref="modal"
    :title="$t('global.action.add')"
    @hidden="resetForm"
  >
    <b-form id="form-snmp" @submit.prevent="handleSubmit">
      <b-row>
        <b-col sm="6">
          <b-form-group
            :label="$t('pageTransfer.snmp.host')"
            label-for="snmpHost"
          >
            <b-input-group prepend="snmp://">
              <b-form-input
                id="snmpHost"
                v-model="host"
                type="text"
                :state="getValidationState($v.host)"
                data-test-id="snmp-input-host"
                @input="$v.host.$touch()"
              />
              <b-form-invalid-feedback role="alert">
                <template v-if="!$v.host.required">
                  {{ $t('global.form.fieldRequired') }}
                </template>
                <template v-if="!$v.host.ipAddress">
                  {{ $t('global.form.invalidFormat') }}
                </template>
              </b-form-invalid-feedback>
            </b-input-group>
          </b-form-group>
        </b-col>
        <b-col sm="6">
          <b-form-group
            :label="$t('pageTransfer.snmp.port')"
            label-for="snmpPort"
          >
            <b-form-input
              id="snmpPort"
              v-model="port"
              type="number"
              :state="getValidationState($v.port)"
              data-test-id="snmp-input-port"
              @input="$v.port.$touch()"
            />
            <b-form-invalid-feedback role="alert">
              <template v-if="!$v.port.required">
                {{ $t('global.form.fieldRequired') }}
              </template>
              <template v-if="!$v.port.ipAddress">
                {{ $t('global.form.invalidFormat') }}
              </template>
            </b-form-invalid-feedback>
          </b-form-group>
        </b-col>
      </b-row>
    </b-form>
    <template #modal-footer="{ cancel }">
      <b-button variant="secondary" @click="cancel()">
        {{ $t('global.action.cancel') }}
      </b-button>
      <b-button form="form-snmp" type="submit" variant="primary" @click="onOk">
        {{ $t('global.action.add') }}
      </b-button>
    </template>
  </b-modal>
</template>

<script>
import VuelidateMixin from '@/components/_sila/Mixins/VuelidateMixin.js';
import { helpers, ipAddress, required } from 'vuelidate/lib/validators';
import { isoPortRegex } from '@/utilities/_sila/regexConstants';

export default {
  mixins: [VuelidateMixin],
  data() {
    return {
      form: {
        Destination: null,
        SubscriptionType: 'SNMPTrap',
        Protocol: 'SNMPv2c',
        Context: 'testContext',
      },
      host: null,
      port: null,
    };
  },
  validations() {
    return {
      host: {
        required,
        ipAddress,
      },
      port: {
        required,
        pattern: helpers.regex('pattern', isoPortRegex),
      },
    };
  },
  methods: {
    handleSubmit() {
      this.$v.$touch();
      if (this.$v.$invalid) return;

      this.$emit('ok', {
        ...this.form,
        Destination: `snmp://${this.host}:${this.port}`,
      });
      this.closeModal();
    },
    closeModal() {
      this.$nextTick(() => {
        this.$refs.modal.hide();
      });
    },
    resetForm() {
      this.host = null;
      this.port = null;
      this.form.Destination = null;
      this.$v.$reset();
      this.$emit('hidden');
    },
    onOk(bvModalEvt) {
      // prevent modal close
      bvModalEvt.preventDefault();
      this.handleSubmit();
    },
  },
};
</script>

<style lang="scss" scoped>
.input-group-prepend + input {
  padding-left: 70px !important;
}
</style>