├── LICENSE ├── README.md ├── api ├── .env ├── .gitignore ├── .sequelizerc ├── package.json ├── src │ ├── App.js │ ├── Routes │ │ ├── Customer.js │ │ └── Manager.js │ ├── Server.js │ ├── app │ │ ├── controllers │ │ │ ├── customer │ │ │ │ ├── customerController.js │ │ │ │ ├── menuController.js │ │ │ │ ├── orderController.js │ │ │ │ ├── restaurantsController.js │ │ │ │ ├── sessionController.js │ │ │ │ └── signupController.js │ │ │ └── manager │ │ │ │ ├── dashboardController.js │ │ │ │ ├── itemController.js │ │ │ │ ├── menuController.js │ │ │ │ ├── restaurantController.js │ │ │ │ ├── sessionController.js │ │ │ │ └── signupController.js │ │ ├── middlewares │ │ │ ├── auth.js │ │ │ └── signupController.js │ │ └── models │ │ │ ├── Customer.js │ │ │ ├── Dashboard.js │ │ │ ├── Item.js │ │ │ ├── Order.js │ │ │ └── Restaurant.js │ ├── config │ │ ├── auth.js │ │ ├── database.js │ │ └── multer.js │ └── database │ │ ├── index.js │ │ └── migrations │ │ ├── 20200321201351-create-restaurant.js │ │ ├── 20200407002012-create-item.js │ │ ├── 20200422004241-create-dashboard.js │ │ ├── 20200429140229-create-customer.js │ │ └── 20200501195204-create-item-orders.js ├── tmp │ └── uploads │ │ └── .gitkeep ├── yarn-error.log └── yarn.lock ├── customer-frontend ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── Components │ │ ├── Basket │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── CancelBasket │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Header │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Item │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── PastOrder │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── PrivateRoute │ │ │ └── index.js │ │ ├── PublicRoute │ │ │ └── index.js │ │ └── RestaurantItem │ │ │ ├── index.js │ │ │ └── styles.js │ ├── Context │ │ └── BasketContext.js │ ├── GlobalStyles.js │ ├── Pages │ │ ├── Checkout │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Home │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Login │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Restaurant │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Signup │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── User │ │ │ ├── index.js │ │ │ └── styles.js │ ├── Routes.js │ ├── assets │ │ ├── banner.jpeg │ │ ├── cash.png │ │ ├── thumb-icon.jpeg │ │ ├── thumbnail.jpeg │ │ ├── ue_logo_horizontal.png │ │ └── user.jpeg │ ├── index.js │ ├── services │ │ └── api.js │ └── utils │ │ └── auth.js └── yarn.lock ├── manager-frontend ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── assets │ │ ├── cocacola.jpg │ │ ├── logo-horizontal.svg │ │ ├── svg-loaders │ │ │ └── oval.svg │ │ ├── thumbnail.jpeg │ │ └── uber-eats-logo.png │ ├── components │ │ ├── CreateItem │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Header │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Item │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Loading │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Navigation │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Order │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── PrivateRoute │ │ │ └── index.js │ │ ├── PublicRoute │ │ │ └── index.js │ │ └── UpdateInformations │ │ │ └── index.js │ ├── global-styles.js │ ├── index.js │ ├── pages │ │ ├── CreateAccount │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Dashboard │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Login │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Menu │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── Orders │ │ │ ├── index.js │ │ │ └── styles.js │ ├── routes.js │ ├── services │ │ └── api.js │ └── utils │ │ └── auth.js └── yarn.lock ├── mobile ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mobile │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mobile │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── mobile-tvOS │ │ └── Info.plist │ ├── mobile-tvOSTests │ │ └── Info.plist │ ├── mobile.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── mobile-tvOS.xcscheme │ │ │ └── mobile.xcscheme │ ├── mobile │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── mobileTests │ │ ├── Info.plist │ │ └── mobileTests.m ├── metro.config.js ├── package-lock.json ├── package.json ├── src │ ├── Components │ │ ├── HeaderBack │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Navigation │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── SplashScreen │ │ │ └── index.js │ ├── Pages │ │ ├── Customer │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Login │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Restaurants │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── Signup │ │ │ ├── index.js │ │ │ └── styles.js │ ├── Routes.js │ ├── assets │ │ ├── login-logo.png │ │ └── ubereats-logo.png │ ├── globalStyles.js │ └── services │ │ └── api.js └── yarn.lock └── screenshots ├── home-customer-page.png ├── menu-manager-page.png ├── restaurant-customer-page.png └── signup-page.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/README.md -------------------------------------------------------------------------------- /api/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/.env -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | /tmp/uploads/* -------------------------------------------------------------------------------- /api/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/.sequelizerc -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/package.json -------------------------------------------------------------------------------- /api/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/App.js -------------------------------------------------------------------------------- /api/src/Routes/Customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/Routes/Customer.js -------------------------------------------------------------------------------- /api/src/Routes/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/Routes/Manager.js -------------------------------------------------------------------------------- /api/src/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/Server.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/customerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/customerController.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/menuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/menuController.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/orderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/orderController.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/restaurantsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/restaurantsController.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/sessionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/sessionController.js -------------------------------------------------------------------------------- /api/src/app/controllers/customer/signupController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/customer/signupController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/dashboardController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/dashboardController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/itemController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/itemController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/menuController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/menuController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/restaurantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/restaurantController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/sessionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/sessionController.js -------------------------------------------------------------------------------- /api/src/app/controllers/manager/signupController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/controllers/manager/signupController.js -------------------------------------------------------------------------------- /api/src/app/middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/middlewares/auth.js -------------------------------------------------------------------------------- /api/src/app/middlewares/signupController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/middlewares/signupController.js -------------------------------------------------------------------------------- /api/src/app/models/Customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/models/Customer.js -------------------------------------------------------------------------------- /api/src/app/models/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/models/Dashboard.js -------------------------------------------------------------------------------- /api/src/app/models/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/models/Item.js -------------------------------------------------------------------------------- /api/src/app/models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/models/Order.js -------------------------------------------------------------------------------- /api/src/app/models/Restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/app/models/Restaurant.js -------------------------------------------------------------------------------- /api/src/config/auth.js: -------------------------------------------------------------------------------- 1 | require("dotenv").config(); 2 | 3 | module.exports = { 4 | secret: process.env.SECRET_KEY 5 | } -------------------------------------------------------------------------------- /api/src/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/config/database.js -------------------------------------------------------------------------------- /api/src/config/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/config/multer.js -------------------------------------------------------------------------------- /api/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/index.js -------------------------------------------------------------------------------- /api/src/database/migrations/20200321201351-create-restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/migrations/20200321201351-create-restaurant.js -------------------------------------------------------------------------------- /api/src/database/migrations/20200407002012-create-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/migrations/20200407002012-create-item.js -------------------------------------------------------------------------------- /api/src/database/migrations/20200422004241-create-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/migrations/20200422004241-create-dashboard.js -------------------------------------------------------------------------------- /api/src/database/migrations/20200429140229-create-customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/migrations/20200429140229-create-customer.js -------------------------------------------------------------------------------- /api/src/database/migrations/20200501195204-create-item-orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/src/database/migrations/20200501195204-create-item-orders.js -------------------------------------------------------------------------------- /api/tmp/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/yarn-error.log -------------------------------------------------------------------------------- /api/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/api/yarn.lock -------------------------------------------------------------------------------- /customer-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/.gitignore -------------------------------------------------------------------------------- /customer-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/README.md -------------------------------------------------------------------------------- /customer-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/package.json -------------------------------------------------------------------------------- /customer-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/favicon.ico -------------------------------------------------------------------------------- /customer-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/index.html -------------------------------------------------------------------------------- /customer-frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/logo192.png -------------------------------------------------------------------------------- /customer-frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/logo512.png -------------------------------------------------------------------------------- /customer-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/manifest.json -------------------------------------------------------------------------------- /customer-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/public/robots.txt -------------------------------------------------------------------------------- /customer-frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/App.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Basket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Basket/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Basket/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Basket/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/CancelBasket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/CancelBasket/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/CancelBasket/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/CancelBasket/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Header/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Header/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Item/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/Item/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/Item/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/PastOrder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/PastOrder/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/PastOrder/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/PastOrder/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/PrivateRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/PrivateRoute/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/PublicRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/PublicRoute/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/RestaurantItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/RestaurantItem/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Components/RestaurantItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Components/RestaurantItem/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Context/BasketContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Context/BasketContext.js -------------------------------------------------------------------------------- /customer-frontend/src/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/GlobalStyles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Checkout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Checkout/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Checkout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Checkout/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Home/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Home/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Login/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Login/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Restaurant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Restaurant/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Restaurant/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Restaurant/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Signup/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/Signup/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/Signup/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/User/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/User/index.js -------------------------------------------------------------------------------- /customer-frontend/src/Pages/User/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Pages/User/styles.js -------------------------------------------------------------------------------- /customer-frontend/src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/Routes.js -------------------------------------------------------------------------------- /customer-frontend/src/assets/banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/banner.jpeg -------------------------------------------------------------------------------- /customer-frontend/src/assets/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/cash.png -------------------------------------------------------------------------------- /customer-frontend/src/assets/thumb-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/thumb-icon.jpeg -------------------------------------------------------------------------------- /customer-frontend/src/assets/thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/thumbnail.jpeg -------------------------------------------------------------------------------- /customer-frontend/src/assets/ue_logo_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/ue_logo_horizontal.png -------------------------------------------------------------------------------- /customer-frontend/src/assets/user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/assets/user.jpeg -------------------------------------------------------------------------------- /customer-frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/index.js -------------------------------------------------------------------------------- /customer-frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/services/api.js -------------------------------------------------------------------------------- /customer-frontend/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/src/utils/auth.js -------------------------------------------------------------------------------- /customer-frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/customer-frontend/yarn.lock -------------------------------------------------------------------------------- /manager-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/.gitignore -------------------------------------------------------------------------------- /manager-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/README.md -------------------------------------------------------------------------------- /manager-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/package.json -------------------------------------------------------------------------------- /manager-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/public/favicon.ico -------------------------------------------------------------------------------- /manager-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/public/index.html -------------------------------------------------------------------------------- /manager-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/public/manifest.json -------------------------------------------------------------------------------- /manager-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/public/robots.txt -------------------------------------------------------------------------------- /manager-frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/App.js -------------------------------------------------------------------------------- /manager-frontend/src/assets/cocacola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/assets/cocacola.jpg -------------------------------------------------------------------------------- /manager-frontend/src/assets/logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/assets/logo-horizontal.svg -------------------------------------------------------------------------------- /manager-frontend/src/assets/svg-loaders/oval.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/assets/svg-loaders/oval.svg -------------------------------------------------------------------------------- /manager-frontend/src/assets/thumbnail.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/assets/thumbnail.jpeg -------------------------------------------------------------------------------- /manager-frontend/src/assets/uber-eats-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/assets/uber-eats-logo.png -------------------------------------------------------------------------------- /manager-frontend/src/components/CreateItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/CreateItem/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/CreateItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/CreateItem/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Header/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Header/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Item/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Item/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Item/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Loading/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Loading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Loading/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Navigation/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Navigation/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Order/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/Order/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/Order/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/components/PrivateRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/PrivateRoute/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/PublicRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/PublicRoute/index.js -------------------------------------------------------------------------------- /manager-frontend/src/components/UpdateInformations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/components/UpdateInformations/index.js -------------------------------------------------------------------------------- /manager-frontend/src/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/global-styles.js -------------------------------------------------------------------------------- /manager-frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/CreateAccount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/CreateAccount/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/CreateAccount/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/CreateAccount/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Dashboard/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Dashboard/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager-frontend/src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Login/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Login/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Menu/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Menu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Menu/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Orders/index.js -------------------------------------------------------------------------------- /manager-frontend/src/pages/Orders/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/pages/Orders/styles.js -------------------------------------------------------------------------------- /manager-frontend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/routes.js -------------------------------------------------------------------------------- /manager-frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/services/api.js -------------------------------------------------------------------------------- /manager-frontend/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/src/utils/auth.js -------------------------------------------------------------------------------- /manager-frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/manager-frontend/yarn.lock -------------------------------------------------------------------------------- /mobile/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/.buckconfig -------------------------------------------------------------------------------- /mobile/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /mobile/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/.flowconfig -------------------------------------------------------------------------------- /mobile/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/.prettierrc.js -------------------------------------------------------------------------------- /mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /mobile/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/__tests__/App-test.js -------------------------------------------------------------------------------- /mobile/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/_BUCK -------------------------------------------------------------------------------- /mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/build.gradle -------------------------------------------------------------------------------- /mobile/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/build_defs.bzl -------------------------------------------------------------------------------- /mobile/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/debug.keystore -------------------------------------------------------------------------------- /mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/android/app/src/main/java/com/mobile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/java/com/mobile/MainActivity.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/java/com/mobile/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/java/com/mobile/MainApplication.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/build.gradle -------------------------------------------------------------------------------- /mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/gradle.properties -------------------------------------------------------------------------------- /mobile/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /mobile/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/gradlew -------------------------------------------------------------------------------- /mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/gradlew.bat -------------------------------------------------------------------------------- /mobile/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/android/settings.gradle -------------------------------------------------------------------------------- /mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/app.json -------------------------------------------------------------------------------- /mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/babel.config.js -------------------------------------------------------------------------------- /mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/index.js -------------------------------------------------------------------------------- /mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/Podfile -------------------------------------------------------------------------------- /mobile/ios/mobile-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile-tvOS/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile-tvOSTests/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme -------------------------------------------------------------------------------- /mobile/ios/mobile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/AppDelegate.h -------------------------------------------------------------------------------- /mobile/ios/mobile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/AppDelegate.m -------------------------------------------------------------------------------- /mobile/ios/mobile/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /mobile/ios/mobile/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /mobile/ios/mobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobile/main.m -------------------------------------------------------------------------------- /mobile/ios/mobileTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobileTests/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobileTests/mobileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/ios/mobileTests/mobileTests.m -------------------------------------------------------------------------------- /mobile/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/metro.config.js -------------------------------------------------------------------------------- /mobile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/package-lock.json -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/src/Components/HeaderBack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Components/HeaderBack/index.js -------------------------------------------------------------------------------- /mobile/src/Components/HeaderBack/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Components/HeaderBack/styles.js -------------------------------------------------------------------------------- /mobile/src/Components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Components/Navigation/index.js -------------------------------------------------------------------------------- /mobile/src/Components/Navigation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Components/Navigation/styles.js -------------------------------------------------------------------------------- /mobile/src/Components/SplashScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Components/SplashScreen/index.js -------------------------------------------------------------------------------- /mobile/src/Pages/Customer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Customer/index.js -------------------------------------------------------------------------------- /mobile/src/Pages/Customer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Customer/styles.js -------------------------------------------------------------------------------- /mobile/src/Pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Login/index.js -------------------------------------------------------------------------------- /mobile/src/Pages/Login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Login/styles.js -------------------------------------------------------------------------------- /mobile/src/Pages/Restaurants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Restaurants/index.js -------------------------------------------------------------------------------- /mobile/src/Pages/Restaurants/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Restaurants/styles.js -------------------------------------------------------------------------------- /mobile/src/Pages/Signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Signup/index.js -------------------------------------------------------------------------------- /mobile/src/Pages/Signup/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Pages/Signup/styles.js -------------------------------------------------------------------------------- /mobile/src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/Routes.js -------------------------------------------------------------------------------- /mobile/src/assets/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/assets/login-logo.png -------------------------------------------------------------------------------- /mobile/src/assets/ubereats-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/assets/ubereats-logo.png -------------------------------------------------------------------------------- /mobile/src/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/globalStyles.js -------------------------------------------------------------------------------- /mobile/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/src/services/api.js -------------------------------------------------------------------------------- /mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/mobile/yarn.lock -------------------------------------------------------------------------------- /screenshots/home-customer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/screenshots/home-customer-page.png -------------------------------------------------------------------------------- /screenshots/menu-manager-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/screenshots/menu-manager-page.png -------------------------------------------------------------------------------- /screenshots/restaurant-customer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/screenshots/restaurant-customer-page.png -------------------------------------------------------------------------------- /screenshots/signup-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaovitorzv/uber-eats/HEAD/screenshots/signup-page.png --------------------------------------------------------------------------------