├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.js ├── assets │ ├── fundo.jpg │ ├── logo.png │ └── logo.svg ├── components │ ├── Order │ │ ├── index.js │ │ └── styles.js │ └── Product │ │ ├── index.js │ │ └── styles.js ├── config │ └── ReactotronConfig.js ├── helpers │ └── normalizeData.js ├── index.js ├── pages │ ├── Login │ │ ├── index.js │ │ └── styles.js │ └── Orders │ │ ├── index.js │ │ └── styles.js ├── routes │ ├── guest.js │ ├── history.js │ ├── index.js │ └── private.js ├── services │ └── api.js ├── store │ ├── ducks │ │ ├── auth.js │ │ ├── error.js │ │ ├── index.js │ │ ├── orders.js │ │ └── user.js │ ├── index.js │ └── sagas │ │ ├── auth.js │ │ ├── index.js │ │ ├── orders.js │ │ └── user.js └── styles │ ├── components.js │ └── global.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/fundo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/assets/fundo.jpg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/Order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/components/Order/index.js -------------------------------------------------------------------------------- /src/components/Order/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/components/Order/styles.js -------------------------------------------------------------------------------- /src/components/Product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/components/Product/index.js -------------------------------------------------------------------------------- /src/components/Product/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/components/Product/styles.js -------------------------------------------------------------------------------- /src/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/config/ReactotronConfig.js -------------------------------------------------------------------------------- /src/helpers/normalizeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/helpers/normalizeData.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/pages/Login/index.js -------------------------------------------------------------------------------- /src/pages/Login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/pages/Login/styles.js -------------------------------------------------------------------------------- /src/pages/Orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/pages/Orders/index.js -------------------------------------------------------------------------------- /src/pages/Orders/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/pages/Orders/styles.js -------------------------------------------------------------------------------- /src/routes/guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/routes/guest.js -------------------------------------------------------------------------------- /src/routes/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/routes/history.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/routes/private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/routes/private.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/services/api.js -------------------------------------------------------------------------------- /src/store/ducks/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/ducks/auth.js -------------------------------------------------------------------------------- /src/store/ducks/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/ducks/error.js -------------------------------------------------------------------------------- /src/store/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/ducks/index.js -------------------------------------------------------------------------------- /src/store/ducks/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/ducks/orders.js -------------------------------------------------------------------------------- /src/store/ducks/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/ducks/user.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/sagas/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/sagas/auth.js -------------------------------------------------------------------------------- /src/store/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/sagas/index.js -------------------------------------------------------------------------------- /src/store/sagas/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/sagas/orders.js -------------------------------------------------------------------------------- /src/store/sagas/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/store/sagas/user.js -------------------------------------------------------------------------------- /src/styles/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/styles/components.js -------------------------------------------------------------------------------- /src/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/src/styles/global.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiseshilario/delivery-app-web/HEAD/yarn.lock --------------------------------------------------------------------------------