| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- import {
- View,
- Text,
- StyleSheet,
- Pressable,
- Image,
- ImageSourcePropType,
- TouchableWithoutFeedback,
- Keyboard,
- ActivityIndicator
- } from 'react-native';
- import React, { useState, useEffect, useRef, useMemo } from 'react';
- import { SafeAreaView } from 'react-native-safe-area-context';
- import MapView from 'react-native-maps';
- import * as Location from 'expo-location';
- import { router, useLocalSearchParams } from 'expo-router';
- import { ArrowIconSvg, CheckMarkLogoSvg } from '../global/SVG';
- import NormalInput from '../global/normal_input';
- import BottomSheet, { BottomSheetScrollView } from '@gorhom/bottom-sheet';
- import { chargeStationService } from '../../service/chargeStationService';
- import { PROVIDER_GOOGLE, Marker, Region } from 'react-native-maps';
- import { calculateDistance } from '../global/distanceCalculator';
- interface TabItem {
- imgURL?: ImageSourcePropType | undefined;
- date: string;
- time: string;
- chargeStationName: string;
- chargeStationAddress: string;
- distance: string;
- stationID?: string;
- longitude?: number;
- latitude?: number;
- lat?: number;
- lng?: number;
- }
- const dummyTabItems: TabItem[] = [
- {
- imgURL: require('../../assets/dummyStationPicture.png'),
- date: '今天',
- time: '16:30',
- chargeStationName: '觀塘偉業街充電站',
- chargeStationAddress: '九龍觀塘偉業街143號地下',
- distance: '400米',
- latitude: 22.31337,
- longitude: 114.21823
- },
- {
- imgURL: require('../../assets/dummyStationPicture5.jpeg'),
- date: '3月15',
- time: '17:45',
- chargeStationName: '香港沙頭角農莊',
- chargeStationAddress: '香港沙頭角農莊停車場',
- distance: '680米',
- latitude: 22.53898,
- longitude: 114.21319
- },
- {
- imgURL: require('../../assets/dummyStationPicture4.jpeg'),
- date: '3月15',
- time: '17:45',
- chargeStationName: '黃竹坑香葉道充電站',
- chargeStationAddress: '黃竹坑香葉道44號地下',
- distance: '680米',
- latitude: 22.24839,
- longitude: 114.16303
- }
- ];
- const SearchResultComponent = () => {
- const [region, setRegion] = useState<Region>({
- latitude: 22.302711, // Default to Hong Kong coordinates
- longitude: 114.177216,
- latitudeDelta: 0.01,
- longitudeDelta: 0.01
- });
- const [errorMsg, setErrorMsg] = useState<string | null>(null);
- const [searchInput, setSearchInput] = useState<string>('');
- const sheetRef = useRef<BottomSheet>(null);
- const snapPoints = useMemo(() => ['25%', '65%'], []);
- const mapRef = useRef<MapView>(null);
- const params = useLocalSearchParams();
- const [isLoading, setIsLoading] = useState(true);
- const [filteredItems, setFilteredItems] = useState<TabItem[]>([]);
- useEffect(() => {
- if (params.latitude && params.longitude) {
- setRegion({
- latitude: parseFloat(params.latitude as string),
- longitude: parseFloat(params.longitude as string),
- latitudeDelta: 0.01,
- longitudeDelta: 0.01
- });
- } else {
- (async () => {
- let { status } = await Location.requestForegroundPermissionsAsync();
- if (status !== 'granted') {
- setErrorMsg('Permission to access location was denied');
- return;
- }
- let myLocation = await Location.getLastKnownPositionAsync({});
- if (myLocation) {
- setRegion({
- latitude: myLocation.coords.latitude,
- longitude: myLocation.coords.longitude,
- latitudeDelta: 0.01,
- longitudeDelta: 0.01
- });
- }
- })();
- }
- }, []);
- useEffect(() => {
- if (mapRef.current && region) {
- mapRef.current.animateToRegion(region, 1000);
- }
- }, [region]);
- useEffect(() => {
- if (searchInput === '') {
- setFilteredItems([]);
- } else {
- const filteredData = dummyTabItems.filter((item) =>
- item.chargeStationName.includes(searchInput.toLocaleUpperCase())
- );
- setFilteredItems(filteredData);
- }
- }, [searchInput]);
- if (errorMsg) {
- return (
- <View className="flex-1 justify-center items-center ">
- <Text className="text-red-500">{errorMsg}</Text>
- </View>
- );
- }
- const handleRegionChange = (newRegion: Region) => {
- if (mapRef.current) {
- mapRef.current.animateToRegion(newRegion, 1000);
- }
- setRegion(newRegion);
- sheetRef.current?.snapToIndex(0);
- };
- // ************************************************************************************************
- const [currentLocation, setCurrentLocation] = useState<Location.LocationObject | null>(null);
- const [stations, setStations] = useState([]);
- const [tabItems, setTabItems] = useState<TabItem[]>([]);
- const getCurrentLocation = async () => {
- let { status } = await Location.requestForegroundPermissionsAsync();
- if (status !== 'granted') {
- console.error('Permission to access location was denied');
- return;
- }
- let location = await Location.getLastKnownPositionAsync({});
- setCurrentLocation(location);
- };
- useEffect(() => {
- getCurrentLocation();
- }, []);
- const fetchStations = async () => {
- setIsLoading(true);
- const fetchedStations = await chargeStationService.fetchChargeStations();
- setStations(fetchedStations);
- if (currentLocation) {
- const TabItems = await Promise.all(
- fetchedStations.map(async (station: any) => {
- return {
- chargeStationAddress: station.Address,
- chargeStationName: station.StationName,
- lng: station.StationLng,
- lat: station.StationLat,
- date: '今天',
- stationID: station.StationID,
- imgURL: station.image
- };
- })
- );
- setTabItems(TabItems);
- setIsLoading(false);
- }
- };
- useEffect(() => {
- if (currentLocation) {
- fetchStations();
- }
- }, [currentLocation]);
- const formatDistance = (distanceInMeters: number): string => {
- if (distanceInMeters < 1000) {
- return `${Math.round(distanceInMeters)}米`;
- } else {
- const distanceInKm = distanceInMeters / 1000;
- return `${distanceInKm.toFixed(1)}公里`;
- }
- };
- return (
- <TouchableWithoutFeedback onPress={Keyboard.dismiss}>
- <SafeAreaView className="flex-1" edges={['top', 'left', 'right']}>
- <View className="flex-1 relative">
- <View
- style={{
- position: 'absolute',
- top: 10,
- left: 10,
- right: 10,
- zIndex: 1,
- backgroundColor: 'transparent',
- alignItems: 'center'
- }}
- >
- <View className=" flex-1 flex-row bg-white rounded-xl">
- <Pressable
- style={styles.leftArrowBackButton}
- onPress={() => {
- if (router.canGoBack()) {
- router.back();
- } else {
- router.replace('/(auth)/(tabs)/(home)');
- }
- }}
- >
- <ArrowIconSvg />
- </Pressable>
- <NormalInput
- placeholder="搜尋這裡"
- onChangeText={(text) => {
- setSearchInput(text);
- }}
- extendedStyle={styles.textInput}
- />
- </View>
- {filteredItems.length > 0 && (
- <View style={styles.dropdown}>
- <View>
- {filteredItems.map((item, index) => (
- <Pressable
- key={index}
- onPress={() => {
- setSearchInput(item.chargeStationName);
- setFilteredItems([]);
- handleRegionChange({
- latitude: item.lat as number,
- longitude: item.lng as number,
- latitudeDelta: 0.01,
- longitudeDelta: 0.01
- });
- }}
- style={({ pressed }) => [
- styles.dropdownItem,
- pressed && styles.dropdownItemPress
- ]}
- >
- <Text>{item.chargeStationName}</Text>
- </Pressable>
- ))}
- </View>
- </View>
- )}
- </View>
- <MapView
- ref={mapRef}
- provider={PROVIDER_GOOGLE}
- style={styles.map}
- region={region}
- // initialRegion={region}
- cameraZoomRange={{
- minCenterCoordinateDistance: 500,
- maxCenterCoordinateDistance: 90000,
- animated: true
- }}
- showsUserLocation={true}
- showsMyLocationButton={false}
- >
- {tabItems.map((item, index) => (
- <Marker
- key={index}
- coordinate={{
- latitude: item.lat as number,
- longitude: item.lng as number
- }}
- title={item.chargeStationName}
- description={item.chargeStationAddress}
- />
- ))}
- </MapView>
- <BottomSheet ref={sheetRef} index={0} snapPoints={snapPoints}>
- <BottomSheetScrollView contentContainerStyle={styles.contentContainer}>
- <View className="flex-1 mx-[5%]">
- {isLoading ? (
- <View className="pt-14">
- <ActivityIndicator color="#34657b" />
- </View>
- ) : (
- tabItems
- .filter((item) => item.chargeStationName.includes(searchInput.toUpperCase()))
- .map((item, index) => {
- return (
- <Pressable
- key={index}
- onPress={() => {
- handleRegionChange({
- latitude: item.lat as number,
- longitude: item.lng as number,
- latitudeDelta: 0.01,
- longitudeDelta: 0.01
- });
- router.push({
- pathname: '/resultDetailPage',
- params: {
- imageSource: item.imgURL as string,
- chargeStationAddress: item.chargeStationAddress,
- chargeStationID: item.stationID,
- chargeStationName: item.chargeStationName,
- stationLat: item.lat,
- stationLng: item.lng
- }
- });
- }}
- style={({ pressed }) => [
- styles.container,
- {
- backgroundColor: pressed ? '#e7f2f8' : '#ffffff'
- }
- ]}
- >
- <View style={styles.rowContainer}>
- <Image style={styles.image} source={{ uri: item.imgURL } as ImageSourcePropType} />
- <View style={styles.textContainer}>
- <Text
- style={{
- fontWeight: '400',
- fontSize: 18,
- color: '#222222'
- }}
- >
- {item.chargeStationName}
- </Text>
- <Text
- style={{
- fontWeight: '400',
- fontSize: 14,
- color: '#888888'
- }}
- >
- {item.chargeStationAddress}
- </Text>
- <View className="flex-row space-x-2 items-center">
- <CheckMarkLogoSvg />
- <Text
- style={{
- fontWeight: '400',
- fontSize: 14,
- color: '#222222'
- }}
- >
- Walk-in
- </Text>
- </View>
- </View>
- {/* <Text
- style={{
- fontWeight: '400',
- fontSize: 16,
- color: '#888888',
- marginTop: 22
- }}
- className="flex-1 text-right"
- >
- {item.distance}
- </Text> */}
- </View>
- </Pressable>
- );
- })
- )}
- </View>
- </BottomSheetScrollView>
- </BottomSheet>
- </View>
- </SafeAreaView>
- </TouchableWithoutFeedback>
- );
- };
- export default SearchResultComponent;
- const styles = StyleSheet.create({
- container: {
- flex: 1
- },
- map: {
- flex: 1,
- width: '100%',
- height: '100%'
- },
- contentContainer: {
- backgroundColor: 'white'
- },
- itemContainer: {
- padding: 6,
- margin: 6,
- backgroundColor: '#eee'
- },
- image: {
- width: 100,
- height: 100,
- marginTop: 15,
- marginRight: 15,
- borderRadius: 10
- },
- textContainer: { flexDirection: 'column', gap: 8, marginTop: 22 },
- rowContainer: { flexDirection: 'row' },
- textInput: {
- width: '85%',
- maxWidth: '100%',
- fontSize: 16,
- padding: 20,
- paddingLeft: 0,
- borderLeftWidth: 0,
- borderTopWidth: 1,
- borderBottomWidth: 1,
- borderRightWidth: 1,
- borderBottomRightRadius: 12,
- borderTopRightRadius: 12,
- borderRadius: 0,
- borderColor: '#bbbbbb'
- },
- leftArrowBackButton: {
- width: '15%',
- maxWidth: '100%',
- fontSize: 16,
- padding: 20,
- paddingLeft: 30,
- borderBottomLeftRadius: 12,
- borderTopLeftRadius: 12,
- borderColor: '#bbbbbb',
- borderTopWidth: 1,
- borderBottomWidth: 1,
- borderLeftWidth: 1,
- alignItems: 'center',
- justifyContent: 'center'
- },
- dropdown: {
- backgroundColor: 'white',
- borderBottomLeftRadius: 12,
- borderBottomRightRadius: 12,
- borderLeftWidth: 1,
- borderRightWidth: 1,
- borderBottomWidth: 1,
- marginTop: 10,
- maxHeight: 200,
- width: '100%',
- position: 'absolute',
- top: 50,
- zIndex: 2,
- borderColor: '#bbbbbb'
- },
- dropdownItem: {
- padding: 10,
- borderBottomWidth: 1,
- borderBottomColor: '#ddd'
- },
- dropdownItemPress: {
- backgroundColor: '#e8f8fc'
- }
- });
|