-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9a0945
commit 9bebdd9
Showing
4 changed files
with
227 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,82 @@ | ||
// Initializa a integração com o Firebase | ||
import { db } from "../../firebaseConfig.mjs"; | ||
import { doc, getDoc, updateDoc } from "firebase/firestore"; | ||
import { doc, getDoc, setDoc } from "firebase/firestore"; | ||
|
||
import '../lista.mjs'; | ||
|
||
// Obtém o ano da edição atual do festival | ||
import { edicaoAtualFestival } from "../lista.mjs"; | ||
|
||
/** | ||
* TODO: Valida o resgate de voucher baseado no turno do voluntário | ||
*/ | ||
// Obtém os elementos referentes ao resgate de voucher do voluntário | ||
const btnResgateVoucher = document.getElementById("cadastraResgateVoucher"); | ||
const optResgateVoucher = document.getElementById("tipoVoucher"); | ||
const txtResgateVoucher = document.getElementById("informacoesResgateVoucher"); | ||
|
||
/** | ||
* Cadastra o resgate de voucher do voluntário em um novo intervalo de trabalho | ||
* Exibe as informações refentes à edição atual do festival relacionadas ao voluntário | ||
* no offcanvas de gestão de recursos do voluntário no festival | ||
*/ | ||
document.getElementById("corpoTabelaDeListagemDeVoluntarios").addEventListener("click", async (event) => { | ||
const idVoluntario = event.target.closest("tr").id; | ||
// Limpa o campo de informações de resgate de voucher | ||
txtResgateVoucher.textContent = ""; | ||
|
||
// Acessa as informações do voluntário | ||
const idVoluntario = event.target.closest("tr").id; | ||
const docVoluntarioRef = doc(db, "voluntario", idVoluntario); | ||
const docFestivalRef = doc(docVoluntarioRef, 'festival', edicaoAtualFestival); | ||
const festival = await getDoc(docFestivalRef); | ||
|
||
// Identifica o último intervalo cadastrado para obter a retirada de voucher | ||
const horariosSexta = festival.data().expediente.horarios_sexta.intervalo; | ||
console.log(horariosSexta); | ||
|
||
const ultimoIntervalo = Object.keys(horariosSexta).pop(); | ||
const ultimoCaracter = ultimoIntervalo.charAt(ultimoIntervalo.length - 1); | ||
const novoCaracter = String.fromCharCode(ultimoCaracter.charCodeAt(0) + 1); | ||
const novoIntervalo = `intervalo_${novoCaracter}`; | ||
|
||
await updateDoc(docFestivalRef, { | ||
"expediente.horarios_sexta.intervalo": { | ||
...horariosSexta, | ||
[novoIntervalo]: { | ||
"inicio_intervalo": new Date(), | ||
"termino_intervalo": null, | ||
"resgate_voucher": true, | ||
"devolucao_hapi": false | ||
let ultimoIntervalo = Object.keys(horariosSexta).pop(); | ||
|
||
/** | ||
* Associa o tipo de voucher selecionado ao voluntário | ||
*/ | ||
btnResgateVoucher.addEventListener("click", async (event) => { | ||
let tipoVoucherDoVoluntario = optResgateVoucher.value; | ||
|
||
await setDoc(docFestivalRef, { | ||
expediente: { | ||
horarios_sexta: { | ||
intervalo: { | ||
[ultimoIntervalo]: { | ||
resgate_voucher: tipoVoucherDoVoluntario, | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, { merge: true }).then(() => { | ||
console.log("Voucher resgatado com sucesso"); | ||
|
||
// Exibe o tipo de voucher resgatado pelo voluntário | ||
txtResgateVoucher.innerHTML = `<small class="opacity-50 m-0 px-4">Voucher resgatado: ${tipoVoucherDoVoluntario}</small>`; | ||
bloquearResgateVoucher(); | ||
}).catch((erro) => { | ||
console.error("Erro ao resgatar voucher: ", erro); | ||
}); | ||
}); | ||
console.log("Intervalo atualizado para corresponder ao resgate de voucher do voluntário"); | ||
}); | ||
}); | ||
|
||
/** | ||
* TODO: Valida o resgate de voucher baseado no turno do voluntário | ||
*/ | ||
|
||
export function bloquearResgateVoucher() { | ||
// Desabilita o campo de seleção de voucher | ||
optResgateVoucher.disabled = true; | ||
optResgateVoucher.classList.remove("is-invalid"); | ||
|
||
// Desabilita o botão de resgate de voucher | ||
btnResgateVoucher.disabled = true; | ||
btnResgateVoucher.style.cursor = "not-allowed"; | ||
} | ||
|
||
export function desbloquearResgateVoucher() { | ||
// Habilita o campo de seleção de voucher | ||
optResgateVoucher.disabled = false; | ||
|
||
// Habilita o botão de resgate de voucher | ||
btnResgateVoucher.disabled = false; | ||
btnResgateVoucher.style.cursor = "pointer"; | ||
} |
Oops, something went wrong.