Untitled

 avatar
unknown
plain_text
2 years ago
3.6 kB
3
Indexable
<template>
  <div class="center">
    <vs-dialog class="custom-dialog" overflow-hidden :value="showModal" @close="closeModal">
      <template #header>
        <h4 class="mb-8">{{ isRegister ? 'Crear premio' : 'Editar premio' }}</h4>
      </template>

      <div class="mb-8">
        <vs-input block v-model="form.name" label="Nombre">
          <!-- <template #icon> @ </template> -->
        </vs-input>
      </div>

      <div class="mb-8">
        <vs-input type="number" block v-model="form.quantity" label="Cantidad">
          <!-- <template #icon> @ </template> -->
        </vs-input>
      </div>

      <template #footer>
        <div class="footer-dialog">
          <vs-button :disabled="$v.form.$invalid" @click.prevent="checkStructure" block> Guardar </vs-button>
        </div>
      </template>
    </vs-dialog>
  </div>
</template>
<script>
import { mapGetters } from "vuex"
import { protectedService } from "@/plugins/axios"
import { required, minLength } from 'vuelidate/lib/validators'

export default {
  props: {
    showModal: {
      type: Boolean,
      default: true
    },
    item: {
			required: true
		},
  },
  data() {
    return {
      services: {
        create_award: "/eventos/create-premio",
        update_award: "/eventos/update-premio/"
      },
      form: {
        name: "",
        quantity: ""
      }
    }
  },
  validations: {
    form: {
      name: {
        required,
        minLength: minLength(2)
      },
      quantity: {
        required
      }
    }
  },
  computed: {
    ...mapGetters(['getIdUser']),
    isRegister() {
      return this.item === null
    }
  },
  mounted() {
    this.typeRequestEvaluation()
  },
  methods: {

    async typeRequestEvaluation() {
      if (!this.isRegister) {
        const { nombre, cantidad } = this.item
        this.form.name = nombre
        this.form.quantity = cantidad
      }
    },

    checkStructure() {

      this.$v.form.$touch()

      if (this.$v.form.$invalid) return

      const payload = {
        idUsuario: this.getIdUser,
        nombre: this.form.name,
        cantidad: this.form.quantity
      }

      this.onSubmit(payload)
    },

    onSubmit(payload) {

      const url = (this.isRegister ? this.services.create_award : this.services.update_award + this.item.idPremio)
      const method = this.isRegister ? "post" : "put"

      protectedService({
        method,
        url,
        data: payload
      }).then(resp => {
        const res = resp.data
        this.$swal.fire({
          html: `<img class="small_icon" src="${require("@/static/icon_circle-check-solid.svg")}"><p class="popup-content-text">
            ${res.msg}
          </p>`,
          customClass: {
            popup: "popup-giveaways",
            confirmButton: "popup-btn-confirm",
          },
          confirmButtonText: "Aceptar",
        })
        this.closeModal(true)
      })
      .catch(() => {
        console.error('Ocurrio un error con el servicio.')
      })
    },

    closeModal(reload = false) {
      this.$emit('closeModal', reload)
    }
  }
}
</script>
<style lang="scss" scoped>
.footer-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(100%);
}

.footer-dialog .new {
  margin: 0px;
  margin-top: 20px;
  padding: 0px;
  font-size: 0.7rem;
}

.footer-dialog .new a {
  color: rgba(var(--vs-primary), 1) !important;
  margin-left: 6px;
}

.footer-dialog .new a:hover {
  text-decoration: underline;
}

.footer-dialog .vs-button {
  margin: 0px;
}

</style>
Editor is loading...
Leave a Comment