Skip to content

Commit

Permalink
Update the README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ggeorgievx committed Feb 20, 2020
1 parent 0a26f4a commit bb363d4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 74 deletions.
97 changes: 29 additions & 68 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,68 +1,29 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br />
You will also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.<br />
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.<br />
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.<br />
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

### Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

### Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

### Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

### Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

### `npm run build` fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
# Pub Crawl

## https://pub-crawl.app

> Go on a Pub Crawl! Try out all the drinks! 🍻
Developed by [Georgi Georgiev](https://github.com/ggeorgievx) for the first ever
[AlgoExpert SWE contest](https://www.youtube.com/watch?v=KVyMIEwI7uw).

### Technologies used:

* React
* React Router Dom
* GCP
* Google Maps API
* Autocomplete
* Places
* Directions
* Firebase
* Google Auth
* Realtime Database
* Material UI
* React Beautiful D&D
* Responsive!
* Optimizations
* useMemo() + useRef()
* memo
* useEffect()
* Local Storage (guests)
12 changes: 6 additions & 6 deletions src/components/PubCrawlInfoList/PubCrawlInfoList.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import { forbidExtraProps } from 'airbnb-prop-types';
import { makeStyles } from '@material-ui/core/styles';
import PubCrawlInfo from '../../containers/PubCrawlInfo/PubCrawlInfo';
import { useHistory } from 'react-router-dom';
// import { useHistory } from 'react-router-dom';

const useStyles = makeStyles({
list: {
Expand All @@ -25,7 +25,7 @@ const useStyles = makeStyles({

const PubCrawlInfoList = (props) => {
const classes = useStyles();
const history = useHistory();
// const history = useHistory();

return (
<div className={classes.list}>
Expand All @@ -39,10 +39,10 @@ const PubCrawlInfoList = (props) => {
totalDurationInMinutes={pubCrawl.totalDurationInMinutes}
pubs={pubCrawl.pubs}
pubCrawlClickHandler={() => {
history.push({
pathname: '/pub-crawl',
search: `?id=${pubCrawl.id}`
});
// history.push({
// pathname: '/pub-crawl',
// search: `?id=${pubCrawl.id}`
// });
}}
infoButtonClickHandler={(event) => {
event.stopPropagation();
Expand Down

0 comments on commit bb363d4

Please sign in to comment.