Files
waseel/components/google-text-input.tsx
T

85 lines
2.4 KiB
TypeScript

import { View, Image } from "react-native";
import { GooglePlacesAutocomplete } from "react-native-google-places-autocomplete";
import { icons } from "@/constants";
import { GoogleInputProps } from "@/types/type";
export const GoogleTextInput = ({
icon,
initialLocation,
containerStyles,
textInputBackgroundColor,
handlePress,
}: GoogleInputProps) => {
const googlePlacesApiKey = process.env.EXPO_PUBLIC_GOOGLE_API_KEY!;
console.log(googlePlacesApiKey);
return (
<View
className={`flex flex-row items-center justify-center relative z-50 rounded-xl ${containerStyles}`}
>
<GooglePlacesAutocomplete
fetchDetails={true}
placeholder="Search"
debounce={200}
styles={{
textInputContainer: {
alignItems: "center",
justifyContent: "center",
borderRadius: 20,
marginHorizontal: 20,
position: "relative",
shadowColor: "#d4d4d4",
},
textInput: {
backgroundColor: textInputBackgroundColor
? textInputBackgroundColor
: "white",
fontSize: 16,
fontWeight: "600",
marginTop: 5,
width: "100%",
borderRadius: 200,
},
listView: {
backgroundColor: textInputBackgroundColor
? textInputBackgroundColor
: "white",
position: "relative",
top: 0,
width: "100%",
borderRadius: 10,
shadowColor: "#d4d4d4",
zIndex: 99,
},
}}
onPress={(data, details = null) => {
handlePress({
latitude: details?.geometry.location.lat!,
longitude: details?.geometry.location.lng!,
address: data.description,
});
}}
query={{
key: googlePlacesApiKey,
language: "en",
}}
renderLeftButton={() => (
<View className="justify-center items-center w-6 h-6">
<Image
source={icon ? icon : icons.search}
className="w-6 h-6"
resizeMode="contain"
/>
</View>
)}
textInputProps={{
placeholderTextColor: "gray",
placeholder: initialLocation ?? "Where do you want to go?",
}}
onFail={console.log}
/>
</View>
);
};