├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── demoapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── assets │ └── images │ │ ├── books │ │ ├── android.png │ │ ├── awaken.png │ │ ├── es6.png │ │ ├── ngbook21.png │ │ ├── node.png │ │ ├── progit.png │ │ ├── reactjsblue.png │ │ ├── selling.png │ │ ├── survivejs.png │ │ └── switchingto.png │ │ └── eco-logo.png ├── components │ ├── Cart.component.js │ ├── CartItems.component.js │ ├── CheckoutItems.component.js │ ├── CustomerForm.component.js │ ├── Logo.component.js │ ├── OrderSummary.component.js │ └── Product.component.js ├── data.js ├── pages │ ├── Checkout.js │ ├── Products.js │ └── Receipt.js ├── redux │ ├── actions │ │ ├── cartActions.js │ │ ├── orderAction.js │ │ ├── productAction.js │ │ └── types.js │ ├── reducers │ │ ├── cartReducer.js │ │ ├── index.js │ │ ├── orderReducer.js │ │ └── productReducer.js │ └── store.js ├── routes │ └── index.js └── styles │ └── theme.style.js ├── index.js ├── ios ├── demoApp-tvOS │ └── Info.plist ├── demoApp-tvOSTests │ └── Info.plist ├── demoApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── demoApp-tvOS.xcscheme │ │ └── demoApp.xcscheme ├── demoApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── demoAppTests │ ├── Info.plist │ └── demoAppTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/demoapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/java/com/demoapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/demoapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/java/com/demoapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/books/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/android.png -------------------------------------------------------------------------------- /app/assets/images/books/awaken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/awaken.png -------------------------------------------------------------------------------- /app/assets/images/books/es6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/es6.png -------------------------------------------------------------------------------- /app/assets/images/books/ngbook21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/ngbook21.png -------------------------------------------------------------------------------- /app/assets/images/books/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/node.png -------------------------------------------------------------------------------- /app/assets/images/books/progit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/progit.png -------------------------------------------------------------------------------- /app/assets/images/books/reactjsblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/reactjsblue.png -------------------------------------------------------------------------------- /app/assets/images/books/selling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/selling.png -------------------------------------------------------------------------------- /app/assets/images/books/survivejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/survivejs.png -------------------------------------------------------------------------------- /app/assets/images/books/switchingto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/books/switchingto.png -------------------------------------------------------------------------------- /app/assets/images/eco-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/assets/images/eco-logo.png -------------------------------------------------------------------------------- /app/components/Cart.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/Cart.component.js -------------------------------------------------------------------------------- /app/components/CartItems.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/CartItems.component.js -------------------------------------------------------------------------------- /app/components/CheckoutItems.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/CheckoutItems.component.js -------------------------------------------------------------------------------- /app/components/CustomerForm.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/CustomerForm.component.js -------------------------------------------------------------------------------- /app/components/Logo.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/Logo.component.js -------------------------------------------------------------------------------- /app/components/OrderSummary.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/OrderSummary.component.js -------------------------------------------------------------------------------- /app/components/Product.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/components/Product.component.js -------------------------------------------------------------------------------- /app/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/data.js -------------------------------------------------------------------------------- /app/pages/Checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/pages/Checkout.js -------------------------------------------------------------------------------- /app/pages/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/pages/Products.js -------------------------------------------------------------------------------- /app/pages/Receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/pages/Receipt.js -------------------------------------------------------------------------------- /app/redux/actions/cartActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/actions/cartActions.js -------------------------------------------------------------------------------- /app/redux/actions/orderAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/actions/orderAction.js -------------------------------------------------------------------------------- /app/redux/actions/productAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/actions/productAction.js -------------------------------------------------------------------------------- /app/redux/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/actions/types.js -------------------------------------------------------------------------------- /app/redux/reducers/cartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/reducers/cartReducer.js -------------------------------------------------------------------------------- /app/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/reducers/index.js -------------------------------------------------------------------------------- /app/redux/reducers/orderReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/reducers/orderReducer.js -------------------------------------------------------------------------------- /app/redux/reducers/productReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/reducers/productReducer.js -------------------------------------------------------------------------------- /app/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/redux/store.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /app/styles/theme.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/app/styles/theme.style.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/index.js -------------------------------------------------------------------------------- /ios/demoApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/demoApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/demoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp.xcscheme -------------------------------------------------------------------------------- /ios/demoApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/demoApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/demoApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/demoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/demoApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/demoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/Info.plist -------------------------------------------------------------------------------- /ios/demoApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoApp/main.m -------------------------------------------------------------------------------- /ios/demoAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoAppTests/Info.plist -------------------------------------------------------------------------------- /ios/demoAppTests/demoAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/ios/demoAppTests/demoAppTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egaleme/react-native-shop/HEAD/yarn.lock --------------------------------------------------------------------------------