forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
import React, { useState, createContext, useContext, useEffect } from "react"
|
|
import { CurrentLocationContext } from "./CurrentLocationContext";
|
|
|
|
export const EventLocationContext = createContext();
|
|
|
|
const EventLocationProvider = ({ children }) => {
|
|
|
|
const context = useContext(CurrentLocationContext);
|
|
|
|
//problema: as vzs renderiza antes de carregar a localização correta do usuário
|
|
const [eventLocation, setEventLocation] = useState(context.currentLocation);
|
|
const [eventCoordinates, setEventCoordinates] = useState(context.currentCoordinates);
|
|
|
|
console.log(context.currentLocation);
|
|
|
|
//Função chamada em MapFormScreen após o usuário definir a nova localização
|
|
const saveNewLocation = (local, coordinates) => {
|
|
setEventLocation(local);
|
|
setEventCoordinates(coordinates);
|
|
// console.log("NOVO LOCAL: " + local);
|
|
// console.log("NOVa coordenada: " + coordinates.latitude);
|
|
}
|
|
|
|
|
|
const defaultLocation = () =>{
|
|
setEventCoordinates(context.currentCoordinates);
|
|
setEventLocation(context.currentLocation);
|
|
}
|
|
|
|
return (
|
|
<EventLocationContext.Provider value={{
|
|
eventLocation,
|
|
eventCoordinates,
|
|
saveNewLocation,
|
|
defaultLocation,
|
|
}}>
|
|
{children}
|
|
</EventLocationContext.Provider>
|
|
)
|
|
}
|
|
export default EventLocationProvider;
|