Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] modificações da us02 #105 #53

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

95 changes: 66 additions & 29 deletions src/Pages/Public/MemberShip/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useState } from "react";
import { useState, useEffect } from "react";
import "./index.css";
import "../../../index.css";
import dayjs from "dayjs";
Expand All @@ -13,6 +13,7 @@ import Alert from "@mui/material/Alert";
import SecondaryButton from "../../../Components/SecondaryButton";
import Modal from "../../../Components/Modal";
import { useNavigate } from "react-router-dom";
import { listOrgans } from "../../../Services/organService";

const MemberShip = () => {
const [email, setEmail] = useState("");
Expand Down Expand Up @@ -54,6 +55,8 @@ const MemberShip = () => {
const [errors, setErrors] = useState({});
const [touchedFields, setTouchedFields] = useState({});
const [unfilledDependent, setUnfilledDependent] = useState(false);
const [orgaosList, setOrgaosList] = useState([]);
const [lotacaoList, setLotacaoList] = useState([]);

const navigate = useNavigate();
// Function to validate a field
Expand Down Expand Up @@ -298,11 +301,56 @@ const MemberShip = () => {
return emailRegex.test(email);
};

//FUNÇÕES UTILIZADAS
useEffect(() => {
const getOrgaos = async () => {
try {
const orgaos = await listOrgans(); // Presumindo que listOrgans faz a requisição ao backend

if (Array.isArray(orgaos)) {
// Extraindo valores únicos de órgãos
const uniqueOrgaos = [...new Set(orgaos.map((orgao) => orgao.orgao))];

// Extraindo valores únicos de lotações
const uniqueLotacoes = [
...new Set(
orgaos.flatMap((orgao) =>
orgao.lotacao.map((lotacao) => lotacao.nomeLotacao)
)
),
];

setOrgaosList(uniqueOrgaos);
setLotacaoList(uniqueLotacoes);

console.log("Lista de Órgãos:", uniqueOrgaos);
console.log("Lista de Lotações:", uniqueLotacoes);
} else {
console.error("Os dados recebidos não são um array.");
}
} catch (error) {
console.error("Erro ao buscar órgãos:", error);
}
};

getOrgaos();
}, []);

const handleSubmit = () => {
const erros = {};

//CAMPOS PBRIGATÓRIOS
if (!email) erros.email = 1;
//if (!sexo) erros.sexo = 1;
if (!sexo) erros.sexo = 1;
if (!lotacao) erros.lotacao = 1;
if (!nomeCompleto) erros.nomeCompleto = 1;
if (!matricula) erros.matricula = 1;
if (!rg) erros.rg = 1;
if (!orgao) erros.orgao = 1;
if (!cpf) erros.cpf = 1;
if (!celular) erros.celular = 1;

// CAMPOS NÃO OBRIGATÓRIOS
//if (!estadoCivil) erros.estadoCivil = 1;
//if (!tipoSanguineo) erros.tipoSanguineo = 1;
//if (!uf_naturalidade) erros.uf_naturalidade = 1;
Expand All @@ -313,29 +361,24 @@ const MemberShip = () => {
//if (!dataDeNascimento) erros.dataDeNascimento = 1;
//if (!dataExpedicao) erros.dataExpedicao = 1;
//if (!cargo) erros.cargo = 1;
//if (!lotacao) erros.lotacao = 1;
if (!matricula) erros.matricula = 1;
if (!nomeCompleto) erros.nomeCompleto = 1;
//if (!naturalidade) erros.naturalidade = 1;
if (!rg) erros.rg = 1;
//if (!orgao) erros.orgao = 1;
if (!cpf) erros.cpf = 1;
//if (!nomeDaMae) erros.nomeDaMae = 1;
//if (!nomeDoPai) erros.nomeDoPai = 1;
//if (!cep) erros.cep = 1;
//if (!cidade) erros.cidade = 1;
//if (!logradouro) erros.logradouro = 1;
//if (!complemento) erros.complemento = 1;
//if (!telefone) erros.telefone = 1;
if (!celular) erros.celular = 1;
//if (!postoDeTrabalho) erros.postoDeTrabalho = 1;
//if (!orgaoExpedidor) erros.orgaoExpedidor = 1;
//if (!religiao) erros.religiao = 1;
//if (telefone.length < 14) erros.telefone = 1;
//if (cep.length < 9) erros.cep = 1;

//VALIDAÇÕES DE CAMPO
if (isValidEmail(email) === false) erros.email = 1;
if (cpf.length < 14) erros.cpf = 1;
if (rg.length < 7) erros.rg = 1;
//if (cep.length < 9) erros.cep = 1;
//if (telefone.length < 14) erros.telefone = 1;
if (celular.length < 15) erros.celular = 1;

if (Object.keys(erros).length > 0) {
Expand Down Expand Up @@ -441,7 +484,7 @@ const MemberShip = () => {
/>

<FieldSelect
label="Sexo"
label="Sexo *"
value={sexo}
onChange={handleChangeSexo}
options={sexoList}
Expand Down Expand Up @@ -593,7 +636,7 @@ const MemberShip = () => {
/>

<FieldSelect
label="UF *"
label="UF"
value={uf_endereco}
onChange={handleChangeUfEndereco}
options={ufList}
Expand Down Expand Up @@ -636,21 +679,25 @@ const MemberShip = () => {
onBlur={(e) => handleBlur(e, "dataContratacao")}
erro={erro("dataContratacao")}
/>
<FieldText
label="Lotação"

<FieldSelect
label="Lotação *"
value={lotacao}
onChange={(e) => setlotacao(e.target.value)}
options={lotacaoList}
onBlur={(e) => handleBlur(e, "lotacao")}
erro={erro("lotacao")}
/>

<FieldText
label="Órgão"
<FieldSelect
label="Órgão *"
value={orgao}
onChange={(e) => setOrgao(e.target.value)}
options={orgaosList}
onBlur={(e) => handleBlur(e, "orgao")}
erro={erro("orgao")}
/>

<FieldText
label="Posto de Trabalho"
value={postoDeTrabalho}
Expand All @@ -672,12 +719,7 @@ const MemberShip = () => {
<FieldText
label="Nome Completo *"
value={currentDependent.nomeCompletoDependente}
onChange={(e) =>
handleDependentChange(
"nomeCompletoDependente",
e.target.value
)
}
onChange={(e) => handleDependentChange("nomeCompletoDependente", e.target.value)}
/>

<DataSelect
Expand All @@ -699,12 +741,7 @@ const MemberShip = () => {
<FieldText
label="CPF *"
value={currentDependent.cpfDependente}
onChange={(e) =>
handleDependentChange(
"cpfDependente",
mascaraCPF(e.target.value)
)
}
onChange={(e) => handleDependentChange("cpfDependente",mascaraCPF(e.target.value))}
/>

<FieldText
Expand Down
Loading