Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7917 | Rev 8021 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7917 Rev 7935
Línea 23... Línea 23...
23
};
23
};
Línea 24... Línea 24...
24
 
24
 
Línea 25... Línea 25...
25
function SearchLocationInput({ googleApiKey, setValue, value, updateData }) {
25
function SearchLocationInput({ googleApiKey, setValue, value, updateData }) {
26
 
26
 
27
    const autoCompleteRef = useRef(null);
-
 
28
    const [data, setData] = useState({
-
 
29
        formatted_address: '',
-
 
30
        address1: '',
-
 
31
        address2: '',
-
 
32
        country: '',
-
 
33
        state: '',
-
 
34
        city1: '',
-
 
35
        city2: '',
-
 
36
        postal_code: '',
-
 
37
        latitude: 0,
-
 
38
        longitude: 0,
-
 
Línea 39... Línea 27...
39
        location_search: ''
27
    const autoCompleteRef = useRef(null);
40
    })
28
    const [data, setData] = useState({})
41
 
29
 
42
    function handleScriptLoad(updateQuery, autoCompleteRef, setData) {
30
    function handleScriptLoad(updateQuery, autoCompleteRef, setData) {
Línea 50... Línea 38...
50
    }
38
    }
Línea 51... Línea 39...
51
 
39
 
Línea 52... Línea 40...
52
    async function handlePlaceSelect(updateQuery) {
40
    async function handlePlaceSelect(updateQuery) {
53
 
41
 
-
 
42
        const place = await autoComplete.getPlace()
-
 
43
        let obj = {
-
 
44
            formatted_address: '',
-
 
45
            address1: '',
-
 
46
            address2: '',
-
 
47
            country: '',
-
 
48
            state: '',
-
 
49
            city1: '',
-
 
50
            city2: '',
-
 
51
            postal_code: '',
-
 
52
            latitude: 0,
-
 
53
            longitude: 0,
-
 
54
            location_search: ''
-
 
55
        }
-
 
56
 
-
 
57
        obj.formatted_address = place.address_components.formatted_address
Línea 54... Línea -...
54
        const place = await autoComplete.getPlace()
-
 
55
        console.log(place)
-
 
56
 
-
 
57
        setData({
-
 
58
            ...data,
-
 
59
            formatted_address: place.address_components.formatted_address,
-
 
60
            latitude: place.geometry?.location.lat(),
-
 
61
            longitude: place.geometry?.location.lng()
58
        obj.latitude = place.geometry?.location.lat()
62
        })
59
        obj.longitude = place.geometry?.location.lng()
63
 
-
 
64
        place.address_components?.map((address_component) => {
-
 
65
            if (address_component.types[0] == "route") {
60
 
66
                setData({
-
 
67
                    ...data,
61
        await place.address_components?.map((address_component) => {
68
                    address1: address_component.long_name
62
            if (address_component.types[0] == "route") {
69
                })
-
 
70
            }
-
 
71
            if (address_component.types[0] == "sublocality") {
63
                obj.address1 = address_component.long_name
72
                setData({
-
 
73
                    ...data,
64
            }
74
                    address2: address_component.long_name
65
            if (address_component.types[0] == "sublocality") {
75
                })
-
 
76
            }
-
 
77
            if (address_component.types[0] == "locality") {
66
                obj.address2 = address_component.long_name
78
                setData({
-
 
79
                    ...data,
67
            }
80
                    city1: address_component.long_name
68
            if (address_component.types[0] == "locality") {
81
                })
-
 
82
            }
-
 
83
            if (address_component.types[0] == "administrative_area_level_2") {
69
                obj.city1 = address_component.long_name
84
                setData({
-
 
85
                    ...data,
70
            }
86
                    city2: address_component.long_name
71
            if (address_component.types[0] == "administrative_area_level_2") {
87
                })
-
 
88
            }
-
 
89
            if (address_component.types[0] == "administrative_area_level_1") {
72
                obj.city2 = address_component.long_name
90
                setData({
-
 
91
                    ...data,
73
            }
92
                    state: address_component.long_name
74
            if (address_component.types[0] == "administrative_area_level_1") {
93
                })
-
 
94
            }
-
 
95
            if (address_component.types[0] == "country") {
75
                obj.state = address_component.long_name
96
                setData({
-
 
97
                    ...data,
76
            }
98
                    country: address_component.long_name
77
            if (address_component.types[0] == "country") {
99
                })
-
 
100
            }
-
 
101
            if (address_component.types[0] == "postal_code") {
78
                obj.country = address_component.long_name
102
                setData({
-
 
103
                    ...data,
79
            }
104
                    postal_code: address_component.long_name
80
            if (address_component.types[0] == "postal_code") {
Línea 105... Línea 81...
105
                })
81
                obj.postal_code = address_component.long_name
-
 
82
            }
106
            }
83
        })
Línea 107... Línea 84...
107
        })
84
 
108
 
85
        updateQuery(place.formatted_address)