├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── __mocks__ ├── bugsnag-react-native.js ├── react-native-exception-handler.js ├── react-native-safe-area-context.js └── react-navigation-animated-switch.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── myapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── myapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── img ├── myapp.png ├── sqlite.png └── watermelondb.png ├── index.js ├── ios ├── MyApp-Bridging-Header.h ├── MyApp.swift ├── MyApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── MyApp.xcscheme ├── MyApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MyApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── MyAppTests-Bridging-Header.h ├── MyAppTests │ ├── Info.plist │ └── MyAppTests.m ├── Podfile └── Podfile.lock ├── jest.config.js ├── jest └── setup.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── App.tsx ├── __tests__ │ └── App.test.tsx ├── components │ ├── ImageGallery │ │ ├── __tests__ │ │ │ ├── ImageGallery.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── ImageGallery.test.tsx.snap │ │ └── index.tsx │ ├── ImageViewer │ │ ├── __tests__ │ │ │ ├── ImageViewer.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── ImageViewer.test.tsx.snap │ │ └── index.tsx │ ├── MenuButton.tsx │ ├── PhotoCard │ │ ├── __tests__ │ │ │ ├── PhotoCard.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── PhotoCard.test.tsx.snap │ │ ├── index.tsx │ │ └── styles.ts │ ├── PlayButton │ │ ├── __tests__ │ │ │ ├── PlayButton.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── PlayButton.test.tsx.snap │ │ └── index.tsx │ ├── ScreenTransition.tsx │ └── index.ts ├── constants │ ├── database.ts │ ├── index.ts │ └── screens.ts ├── containers │ ├── CustomList.tsx │ ├── Error.tsx │ ├── ParallaxHeader.tsx │ └── index.ts ├── helpers │ └── renderNode.tsx ├── hocs │ ├── __mocks__ │ │ └── withDatabaseProvider.tsx │ ├── index.ts │ └── withDatabaseProvider.tsx ├── hooks │ ├── index.ts │ ├── offline.ts │ └── photos.ts ├── models │ ├── index.ts │ ├── migrations.ts │ ├── photo.ts │ └── schema.ts ├── res │ ├── animations │ │ ├── error.json │ │ ├── index.ts │ │ ├── offline.json │ │ ├── online.json │ │ └── play-button.json │ ├── images │ │ ├── background.jpg │ │ ├── index.ts │ │ └── logo.png │ ├── index.ts │ ├── package.json │ └── strings │ │ └── index.ts ├── routes.tsx ├── screens │ ├── Details │ │ ├── index.tsx │ │ └── styles.ts │ ├── Home.tsx │ ├── Menu │ │ ├── index.tsx │ │ └── styles.ts │ ├── OfflineList │ │ ├── index.tsx │ │ └── styles.ts │ ├── PhotoList │ │ ├── index.tsx │ │ └── styles.ts │ ├── __tests__ │ │ ├── Details.test.tsx │ │ ├── Home.test.tsx │ │ ├── UserList.test.tsx │ │ └── __snapshots__ │ │ │ ├── Details.test.tsx.snap │ │ │ ├── Home.test.tsx.snap │ │ │ └── UserList.test.tsx.snap │ └── index.ts ├── services │ ├── __tests__ │ │ └── api-data.json │ ├── api.ts │ ├── browser.ts │ ├── database.ts │ ├── index.ts │ ├── log.ts │ ├── navigation.tsx │ ├── photo.ts │ └── promise.ts ├── store │ ├── actions.ts │ ├── index.ts │ ├── reducer.ts │ └── store.tsx └── transitions │ ├── index.ts │ └── springyFadeIn.ts ├── tsconfig.jest.json ├── tsconfig.json ├── types.d.ts └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/bugsnag-react-native.js: -------------------------------------------------------------------------------- 1 | export class Client { 2 | notify = jest.fn() 3 | } 4 | -------------------------------------------------------------------------------- /__mocks__/react-native-exception-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/__mocks__/react-native-exception-handler.js -------------------------------------------------------------------------------- /__mocks__/react-native-safe-area-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/__mocks__/react-native-safe-area-context.js -------------------------------------------------------------------------------- /__mocks__/react-navigation-animated-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/__mocks__/react-navigation-animated-switch.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/myapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/debug/java/com/myapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/java/com/myapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/java/com/myapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/babel.config.js -------------------------------------------------------------------------------- /img/myapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/img/myapp.png -------------------------------------------------------------------------------- /img/sqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/img/sqlite.png -------------------------------------------------------------------------------- /img/watermelondb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/img/watermelondb.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/index.js -------------------------------------------------------------------------------- /ios/MyApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp-Bridging-Header.h -------------------------------------------------------------------------------- /ios/MyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp.swift -------------------------------------------------------------------------------- /ios/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme -------------------------------------------------------------------------------- /ios/MyApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/MyApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/MyApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/MyApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/MyApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/Info.plist -------------------------------------------------------------------------------- /ios/MyApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/MyApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyApp/main.m -------------------------------------------------------------------------------- /ios/MyAppTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyAppTests-Bridging-Header.h -------------------------------------------------------------------------------- /ios/MyAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyAppTests/Info.plist -------------------------------------------------------------------------------- /ios/MyAppTests/MyAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/MyAppTests/MyAppTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/jest/setup.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /src/components/ImageGallery/__tests__/ImageGallery.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageGallery/__tests__/ImageGallery.test.tsx -------------------------------------------------------------------------------- /src/components/ImageGallery/__tests__/__snapshots__/ImageGallery.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageGallery/__tests__/__snapshots__/ImageGallery.test.tsx.snap -------------------------------------------------------------------------------- /src/components/ImageGallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageGallery/index.tsx -------------------------------------------------------------------------------- /src/components/ImageViewer/__tests__/ImageViewer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageViewer/__tests__/ImageViewer.test.tsx -------------------------------------------------------------------------------- /src/components/ImageViewer/__tests__/__snapshots__/ImageViewer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageViewer/__tests__/__snapshots__/ImageViewer.test.tsx.snap -------------------------------------------------------------------------------- /src/components/ImageViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ImageViewer/index.tsx -------------------------------------------------------------------------------- /src/components/MenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/MenuButton.tsx -------------------------------------------------------------------------------- /src/components/PhotoCard/__tests__/PhotoCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PhotoCard/__tests__/PhotoCard.test.tsx -------------------------------------------------------------------------------- /src/components/PhotoCard/__tests__/__snapshots__/PhotoCard.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PhotoCard/__tests__/__snapshots__/PhotoCard.test.tsx.snap -------------------------------------------------------------------------------- /src/components/PhotoCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PhotoCard/index.tsx -------------------------------------------------------------------------------- /src/components/PhotoCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PhotoCard/styles.ts -------------------------------------------------------------------------------- /src/components/PlayButton/__tests__/PlayButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PlayButton/__tests__/PlayButton.test.tsx -------------------------------------------------------------------------------- /src/components/PlayButton/__tests__/__snapshots__/PlayButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PlayButton/__tests__/__snapshots__/PlayButton.test.tsx.snap -------------------------------------------------------------------------------- /src/components/PlayButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/PlayButton/index.tsx -------------------------------------------------------------------------------- /src/components/ScreenTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/ScreenTransition.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/database.ts: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-shadow 2 | export enum COLLECTIONS { 3 | PHOTOS = 'photos', 4 | } 5 | -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/screens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/constants/screens.ts -------------------------------------------------------------------------------- /src/containers/CustomList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/containers/CustomList.tsx -------------------------------------------------------------------------------- /src/containers/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/containers/Error.tsx -------------------------------------------------------------------------------- /src/containers/ParallaxHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/containers/ParallaxHeader.tsx -------------------------------------------------------------------------------- /src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/containers/index.ts -------------------------------------------------------------------------------- /src/helpers/renderNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/helpers/renderNode.tsx -------------------------------------------------------------------------------- /src/hocs/__mocks__/withDatabaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/hocs/__mocks__/withDatabaseProvider.tsx -------------------------------------------------------------------------------- /src/hocs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './withDatabaseProvider' 2 | -------------------------------------------------------------------------------- /src/hocs/withDatabaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/hocs/withDatabaseProvider.tsx -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/offline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/hooks/offline.ts -------------------------------------------------------------------------------- /src/hooks/photos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/hooks/photos.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/models/migrations.ts -------------------------------------------------------------------------------- /src/models/photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/models/photo.ts -------------------------------------------------------------------------------- /src/models/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/models/schema.ts -------------------------------------------------------------------------------- /src/res/animations/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/animations/error.json -------------------------------------------------------------------------------- /src/res/animations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/animations/index.ts -------------------------------------------------------------------------------- /src/res/animations/offline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/animations/offline.json -------------------------------------------------------------------------------- /src/res/animations/online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/animations/online.json -------------------------------------------------------------------------------- /src/res/animations/play-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/animations/play-button.json -------------------------------------------------------------------------------- /src/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/images/background.jpg -------------------------------------------------------------------------------- /src/res/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/images/index.ts -------------------------------------------------------------------------------- /src/res/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/images/logo.png -------------------------------------------------------------------------------- /src/res/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/index.ts -------------------------------------------------------------------------------- /src/res/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/package.json -------------------------------------------------------------------------------- /src/res/strings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/res/strings/index.ts -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/screens/Details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/Details/index.tsx -------------------------------------------------------------------------------- /src/screens/Details/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/Details/styles.ts -------------------------------------------------------------------------------- /src/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/Home.tsx -------------------------------------------------------------------------------- /src/screens/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/Menu/index.tsx -------------------------------------------------------------------------------- /src/screens/Menu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/Menu/styles.ts -------------------------------------------------------------------------------- /src/screens/OfflineList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/OfflineList/index.tsx -------------------------------------------------------------------------------- /src/screens/OfflineList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/OfflineList/styles.ts -------------------------------------------------------------------------------- /src/screens/PhotoList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/PhotoList/index.tsx -------------------------------------------------------------------------------- /src/screens/PhotoList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/PhotoList/styles.ts -------------------------------------------------------------------------------- /src/screens/__tests__/Details.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/Details.test.tsx -------------------------------------------------------------------------------- /src/screens/__tests__/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/Home.test.tsx -------------------------------------------------------------------------------- /src/screens/__tests__/UserList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/UserList.test.tsx -------------------------------------------------------------------------------- /src/screens/__tests__/__snapshots__/Details.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/__snapshots__/Details.test.tsx.snap -------------------------------------------------------------------------------- /src/screens/__tests__/__snapshots__/Home.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/__snapshots__/Home.test.tsx.snap -------------------------------------------------------------------------------- /src/screens/__tests__/__snapshots__/UserList.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/__tests__/__snapshots__/UserList.test.tsx.snap -------------------------------------------------------------------------------- /src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/screens/index.ts -------------------------------------------------------------------------------- /src/services/__tests__/api-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/__tests__/api-data.json -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/services/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/browser.ts -------------------------------------------------------------------------------- /src/services/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/database.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/log.ts -------------------------------------------------------------------------------- /src/services/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/navigation.tsx -------------------------------------------------------------------------------- /src/services/photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/photo.ts -------------------------------------------------------------------------------- /src/services/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/services/promise.ts -------------------------------------------------------------------------------- /src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/store/actions.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/store/reducer.ts -------------------------------------------------------------------------------- /src/store/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/store/store.tsx -------------------------------------------------------------------------------- /src/transitions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './springyFadeIn' 2 | -------------------------------------------------------------------------------- /src/transitions/springyFadeIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/src/transitions/springyFadeIn.ts -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/types.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/MyApp/HEAD/yarn.lock --------------------------------------------------------------------------------