so, i'm trying to get a single document from a collection, using the id from the current user, the request [getDoc] works, but when i'm trying to return the information from the exported function is where i', having all the problems, the function is called but it acts before the function returns the values it needs, so it only gets undefined information, i've tryed with .then(), async functions but it doesn't work at all
this is on the main javascript file called by the html <•script type="module" src="./Home.js">
window.addEventListener('DOMContentLoaded', async() => {
UserStatus()
const userinfo = await getUserInfo('UniversityStaff');
//.then((userinfo) => {
console.log(userinfo.data())
// const userProfile = userinfo.data();
// let html ='';
// html+=`
// <h5><b>Usuario:</b>${userProfile.userName}</h5>
// <h5><b>Correo institucional:</b>${userProfile.email}</h5>
// <h5><b>Telefono:</b>${userProfile.phone}</h5>
// <h5><b>Departamento:</b>${userProfile.area}</h5>
// <h5><b>Puesto:</b>${userProfile.jobTitle}</h5>
// <h5><b>Horario:</b>${userProfile.workingHours}</h5>`
// userInfo.innerHTML = html;
// })
})
this is the javascript file that contains all the code from the firebase modules. this is imported by the ./Home.js
export const getUserInfo = (collection) => {
onAuthStateChanged(auth, (user) => {
if (user) {
getDoc(doc(db, collection, user.uid))
.then((doc)=>{
console.log(doc.data())
return doc;
})
}
})
}
Home.js:14 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'data') at Home.js:14:30 (anonymous) @ Home.js:14
•this is the data from the request on [export const getUserInfo]
firebase.js:112 {area: '', id: 'jX3J5XjwDphlE1rQRxlxOHyDqMI2', email: 'userExaple@gmail.com', phone: '6181690397', userName: 'Edmundo Gurrola', …}