Skip to content

Commit

Permalink
Add update changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvelxy committed Jan 3, 2025
1 parent bd1a319 commit efff045
Show file tree
Hide file tree
Showing 6 changed files with 2,856 additions and 1,499 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ node_modules

coverage
.vscode

.codegpt
21 changes: 11 additions & 10 deletions imports/client/ui/pages/Map/index.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
// External Libraries
import React, { Component, Fragment } from 'react'
import { Meteor } from 'meteor/meteor'
import { withScriptjs, withGoogleMap, GoogleMap, Marker, DirectionsRenderer } from 'react-google-maps'
import { StandaloneSearchBox } from 'react-google-maps/lib/components/places/StandaloneSearchBox'
import React, { Component, Fragment } from 'react'
import { DirectionsRenderer, GoogleMap, Marker, withGoogleMap, withScriptjs } from 'react-google-maps'
import { MarkerClusterer } from 'react-google-maps/lib/components/addons/MarkerClusterer'
import { Alert, Input, Button } from 'reactstrap'
import { StandaloneSearchBox } from 'react-google-maps/lib/components/places/StandaloneSearchBox'
import { Link } from 'react-router-dom'
import { Alert, Button, Input } from 'reactstrap'

// Components and Pages
import EventsList from './EventsList'
import FiltersList from './EventsFilter'
import SearchButtons from './SearchButtons'
import EventsList from './EventsList'
import MarkerWrapper from './MarkerWrapper'
import SearchButtons from './SearchButtons'

// Utils
import { inIFrame } from 'dcs-client'
import mapOptions from './mapOptions'
import { ensureUniquePosition } from './utils'
import { inIFrame } from 'dcs-client'
import getUserPosition from '/imports/client/utils/location/getUserPosition'
import { toggleBodyOverflow } from '/imports/client/utils/DOMInteractions'
import getUserPosition from '/imports/client/utils/location/getUserPosition'

// Styles and Other
import './styles.scss'
import './mobile-styles.scss'
import './styles.scss'
import i18n from '/imports/both/i18n/en'

class MapComponent_ extends Component {
Expand All @@ -38,7 +38,8 @@ class MapComponent_ extends Component {
filteredEvents: null,
isFetching: true,
showFilters: false,
userLocation: null,
// userLocation: null,
userLocation: { lat: 40.71084185899232, lng: -73.9266585638803 },
zoom: 3,
mapRadius: null,
showPastEvents: false
Expand Down
Empty file added meteor
Empty file.
Loading

0 comments on commit efff045

Please sign in to comment.