Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pushing place details to backend #25

Open
wants to merge 42 commits into
base: backend
Choose a base branch
from

Conversation

nyssaaftab
Copy link
Collaborator

No description provided.

ejx2 and others added 30 commits October 4, 2024 14:44
  const [priceValue, setPriceValue] = useState(1);
  const [cuisineType, setCuisineType] = useState('all');
  const [restaurants, setRestaurants] = useState([]);
  const [cuisines, setCuisines] = useState(['Italian', 'Japanese', 'Mexican', 'Indian', 'American', 'Thai', 'Chinese']);
  const [location, setLocation] = useState({ latitude: null, longitude: null });
  const [error, setError] = useState(null);

  // Fetch the user's location
  const getLocation = () => {
    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(
        (position) => {
          setLocation({
            latitude: position.coords.latitude,
            longitude: position.coords.longitude,
          });
          setError(null);
        },
        (err) => {
          setError('Error retrieving location: ' + err.message);
        }
      );
    } else {
      setError('Geolocation is not supported by this browser.');
    }
  };

  const handleSubmit = async (e) => {
    e.preventDefault();
    if (!location.latitude || !location.longitude) {
      alert("Please allow location access to fetch nearby restaurants.");
      return;
    }

    try {
      const response = await axios.get('http://localhost:8081/api/restaurants/random', {
        params: {
          cuisineType: cuisineType === 'all' ? '' : cuisineType,
          priceLevel: priceValue,
          latitude: location.latitude,
          longitude: location.longitude,
        },
      });
      setRestaurants(response.data);
    } catch (error) {
      console.error('Error fetching restaurants:', error);
    }
  };

  return (
    <div className="filter-page">
      <h1>Choose Your Preferences</h1>

      {/* Location Button */}
      <div className="location-section">
        <button onClick={getLocation}>Get Current Location</button>
        {location.latitude && location.longitude && (
          <p>
            Latitude: {location.latitude}, Longitude: {location.longitude}
          </p>
        )}
        {error && <p style={{ color: 'red' }}>{error}</p>}
      </div>

      <form onSubmit={handleSubmit} className="filter-form">
        <div className="filter-group">
          <label>Cuisine Type</label>
          <select value={cuisineType} onChange={(e) => setCuisineType(e.target.value)}>
            <option value="all">All</option>
            {cuisines.map((cuisine) => (
              <option key={cuisine} value={cuisine.toLowerCase()}>
                {cuisine}
              </option>
            ))}
          </select>
        </div>
        <div className="filter-group">
          <label>Price Range</label>
          <input
            type="range"
            min="1"
            max="5"
            value={priceValue}
            onChange={(e) => setPriceValue(e.target.value)}
          />
          <div>Price: {"$".repeat(priceValue)}</div>
        </div>
        <div className="filter-group">
          <label>Dietary Preferences</label>
          <input type="checkbox" /> Vegetarian
          <input type="checkbox" /> Vegan
        </div>
        <button type="submit">Generate Restaurants</button>
      </form>

      {/* Display fetched restaurants */}
      <div className="restaurant-results">
        {restaurants.map((restaurant) => (
          <div key={restaurant.place_id} className="restaurant-card">
            <h2>{restaurant.name}</h2>
            <p>{restaurant.vicinity}</p>
          </div>
        ))}
      </div>
    </div>
  );
}erge branch 'frontend' of https://github.com/CS222-UIUC/Team-5-3-1 into frontend-backend-merge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants