Files
exchange-2.0/resources/assets/vue/components/settings/forms/SegmentFormComponent.vue
T

83 lines
2.9 KiB
Vue

<template>
<div class="row">
<div class="col">
<loading-component style="height: 50px; top: 0;" key="1" color="success" v-show="isLoading"></loading-component>
<div class="row" v-show="!isLoading">
<div class="col">
<div class="row m-b-20">
<div class="col">
<h6 class="all-caps m-b-5 bold no-margin">{{ headerTitle }}</h6>
</div>
</div>
<div class="row m-b-5 animate__animated animate__fadeInUpBig animate__fast" v-if="error">
<div class="col">
<small class="bold fs-10 text-danger">{{ error }}</small>
</div>
</div>
<div class="row m-b-10">
<div class="col">
<validation-wrapper-component :validator="v$.parameters.name">
<label>Name</label>
<input type="text" class="form-control" v-model="parameters.name">
</validation-wrapper-component>
</div>
</div>
<div class="row">
<div class="col p-r-5">
<div class="btn btn-sm btn-default bg-master-lightest btn-block b-rad-none" data-dismiss="modal">Cancel</div>
</div>
<div class="col p-l-5">
<div class="btn btn-sm btn-success btn-block b-rad-none" @click="submitForm">Create</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { useFormHandler } from '@/composables/useFormHandler';
import { useVuelidate } from '@vuelidate/core';
import { required } from '@vuelidate/validators';
import route from '@/general/functions/router';
interface Props {
section: string;
type?: number;
}
const props = withDefaults(defineProps<Props>(), {
type: 2
});
const { parameters, submit, error, isLoading } = useFormHandler({
section: props.section,
data: {
name: '',
type: props.type
}
});
const rules = {
parameters: {
name: { required }
}
};
const v$ = useVuelidate(rules, { parameters });
const headerTitle = computed(() => {
if (props.type === 1) return 'Create Standard Segment';
if (props.type === 2) return 'Create Custom Segment';
if (props.type === 3) return 'Create Label';
return 'Create';
});
const submitForm = async () => {
const isValid = await v$.value.$validate();
if (!isValid) return;
submit(route('api.segment.create'), 'post', props.section, true, false, parameters.value);
};
</script>