| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <template>
- <q-dialog ref="dialogRef" @hide="onDialogHide">
- <q-card
- class="q-dialog-plugin dialog-form-card"
- style="width: 100%; max-width: 900px"
- >
- <DefaultDialogHeader
- :title="props.responsible ? 'Editar Responsável' : 'Novo Responsável'"
- @close="onDialogCancel"
- />
- <q-scroll-area class="dialog-form-scroll" style="height: 65vh">
- <q-card-section class="q-pt-sm">
- <DefaultForm ref="formRef">
- <div class="row q-col-gutter-sm">
- <DefaultInput
- v-model="form.name"
- :error="!!validationErrors.name"
- :error-message="validationErrors.name"
- label="Nome"
- class="col-6"
- :rules="[inputRules.required]"
- />
- <DefaultInput
- v-model="form.degree"
- :error="!!validationErrors.degree"
- :error-message="validationErrors.degree"
- label="Grau de Parentesco"
- class="col-6"
- :rules="[inputRules.required]"
- />
- <DefaultInputDatePicker
- v-model="form.birth_date"
- :error="!!validationErrors.birth_date"
- :error-message="validationErrors.birth_date"
- label="Data de Nascimento"
- class="col-4"
- :rules="[inputRules.required]"
- />
- <DefaultInput
- v-model="form.cpf"
- :error="!!validationErrors.cpf"
- :error-message="validationErrors.cpf"
- label="CPF"
- class="col-4"
- :mask="masks.Brasil.cpf"
- :rules="[inputRules.required, inputRules.cpf]"
- />
- <DefaultSelect
- v-model="form.gender"
- :error="!!validationErrors.gender"
- :error-message="validationErrors.gender"
- label="Gênero"
- class="col-4"
- emit-value
- map-options
- :options="genderOptions"
- />
- <DefaultInput
- v-model="form.email"
- :error="!!validationErrors.email"
- :error-message="validationErrors.email"
- label="E-mail"
- class="col-6"
- type="email"
- :rules="[inputRules.email]"
- />
- <DefaultInput
- v-model="form.phone"
- :error="!!validationErrors.phone"
- :error-message="validationErrors.phone"
- label="Telefone"
- class="col-6"
- :mask="masks.Brasil.celular"
- :rules="[inputRules.required]"
- />
- <DefaultCepInput
- v-model="form.postal_code"
- :error="!!validationErrors.postal_code"
- :error-message="validationErrors.postal_code"
- class="col-4"
- @rua="(v) => (form.street = v)"
- @bairro="(v) => (form.neighborhood = v)"
- @uf="(v) => stateSelectRef?.selectStateByCode(v)"
- @cidade="(v) => citySelectRef?.selectCityByName(v)"
- />
- <DefaultInput
- v-model="form.street"
- :error="!!validationErrors.street"
- :error-message="validationErrors.street"
- label="Endereço"
- class="col-5"
- />
- <DefaultInput
- v-model="form.address_number"
- :error="!!validationErrors.address_number"
- :error-message="validationErrors.address_number"
- label="Número"
- class="col-3"
- />
- <DefaultInput
- v-model="form.neighborhood"
- :error="!!validationErrors.neighborhood"
- :error-message="validationErrors.neighborhood"
- label="Bairro"
- class="col-4"
- />
- <CitySelect
- ref="citySelectRef"
- v-model="selectedCity"
- :error="!!validationErrors.city_id"
- :error-message="validationErrors.city_id"
- label="Cidade"
- class="col-4"
- :state="selectedState"
- :initial-id="props.responsible?.city_id ?? null"
- />
- <StateSelect
- ref="stateSelectRef"
- v-model="selectedState"
- :error="!!validationErrors.state_id"
- :error-message="validationErrors.state_id"
- label="Estado"
- class="col-4"
- :initial-id="props.responsible?.state_id ?? null"
- />
- <DefaultInput
- v-model="form.complement"
- :error="!!validationErrors.complement"
- :error-message="validationErrors.complement"
- label="Complemento"
- class="col-12"
- />
- <DefaultInput
- v-model="form.notes"
- :error="!!validationErrors.notes"
- :error-message="validationErrors.notes"
- label="Observações"
- class="col-12"
- type="textarea"
- :input-style="{ minHeight: '120px' }"
- autogrow
- />
- </div>
- </DefaultForm>
- </q-card-section>
- </q-scroll-area>
- <q-separator />
- <q-card-actions align="right">
- <q-btn
- outline
- color="primary"
- label="CANCELAR"
- @click="onDialogCancel"
- />
- <q-btn
- color="primary"
- label="SALVAR"
- :loading="saving"
- @click="handleSave"
- />
- </q-card-actions>
- </q-card>
- </q-dialog>
- </template>
- <script setup>
- import { ref, watch, useTemplateRef } from "vue";
- import { useDialogPluginComponent } from "quasar";
- import DefaultDialogHeader from "src/components/defaults/DefaultDialogHeader.vue";
- import DefaultInput from "src/components/defaults/DefaultInput.vue";
- import DefaultSelect from "src/components/defaults/DefaultSelect.vue";
- import DefaultInputDatePicker from "src/components/defaults/DefaultInputDatePicker.vue";
- import DefaultCepInput from "src/components/defaults/DefaultCepInput.vue";
- import CitySelect from "src/components/selects/CitySelect.vue";
- import StateSelect from "src/components/selects/StateSelect.vue";
- import { useInputRules } from "src/composables/useInputRules";
- import { useSubmitHandler } from "src/composables/useSubmitHandler";
- import {
- createStudentResponsible,
- updateStudentResponsible,
- } from "src/api/studentResponsible";
- import masks from "src/helpers/masks";
- import { formatDateYMDtoDMY, formatDateDMYtoYMD } from "src/helpers/utils";
- const props = defineProps({
- studentId: {
- type: Number,
- required: true,
- },
- responsible: {
- type: Object,
- default: null,
- },
- });
- defineEmits([...useDialogPluginComponent.emits]);
- const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } =
- useDialogPluginComponent();
- const { inputRules } = useInputRules();
- const formRef = useTemplateRef("formRef");
- const stateSelectRef = useTemplateRef("stateSelectRef");
- const citySelectRef = useTemplateRef("citySelectRef");
- const selectedState = ref(null);
- const selectedCity = ref(null);
- const genderOptions = [
- { label: "Masculino", value: "male" },
- { label: "Feminino", value: "female" },
- { label: "Outro", value: "other" },
- { label: "Prefiro não informar", value: "no_preference" },
- ];
- const form = ref(
- props.responsible
- ? {
- name: props.responsible.name ?? null,
- birth_date: props.responsible.birth_date
- ? formatDateYMDtoDMY(props.responsible.birth_date)
- : null,
- cpf: props.responsible.cpf ?? null,
- gender: props.responsible.gender ?? "no_preference",
- degree: props.responsible.degree ?? null,
- email: props.responsible.email ?? null,
- phone: props.responsible.phone ?? null,
- postal_code: props.responsible.postal_code ?? null,
- street: props.responsible.street ?? null,
- address_number: props.responsible.address_number ?? null,
- neighborhood: props.responsible.neighborhood ?? null,
- state_id: props.responsible.state_id ?? null,
- city_id: props.responsible.city_id ?? null,
- complement: props.responsible.complement ?? null,
- notes: props.responsible.notes ?? null,
- }
- : {
- name: null,
- birth_date: null,
- cpf: null,
- gender: "no_preference",
- degree: null,
- email: null,
- phone: null,
- postal_code: null,
- street: null,
- address_number: null,
- neighborhood: null,
- state_id: null,
- city_id: null,
- complement: null,
- notes: null,
- },
- );
- watch(selectedState, (state) => {
- form.value.state_id = state?.value ?? null;
- });
- watch(selectedCity, (city) => {
- form.value.city_id = city?.value ?? null;
- });
- const { loading: saving, validationErrors, execute } = useSubmitHandler({
- formRef,
- onSuccess: () => onDialogOK(true),
- });
- async function handleSave() {
- const valid = await formRef.value?.validate();
- if (!valid) return;
- const payload = {
- student_id: props.studentId,
- name: form.value.name,
- birth_date: form.value.birth_date
- ? formatDateDMYtoYMD(form.value.birth_date)
- : null,
- cpf: form.value.cpf,
- gender: form.value.gender,
- degree: form.value.degree,
- email: form.value.email,
- phone: form.value.phone,
- postal_code: form.value.postal_code,
- street: form.value.street,
- address_number: form.value.address_number,
- neighborhood: form.value.neighborhood,
- city_id: form.value.city_id,
- state_id: form.value.state_id,
- complement: form.value.complement,
- notes: form.value.notes,
- };
- if (props.responsible) {
- await execute(() =>
- updateStudentResponsible(props.responsible.id, payload),
- );
- } else {
- await execute(() => createStudentResponsible(payload));
- }
- }
- </script>
|