summaryrefslogtreecommitdiff
path: root/src/views/_sila/Settings/TransferInfo/ModalSmtp.vue
blob: c3bdc4938b61de200112a0f2482696cd333511c7 (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
<template>
  <b-modal
    id="modal-smtp"
    ref="modal"
    :title="$t('global.action.add')"
    @hidden="resetForm"
  >
    <b-form id="form-smtp" @submit.prevent="handleSubmit">
      <b-row>
        <b-col sm="6">
          <b-form-group
            :label="$t('pageTransfer.smtp.email')"
            label-for="smtpEmail"
          >
            <b-form-input
              id="smtpEmail"
              v-model="email"
              type="text"
              :state="getValidationState($v.email)"
              data-test-id="smtp-input-email"
              @input="$v.email.$touch()"
            />
            <b-form-invalid-feedback role="alert">
              <template v-if="!$v.email.required">
                {{ $t('global.form.fieldRequired') }}
              </template>
              <template v-if="!$v.email.email">
                {{ $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-smtp" 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 { email, required } from 'vuelidate/lib/validators';

export default {
  mixins: [VuelidateMixin],
  data() {
    return {
      email: null,
    };
  },
  validations() {
    return {
      email: {
        required,
        email,
      },
    };
  },
  methods: {
    handleSubmit() {
      this.$v.$touch();
      if (this.$v.$invalid) return;

      this.$emit('ok', {
        email: this.email,
      });
      this.closeModal();
    },
    closeModal() {
      this.$nextTick(() => {
        this.$refs.modal.hide();
      });
    },
    resetForm() {
      this.email = 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>