├── README.md ├── albums ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── albums │ │ │ │ ├── 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 ├── erl_crash.dump ├── index.android.js ├── index.ios.js ├── ios │ ├── albums.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── albums.xcscheme │ ├── albums │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── albumsTests │ │ ├── Info.plist │ │ └── albumsTests.m ├── package.json └── src │ └── components │ ├── AlbumDetail.js │ ├── AlbumList.js │ ├── Button.js │ ├── Card.js │ ├── CardSection.js │ └── header.js ├── auth ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── auth │ │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios │ ├── auth.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── auth.xcscheme │ ├── auth │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── authTests │ │ ├── Info.plist │ │ └── authTests.m ├── package.json └── src │ ├── app.js │ └── components │ ├── LoginForm.js │ └── common │ ├── Button.js │ ├── Card.js │ ├── CardSection.js │ ├── Header.js │ ├── Input.js │ ├── Spinner.js │ └── index.js ├── diagrams └── 01 │ ├── .gitkeep │ └── diagrams.xml ├── manager ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── manager │ │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios │ ├── manager.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── manager.xcscheme │ ├── manager │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── managerTests │ │ ├── Info.plist │ │ └── managerTests.m ├── package.json └── src │ ├── App.js │ ├── Router.js │ ├── actions │ ├── AuthActions.js │ ├── EmployeeActions.js │ ├── index.js │ └── types.js │ ├── components │ ├── EmployeeCreate.js │ ├── EmployeeEdit.js │ ├── EmployeeForm.js │ ├── EmployeeList.js │ ├── ListItem.js │ ├── LoginForm.js │ └── common │ │ ├── Button.js │ │ ├── Card.js │ │ ├── CardSection.js │ │ ├── Confirm.js │ │ ├── Header.js │ │ ├── Input.js │ │ ├── Spinner.js │ │ └── index.js │ └── reducers │ ├── AuthReducer.js │ ├── EmployeeFormReducer.js │ ├── EmployeeReducer.js │ └── index.js └── tech_stack ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── tech_stack │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios ├── tech_stack.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── tech_stack.xcscheme ├── tech_stack │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── tech_stackTests │ ├── Info.plist │ └── tech_stackTests.m ├── package.json └── src ├── actions └── index.js ├── app.js ├── components ├── LibraryList.js ├── ListItem.js └── common │ ├── Button.js │ ├── Card.js │ ├── CardSection.js │ ├── Header.js │ ├── Input.js │ ├── Spinner.js │ └── index.js └── reducers ├── LibraryList.json ├── LibraryReducer.js ├── SelectionReducer.js └── index.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/README.md -------------------------------------------------------------------------------- /albums/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/.buckconfig -------------------------------------------------------------------------------- /albums/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "rallycoding" 3 | } 4 | -------------------------------------------------------------------------------- /albums/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/.flowconfig -------------------------------------------------------------------------------- /albums/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/.gitignore -------------------------------------------------------------------------------- /albums/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /albums/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/BUCK -------------------------------------------------------------------------------- /albums/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/build.gradle -------------------------------------------------------------------------------- /albums/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /albums/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /albums/android/app/src/main/java/com/albums/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/java/com/albums/MainActivity.java -------------------------------------------------------------------------------- /albums/android/app/src/main/java/com/albums/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/java/com/albums/MainApplication.java -------------------------------------------------------------------------------- /albums/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /albums/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /albums/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /albums/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /albums/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /albums/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /albums/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/build.gradle -------------------------------------------------------------------------------- /albums/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/gradle.properties -------------------------------------------------------------------------------- /albums/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /albums/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /albums/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/gradlew -------------------------------------------------------------------------------- /albums/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/gradlew.bat -------------------------------------------------------------------------------- /albums/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/keystores/BUCK -------------------------------------------------------------------------------- /albums/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /albums/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'albums' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /albums/erl_crash.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/erl_crash.dump -------------------------------------------------------------------------------- /albums/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/index.android.js -------------------------------------------------------------------------------- /albums/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/index.ios.js -------------------------------------------------------------------------------- /albums/ios/albums.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /albums/ios/albums.xcodeproj/xcshareddata/xcschemes/albums.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums.xcodeproj/xcshareddata/xcschemes/albums.xcscheme -------------------------------------------------------------------------------- /albums/ios/albums/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/AppDelegate.h -------------------------------------------------------------------------------- /albums/ios/albums/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/AppDelegate.m -------------------------------------------------------------------------------- /albums/ios/albums/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /albums/ios/albums/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /albums/ios/albums/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/Info.plist -------------------------------------------------------------------------------- /albums/ios/albums/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albums/main.m -------------------------------------------------------------------------------- /albums/ios/albumsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albumsTests/Info.plist -------------------------------------------------------------------------------- /albums/ios/albumsTests/albumsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/ios/albumsTests/albumsTests.m -------------------------------------------------------------------------------- /albums/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/package.json -------------------------------------------------------------------------------- /albums/src/components/AlbumDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/AlbumDetail.js -------------------------------------------------------------------------------- /albums/src/components/AlbumList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/AlbumList.js -------------------------------------------------------------------------------- /albums/src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/Button.js -------------------------------------------------------------------------------- /albums/src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/Card.js -------------------------------------------------------------------------------- /albums/src/components/CardSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/CardSection.js -------------------------------------------------------------------------------- /albums/src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/albums/src/components/header.js -------------------------------------------------------------------------------- /auth/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/.buckconfig -------------------------------------------------------------------------------- /auth/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "rallycoding" 3 | } 4 | -------------------------------------------------------------------------------- /auth/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/.flowconfig -------------------------------------------------------------------------------- /auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/.gitignore -------------------------------------------------------------------------------- /auth/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /auth/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/BUCK -------------------------------------------------------------------------------- /auth/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/build.gradle -------------------------------------------------------------------------------- /auth/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /auth/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /auth/android/app/src/main/java/com/auth/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/java/com/auth/MainActivity.java -------------------------------------------------------------------------------- /auth/android/app/src/main/java/com/auth/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/java/com/auth/MainApplication.java -------------------------------------------------------------------------------- /auth/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /auth/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /auth/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /auth/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /auth/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /auth/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /auth/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/build.gradle -------------------------------------------------------------------------------- /auth/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/gradle.properties -------------------------------------------------------------------------------- /auth/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /auth/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /auth/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/gradlew -------------------------------------------------------------------------------- /auth/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/gradlew.bat -------------------------------------------------------------------------------- /auth/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/keystores/BUCK -------------------------------------------------------------------------------- /auth/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /auth/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'auth' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /auth/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/index.android.js -------------------------------------------------------------------------------- /auth/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/index.ios.js -------------------------------------------------------------------------------- /auth/ios/auth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /auth/ios/auth.xcodeproj/xcshareddata/xcschemes/auth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth.xcodeproj/xcshareddata/xcschemes/auth.xcscheme -------------------------------------------------------------------------------- /auth/ios/auth/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/AppDelegate.h -------------------------------------------------------------------------------- /auth/ios/auth/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/AppDelegate.m -------------------------------------------------------------------------------- /auth/ios/auth/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /auth/ios/auth/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /auth/ios/auth/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/Info.plist -------------------------------------------------------------------------------- /auth/ios/auth/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/auth/main.m -------------------------------------------------------------------------------- /auth/ios/authTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/authTests/Info.plist -------------------------------------------------------------------------------- /auth/ios/authTests/authTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/ios/authTests/authTests.m -------------------------------------------------------------------------------- /auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/package.json -------------------------------------------------------------------------------- /auth/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/app.js -------------------------------------------------------------------------------- /auth/src/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/LoginForm.js -------------------------------------------------------------------------------- /auth/src/components/common/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/Button.js -------------------------------------------------------------------------------- /auth/src/components/common/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/Card.js -------------------------------------------------------------------------------- /auth/src/components/common/CardSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/CardSection.js -------------------------------------------------------------------------------- /auth/src/components/common/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/Header.js -------------------------------------------------------------------------------- /auth/src/components/common/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/Input.js -------------------------------------------------------------------------------- /auth/src/components/common/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/Spinner.js -------------------------------------------------------------------------------- /auth/src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/auth/src/components/common/index.js -------------------------------------------------------------------------------- /diagrams/01/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /diagrams/01/diagrams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/diagrams/01/diagrams.xml -------------------------------------------------------------------------------- /manager/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/.buckconfig -------------------------------------------------------------------------------- /manager/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/.eslintrc -------------------------------------------------------------------------------- /manager/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/.flowconfig -------------------------------------------------------------------------------- /manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/.gitignore -------------------------------------------------------------------------------- /manager/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /manager/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/BUCK -------------------------------------------------------------------------------- /manager/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/build.gradle -------------------------------------------------------------------------------- /manager/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /manager/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /manager/android/app/src/main/java/com/manager/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/java/com/manager/MainActivity.java -------------------------------------------------------------------------------- /manager/android/app/src/main/java/com/manager/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/java/com/manager/MainApplication.java -------------------------------------------------------------------------------- /manager/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /manager/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /manager/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /manager/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /manager/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /manager/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /manager/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/build.gradle -------------------------------------------------------------------------------- /manager/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/gradle.properties -------------------------------------------------------------------------------- /manager/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /manager/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /manager/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/gradlew -------------------------------------------------------------------------------- /manager/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/gradlew.bat -------------------------------------------------------------------------------- /manager/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/keystores/BUCK -------------------------------------------------------------------------------- /manager/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /manager/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'manager' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /manager/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/index.android.js -------------------------------------------------------------------------------- /manager/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/index.ios.js -------------------------------------------------------------------------------- /manager/ios/manager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /manager/ios/manager.xcodeproj/xcshareddata/xcschemes/manager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager.xcodeproj/xcshareddata/xcschemes/manager.xcscheme -------------------------------------------------------------------------------- /manager/ios/manager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/AppDelegate.h -------------------------------------------------------------------------------- /manager/ios/manager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/AppDelegate.m -------------------------------------------------------------------------------- /manager/ios/manager/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /manager/ios/manager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /manager/ios/manager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/Info.plist -------------------------------------------------------------------------------- /manager/ios/manager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/manager/main.m -------------------------------------------------------------------------------- /manager/ios/managerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/managerTests/Info.plist -------------------------------------------------------------------------------- /manager/ios/managerTests/managerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/ios/managerTests/managerTests.m -------------------------------------------------------------------------------- /manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/package.json -------------------------------------------------------------------------------- /manager/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/App.js -------------------------------------------------------------------------------- /manager/src/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/Router.js -------------------------------------------------------------------------------- /manager/src/actions/AuthActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/actions/AuthActions.js -------------------------------------------------------------------------------- /manager/src/actions/EmployeeActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/actions/EmployeeActions.js -------------------------------------------------------------------------------- /manager/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/actions/index.js -------------------------------------------------------------------------------- /manager/src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/actions/types.js -------------------------------------------------------------------------------- /manager/src/components/EmployeeCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/EmployeeCreate.js -------------------------------------------------------------------------------- /manager/src/components/EmployeeEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/EmployeeEdit.js -------------------------------------------------------------------------------- /manager/src/components/EmployeeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/EmployeeForm.js -------------------------------------------------------------------------------- /manager/src/components/EmployeeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/EmployeeList.js -------------------------------------------------------------------------------- /manager/src/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/ListItem.js -------------------------------------------------------------------------------- /manager/src/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/LoginForm.js -------------------------------------------------------------------------------- /manager/src/components/common/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Button.js -------------------------------------------------------------------------------- /manager/src/components/common/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Card.js -------------------------------------------------------------------------------- /manager/src/components/common/CardSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/CardSection.js -------------------------------------------------------------------------------- /manager/src/components/common/Confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Confirm.js -------------------------------------------------------------------------------- /manager/src/components/common/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Header.js -------------------------------------------------------------------------------- /manager/src/components/common/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Input.js -------------------------------------------------------------------------------- /manager/src/components/common/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/Spinner.js -------------------------------------------------------------------------------- /manager/src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/components/common/index.js -------------------------------------------------------------------------------- /manager/src/reducers/AuthReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/reducers/AuthReducer.js -------------------------------------------------------------------------------- /manager/src/reducers/EmployeeFormReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/reducers/EmployeeFormReducer.js -------------------------------------------------------------------------------- /manager/src/reducers/EmployeeReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/reducers/EmployeeReducer.js -------------------------------------------------------------------------------- /manager/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/manager/src/reducers/index.js -------------------------------------------------------------------------------- /tech_stack/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/.buckconfig -------------------------------------------------------------------------------- /tech_stack/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "rallycoding" 3 | } 4 | -------------------------------------------------------------------------------- /tech_stack/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/.flowconfig -------------------------------------------------------------------------------- /tech_stack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/.gitignore -------------------------------------------------------------------------------- /tech_stack/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tech_stack/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/BUCK -------------------------------------------------------------------------------- /tech_stack/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/build.gradle -------------------------------------------------------------------------------- /tech_stack/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/java/com/tech_stack/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/java/com/tech_stack/MainActivity.java -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/java/com/tech_stack/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/java/com/tech_stack/MainApplication.java -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /tech_stack/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tech_stack/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/build.gradle -------------------------------------------------------------------------------- /tech_stack/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/gradle.properties -------------------------------------------------------------------------------- /tech_stack/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /tech_stack/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /tech_stack/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/gradlew -------------------------------------------------------------------------------- /tech_stack/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/gradlew.bat -------------------------------------------------------------------------------- /tech_stack/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/keystores/BUCK -------------------------------------------------------------------------------- /tech_stack/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /tech_stack/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'tech_stack' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /tech_stack/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/index.android.js -------------------------------------------------------------------------------- /tech_stack/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/index.ios.js -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack.xcodeproj/xcshareddata/xcschemes/tech_stack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack.xcodeproj/xcshareddata/xcschemes/tech_stack.xcscheme -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/AppDelegate.h -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/AppDelegate.m -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/Info.plist -------------------------------------------------------------------------------- /tech_stack/ios/tech_stack/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stack/main.m -------------------------------------------------------------------------------- /tech_stack/ios/tech_stackTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stackTests/Info.plist -------------------------------------------------------------------------------- /tech_stack/ios/tech_stackTests/tech_stackTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/ios/tech_stackTests/tech_stackTests.m -------------------------------------------------------------------------------- /tech_stack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/package.json -------------------------------------------------------------------------------- /tech_stack/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/actions/index.js -------------------------------------------------------------------------------- /tech_stack/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/app.js -------------------------------------------------------------------------------- /tech_stack/src/components/LibraryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/LibraryList.js -------------------------------------------------------------------------------- /tech_stack/src/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/ListItem.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/Button.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/Card.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/CardSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/CardSection.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/Header.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/Input.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/Spinner.js -------------------------------------------------------------------------------- /tech_stack/src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/components/common/index.js -------------------------------------------------------------------------------- /tech_stack/src/reducers/LibraryList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/reducers/LibraryList.json -------------------------------------------------------------------------------- /tech_stack/src/reducers/LibraryReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/reducers/LibraryReducer.js -------------------------------------------------------------------------------- /tech_stack/src/reducers/SelectionReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/reducers/SelectionReducer.js -------------------------------------------------------------------------------- /tech_stack/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGrider/ReactNativeReduxCasts/HEAD/tech_stack/src/reducers/index.js --------------------------------------------------------------------------------