├── .babelrc ├── .codeclimate.yml ├── .editorconfig ├── .firebaserc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── .watchmanconfig ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Mobile_Privacy_Policy.pdf ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── __mocks__ └── react-native-firebase.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── google-services.json │ ├── payit.keystore │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── payit │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SplashActivity.java │ │ └── res │ │ ├── drawable │ │ └── background_splash.xml │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ ├── mipmap-ldpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_notif.png │ │ └── splash_icon.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties ├── sentry.properties └── settings.gradle ├── app.json ├── custom_typings ├── global.d.ts ├── react-native-dotenv │ └── index.d.ts ├── react-native-wheel-picker-android │ └── index.d.ts └── vanilla-masker │ └── index.d.ts ├── firebase.json ├── functions ├── custom_typings │ └── secure-compare │ │ └── index.d.ts ├── package.json ├── src │ ├── core │ │ ├── bill │ │ │ ├── bill.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── notification │ │ │ ├── index.ts │ │ │ ├── notification.spec.ts │ │ │ └── notification.ts │ │ └── pendency │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── model.ts │ │ │ ├── pendency.spec.ts │ │ │ └── pendency.ts │ ├── i18n │ │ ├── i18n.ts │ │ ├── index.ts │ │ └── locales │ │ │ ├── en.ts │ │ │ └── pt-BR.ts │ ├── index.ts │ ├── onBillChange.spec.ts │ ├── onBillChange.ts │ ├── onPaydayChange.spec.ts │ ├── onPaydayChange.ts │ ├── rest │ │ ├── bill.spec.ts │ │ ├── bill.ts │ │ ├── index.ts │ │ ├── notification.spec.ts │ │ ├── notification.ts │ │ ├── pendency.spec.ts │ │ ├── pendency.ts │ │ ├── user.spec.ts │ │ └── user.ts │ ├── sendPendenciesAlerts.spec.ts │ ├── sendPendenciesAlerts.ts │ ├── updateAllPendencies.spec.ts │ ├── updateAllPendencies.ts │ └── utils │ │ ├── createCleanDate.spec.ts │ │ ├── createCleanDate.ts │ │ └── index.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── greenkeeper.json ├── index.js ├── ios ├── PayIt-tvOS │ └── Info.plist ├── PayIt-tvOSTests │ └── Info.plist ├── PayIt.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── PayIt-tvOS.xcscheme │ │ └── PayIt.xcscheme ├── PayIt.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PayIt │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── GoogleService-Info.plist │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ ├── ItunesArtwork@2x.png │ │ │ ├── icon-1024@1x.png │ │ │ ├── icon-20@1x.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@1x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@1x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@1x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@1x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@1x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@1x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ └── SplashIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── login-1.png │ │ │ ├── login-2.png │ │ │ └── login.png │ ├── Info.plist │ ├── PayIt.entitlements │ └── main.m ├── PayItTests │ ├── Info.plist │ └── PayItTests.m ├── Podfile ├── Podfile.lock └── sentry.properties ├── jest.config.json ├── jest.hooks.tsx ├── package.json ├── rn-cli.config.js ├── screenshots ├── android │ ├── 1.jpeg │ ├── 2.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ ├── 5.jpeg │ └── all.jpeg ├── ios │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── all.jpeg └── merged.jpeg ├── scripts └── setVersion.sh ├── src ├── App.spec.tsx ├── App.tsx ├── assets │ ├── img │ │ ├── default-bill-image.png │ │ ├── empty-bills.png │ │ ├── empty.png │ │ ├── home.jpg │ │ ├── home.png │ │ ├── ios-icon.jpeg │ │ ├── login.png │ │ ├── payit-icon-high.png │ │ ├── payit-icon.gif │ │ └── payit-push-icon.png │ └── package.json ├── components │ ├── common │ │ ├── ActivityIndicator │ │ │ ├── ActivityIndicator.selectors.ts │ │ │ ├── ActivityIndicator.style.ts │ │ │ ├── ActivityIndicator.tsx │ │ │ └── index.ts │ │ ├── Backdrop │ │ │ ├── Backdrop.selectors.ts │ │ │ ├── Backdrop.style.ts │ │ │ ├── Backdrop.tsx │ │ │ └── index.ts │ │ ├── BillsList.tsx │ │ ├── Layout │ │ │ ├── Layout.spec.tsx │ │ │ ├── Layout.tsx │ │ │ └── index.ts │ │ ├── Loading.tsx │ │ ├── WheelPicker.tsx │ │ └── index.ts │ ├── forms │ │ ├── ConfirmButton.tsx │ │ ├── CustomInput │ │ │ ├── CustomInput.style.ts │ │ │ ├── CustomInput.tsx │ │ │ └── index.ts │ │ ├── FormHeader.tsx │ │ ├── PaydayForm │ │ │ ├── PaydayForm.selectors.ts │ │ │ ├── PaydayForm.style.ts │ │ │ ├── PaydayForm.tsx │ │ │ ├── i18n │ │ │ │ ├── i18n.ts │ │ │ │ ├── index.ts │ │ │ │ └── locales │ │ │ │ │ ├── en.ts │ │ │ │ │ └── pt-BR.ts │ │ │ └── index.ts │ │ ├── PickerSelect │ │ │ ├── PickerSelect.selectors.ts │ │ │ ├── PickerSelect.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── index.ts │ ├── package.json │ └── pages │ │ ├── Bills │ │ ├── Bills.container.spec.tsx │ │ ├── Bills.container.tsx │ │ ├── Bills.selectors.ts │ │ ├── Bills.style.ts │ │ ├── components │ │ │ ├── BillsForm │ │ │ │ ├── BillsForm.constants.ts │ │ │ │ ├── BillsForm.container.spec.tsx │ │ │ │ ├── BillsForm.container.tsx │ │ │ │ ├── BillsForm.selectors.ts │ │ │ │ ├── BillsForm.view.tsx │ │ │ │ ├── i18n │ │ │ │ │ ├── i18n.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locales │ │ │ │ │ │ ├── en.ts │ │ │ │ │ │ └── pt-BR.ts │ │ │ │ └── index.ts │ │ │ ├── EmptyBills.tsx │ │ │ └── index.ts │ │ ├── i18n │ │ │ ├── i18n.ts │ │ │ ├── index.ts │ │ │ └── locales │ │ │ │ ├── en.ts │ │ │ │ └── pt-BR.ts │ │ └── index.ts │ │ ├── Home │ │ ├── Home.container.spec.tsx │ │ ├── Home.container.tsx │ │ ├── Home.selectors.ts │ │ ├── Home.style.ts │ │ ├── components │ │ │ ├── Balloon │ │ │ │ ├── Balloon.tsx │ │ │ │ └── index.ts │ │ │ ├── PendenciesList │ │ │ │ ├── PendenciesList.selectors.ts │ │ │ │ ├── PendenciesList.tsx │ │ │ │ ├── i18n │ │ │ │ │ ├── i18n.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locales │ │ │ │ │ │ ├── en.ts │ │ │ │ │ │ └── pt-BR.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── i18n │ │ │ ├── i18n.ts │ │ │ ├── index.ts │ │ │ └── locales │ │ │ │ ├── en.ts │ │ │ │ └── pt-BR.ts │ │ └── index.ts │ │ ├── Login │ │ ├── Login.container.spec.tsx │ │ ├── Login.container.tsx │ │ ├── Login.selectors.ts │ │ ├── Login.style.ts │ │ ├── i18n │ │ │ ├── i18n.ts │ │ │ ├── index.ts │ │ │ └── locales │ │ │ │ ├── en.ts │ │ │ │ └── pt-BR.ts │ │ └── index.ts │ │ ├── Settings │ │ ├── Settings.container.spec.tsx │ │ ├── Settings.container.tsx │ │ ├── Settings.selectors.ts │ │ ├── Settings.style.ts │ │ ├── Settings.view.tsx │ │ ├── i18n │ │ │ ├── i18n.ts │ │ │ ├── index.ts │ │ │ └── locales │ │ │ │ ├── en.ts │ │ │ │ └── pt-BR.ts │ │ └── index.ts │ │ ├── index.ts │ │ └── package.json ├── core │ ├── bills │ │ ├── bills.actions.ts │ │ ├── bills.reducer.ts │ │ ├── bills.saga.ts │ │ └── index.ts │ ├── global │ │ ├── global.actions.ts │ │ ├── global.reducer.ts │ │ ├── global.saga.ts │ │ └── index.ts │ ├── index.ts │ ├── package.json │ ├── pendencies │ │ ├── index.ts │ │ ├── pendencies.actions.ts │ │ ├── pendencies.reducer.ts │ │ └── pendencies.saga.ts │ ├── rootReducer.ts │ ├── rootSaga.ts │ ├── store.ts │ └── user │ │ ├── index.ts │ │ ├── user.actions.ts │ │ ├── user.reducer.ts │ │ └── user.saga.ts ├── environment.ts ├── i18n │ ├── i18n.ts │ ├── index.ts │ └── locales │ │ ├── en.ts │ │ └── pt-BR.ts ├── models │ ├── Bill.ts │ ├── Pendency.ts │ ├── User.ts │ ├── index.ts │ └── package.json ├── package.json ├── routes │ ├── Application.tsx │ ├── ApplicationModals.tsx │ ├── Authentication.tsx │ ├── Routes.tsx │ └── index.ts ├── services │ ├── BillsRestService.ts │ ├── FirebaseRestService │ │ ├── FirebaseAuthService.ts │ │ ├── FirebaseRestService.spec.ts │ │ ├── FirebaseRestService.ts │ │ ├── FirebaseSingleton.spec.ts │ │ ├── FirebaseSingleton.ts │ │ └── index.ts │ ├── PendenciesRestService.ts │ ├── SentryService.ts │ ├── UserRestService.ts │ ├── index.ts │ └── package.json ├── style │ ├── index.ts │ ├── package.json │ └── vars.ts └── utils │ ├── getFormattedMoney.ts │ ├── i18n │ ├── i18n.ts │ ├── index.ts │ └── locales │ │ ├── en.ts │ │ └── pt-BR.ts │ ├── index.ts │ ├── isIpad.ts │ ├── isIphoneX.ts │ ├── isSmallDevice.ts │ ├── package.json │ └── zIndexWorkaround.ts ├── tests ├── helpers.ts ├── index.ts ├── mocks.ts └── package.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/LICENSE -------------------------------------------------------------------------------- /Mobile_Privacy_Policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/Mobile_Privacy_Policy.pdf -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native-firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/__mocks__/react-native-firebase.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/payit.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/payit.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/payit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/java/com/payit/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/payit/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/java/com/payit/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/payit/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/java/com/payit/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-hdpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-hdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-ldpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-ldpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-mdpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-mdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_notif.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/sentry.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/app.json -------------------------------------------------------------------------------- /custom_typings/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_typings/react-native-dotenv/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/custom_typings/react-native-dotenv/index.d.ts -------------------------------------------------------------------------------- /custom_typings/react-native-wheel-picker-android/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/custom_typings/react-native-wheel-picker-android/index.d.ts -------------------------------------------------------------------------------- /custom_typings/vanilla-masker/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/custom_typings/vanilla-masker/index.d.ts -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/custom_typings/secure-compare/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'secure-compare' { 2 | export = Function; 3 | } 4 | -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/core/bill/bill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/bill/bill.ts -------------------------------------------------------------------------------- /functions/src/core/bill/index.ts: -------------------------------------------------------------------------------- 1 | export * from './bill'; 2 | -------------------------------------------------------------------------------- /functions/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/index.ts -------------------------------------------------------------------------------- /functions/src/core/notification/index.ts: -------------------------------------------------------------------------------- 1 | export * from './notification'; 2 | -------------------------------------------------------------------------------- /functions/src/core/notification/notification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/notification/notification.spec.ts -------------------------------------------------------------------------------- /functions/src/core/notification/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/notification/notification.ts -------------------------------------------------------------------------------- /functions/src/core/pendency/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/pendency/helpers.ts -------------------------------------------------------------------------------- /functions/src/core/pendency/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/pendency/index.ts -------------------------------------------------------------------------------- /functions/src/core/pendency/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/pendency/model.ts -------------------------------------------------------------------------------- /functions/src/core/pendency/pendency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/pendency/pendency.spec.ts -------------------------------------------------------------------------------- /functions/src/core/pendency/pendency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/core/pendency/pendency.ts -------------------------------------------------------------------------------- /functions/src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/i18n/i18n.ts -------------------------------------------------------------------------------- /functions/src/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /functions/src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /functions/src/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/src/onBillChange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/onBillChange.spec.ts -------------------------------------------------------------------------------- /functions/src/onBillChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/onBillChange.ts -------------------------------------------------------------------------------- /functions/src/onPaydayChange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/onPaydayChange.spec.ts -------------------------------------------------------------------------------- /functions/src/onPaydayChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/onPaydayChange.ts -------------------------------------------------------------------------------- /functions/src/rest/bill.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/bill.spec.ts -------------------------------------------------------------------------------- /functions/src/rest/bill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/bill.ts -------------------------------------------------------------------------------- /functions/src/rest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/index.ts -------------------------------------------------------------------------------- /functions/src/rest/notification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/notification.spec.ts -------------------------------------------------------------------------------- /functions/src/rest/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/notification.ts -------------------------------------------------------------------------------- /functions/src/rest/pendency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/pendency.spec.ts -------------------------------------------------------------------------------- /functions/src/rest/pendency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/pendency.ts -------------------------------------------------------------------------------- /functions/src/rest/user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/user.spec.ts -------------------------------------------------------------------------------- /functions/src/rest/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/rest/user.ts -------------------------------------------------------------------------------- /functions/src/sendPendenciesAlerts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/sendPendenciesAlerts.spec.ts -------------------------------------------------------------------------------- /functions/src/sendPendenciesAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/sendPendenciesAlerts.ts -------------------------------------------------------------------------------- /functions/src/updateAllPendencies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/updateAllPendencies.spec.ts -------------------------------------------------------------------------------- /functions/src/updateAllPendencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/updateAllPendencies.ts -------------------------------------------------------------------------------- /functions/src/utils/createCleanDate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/utils/createCleanDate.spec.ts -------------------------------------------------------------------------------- /functions/src/utils/createCleanDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/src/utils/createCleanDate.ts -------------------------------------------------------------------------------- /functions/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './createCleanDate'; 2 | -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/tslint.json -------------------------------------------------------------------------------- /functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/functions/yarn.lock -------------------------------------------------------------------------------- /greenkeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/greenkeeper.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/index.js -------------------------------------------------------------------------------- /ios/PayIt-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/PayIt-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/PayIt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/PayIt.xcodeproj/xcshareddata/xcschemes/PayIt-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt.xcodeproj/xcshareddata/xcschemes/PayIt-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/PayIt.xcodeproj/xcshareddata/xcschemes/PayIt.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt.xcodeproj/xcshareddata/xcschemes/PayIt.xcscheme -------------------------------------------------------------------------------- /ios/PayIt.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/PayIt.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/PayIt/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/AppDelegate.h -------------------------------------------------------------------------------- /ios/PayIt/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/AppDelegate.m -------------------------------------------------------------------------------- /ios/PayIt/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/PayIt/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-50@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-57@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-72@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-76@1x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/SplashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/SplashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/SplashIcon.imageset/login-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/SplashIcon.imageset/login-1.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/SplashIcon.imageset/login-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/SplashIcon.imageset/login-2.png -------------------------------------------------------------------------------- /ios/PayIt/Images.xcassets/SplashIcon.imageset/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Images.xcassets/SplashIcon.imageset/login.png -------------------------------------------------------------------------------- /ios/PayIt/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/Info.plist -------------------------------------------------------------------------------- /ios/PayIt/PayIt.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/PayIt.entitlements -------------------------------------------------------------------------------- /ios/PayIt/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayIt/main.m -------------------------------------------------------------------------------- /ios/PayItTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayItTests/Info.plist -------------------------------------------------------------------------------- /ios/PayItTests/PayItTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/PayItTests/PayItTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/ios/sentry.properties -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/jest.config.json -------------------------------------------------------------------------------- /jest.hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/jest.hooks.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/package.json -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/rn-cli.config.js -------------------------------------------------------------------------------- /screenshots/android/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/1.jpeg -------------------------------------------------------------------------------- /screenshots/android/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/2.jpeg -------------------------------------------------------------------------------- /screenshots/android/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/3.jpeg -------------------------------------------------------------------------------- /screenshots/android/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/4.jpeg -------------------------------------------------------------------------------- /screenshots/android/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/5.jpeg -------------------------------------------------------------------------------- /screenshots/android/all.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/android/all.jpeg -------------------------------------------------------------------------------- /screenshots/ios/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/1.png -------------------------------------------------------------------------------- /screenshots/ios/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/2.png -------------------------------------------------------------------------------- /screenshots/ios/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/3.png -------------------------------------------------------------------------------- /screenshots/ios/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/4.png -------------------------------------------------------------------------------- /screenshots/ios/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/5.png -------------------------------------------------------------------------------- /screenshots/ios/all.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/ios/all.jpeg -------------------------------------------------------------------------------- /screenshots/merged.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/screenshots/merged.jpeg -------------------------------------------------------------------------------- /scripts/setVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/scripts/setVersion.sh -------------------------------------------------------------------------------- /src/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/App.spec.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/img/default-bill-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/default-bill-image.png -------------------------------------------------------------------------------- /src/assets/img/empty-bills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/empty-bills.png -------------------------------------------------------------------------------- /src/assets/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/empty.png -------------------------------------------------------------------------------- /src/assets/img/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/home.jpg -------------------------------------------------------------------------------- /src/assets/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/home.png -------------------------------------------------------------------------------- /src/assets/img/ios-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/ios-icon.jpeg -------------------------------------------------------------------------------- /src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/login.png -------------------------------------------------------------------------------- /src/assets/img/payit-icon-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/payit-icon-high.png -------------------------------------------------------------------------------- /src/assets/img/payit-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/payit-icon.gif -------------------------------------------------------------------------------- /src/assets/img/payit-push-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/assets/img/payit-push-icon.png -------------------------------------------------------------------------------- /src/assets/package.json: -------------------------------------------------------------------------------- 1 | {"name": "assets"} 2 | -------------------------------------------------------------------------------- /src/components/common/ActivityIndicator/ActivityIndicator.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/ActivityIndicator/ActivityIndicator.selectors.ts -------------------------------------------------------------------------------- /src/components/common/ActivityIndicator/ActivityIndicator.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/ActivityIndicator/ActivityIndicator.style.ts -------------------------------------------------------------------------------- /src/components/common/ActivityIndicator/ActivityIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/ActivityIndicator/ActivityIndicator.tsx -------------------------------------------------------------------------------- /src/components/common/ActivityIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ActivityIndicator'; 2 | -------------------------------------------------------------------------------- /src/components/common/Backdrop/Backdrop.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Backdrop/Backdrop.selectors.ts -------------------------------------------------------------------------------- /src/components/common/Backdrop/Backdrop.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Backdrop/Backdrop.style.ts -------------------------------------------------------------------------------- /src/components/common/Backdrop/Backdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Backdrop/Backdrop.tsx -------------------------------------------------------------------------------- /src/components/common/Backdrop/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Backdrop'; 2 | -------------------------------------------------------------------------------- /src/components/common/BillsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/BillsList.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Layout.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Layout/Layout.spec.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Layout'; 2 | -------------------------------------------------------------------------------- /src/components/common/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/Loading.tsx -------------------------------------------------------------------------------- /src/components/common/WheelPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/WheelPicker.tsx -------------------------------------------------------------------------------- /src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/common/index.ts -------------------------------------------------------------------------------- /src/components/forms/ConfirmButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/ConfirmButton.tsx -------------------------------------------------------------------------------- /src/components/forms/CustomInput/CustomInput.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/CustomInput/CustomInput.style.ts -------------------------------------------------------------------------------- /src/components/forms/CustomInput/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/CustomInput/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/forms/CustomInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CustomInput'; 2 | -------------------------------------------------------------------------------- /src/components/forms/FormHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/FormHeader.tsx -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/PaydayForm.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/PaydayForm.selectors.ts -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/PaydayForm.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/PaydayForm.style.ts -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/PaydayForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/PaydayForm.tsx -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PaydayForm/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/forms/PaydayForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PaydayForm'; 2 | -------------------------------------------------------------------------------- /src/components/forms/PickerSelect/PickerSelect.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PickerSelect/PickerSelect.selectors.ts -------------------------------------------------------------------------------- /src/components/forms/PickerSelect/PickerSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/PickerSelect/PickerSelect.tsx -------------------------------------------------------------------------------- /src/components/forms/PickerSelect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PickerSelect'; 2 | -------------------------------------------------------------------------------- /src/components/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/forms/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/package.json: -------------------------------------------------------------------------------- 1 | {"name": "components"} 2 | -------------------------------------------------------------------------------- /src/components/pages/Bills/Bills.container.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/Bills.container.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/Bills.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/Bills.container.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/Bills.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/Bills.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/Bills.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/Bills.style.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/BillsForm.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/BillsForm.constants.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/BillsForm.container.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/BillsForm.container.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/BillsForm.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/BillsForm.container.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/BillsForm.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/BillsForm.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/BillsForm.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/BillsForm.view.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/BillsForm/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/components/BillsForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BillsForm.container'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Bills/components/EmptyBills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/EmptyBills.tsx -------------------------------------------------------------------------------- /src/components/pages/Bills/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/components/index.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Bills/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Bills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Bills/index.ts -------------------------------------------------------------------------------- /src/components/pages/Home/Home.container.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/Home.container.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Home.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/Home.container.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/Home.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/Home.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Home/Home.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/Home.style.ts -------------------------------------------------------------------------------- /src/components/pages/Home/components/Balloon/Balloon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/Balloon/Balloon.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/components/Balloon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Balloon'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/PendenciesList.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/PendenciesList/PendenciesList.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/PendenciesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/PendenciesList/PendenciesList.tsx -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/PendenciesList/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/PendenciesList/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/PendenciesList/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Home/components/PendenciesList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PendenciesList'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Home/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/components/index.ts -------------------------------------------------------------------------------- /src/components/pages/Home/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Home/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Home/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Home/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Home/index.ts -------------------------------------------------------------------------------- /src/components/pages/Login/Login.container.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/Login.container.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/Login/Login.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/Login.container.tsx -------------------------------------------------------------------------------- /src/components/pages/Login/Login.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/Login.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Login/Login.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/Login.style.ts -------------------------------------------------------------------------------- /src/components/pages/Login/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Login/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Login/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Login/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Login/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Login/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Login.container'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Settings/Settings.container.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/Settings.container.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/Settings/Settings.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/Settings.container.tsx -------------------------------------------------------------------------------- /src/components/pages/Settings/Settings.selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/Settings.selectors.ts -------------------------------------------------------------------------------- /src/components/pages/Settings/Settings.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/Settings.style.ts -------------------------------------------------------------------------------- /src/components/pages/Settings/Settings.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/Settings.view.tsx -------------------------------------------------------------------------------- /src/components/pages/Settings/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/i18n/i18n.ts -------------------------------------------------------------------------------- /src/components/pages/Settings/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/components/pages/Settings/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/components/pages/Settings/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/Settings/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/components/pages/Settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Settings.container'; 2 | -------------------------------------------------------------------------------- /src/components/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/components/pages/index.ts -------------------------------------------------------------------------------- /src/components/pages/package.json: -------------------------------------------------------------------------------- 1 | {"name": "pages"} 2 | -------------------------------------------------------------------------------- /src/core/bills/bills.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/bills/bills.actions.ts -------------------------------------------------------------------------------- /src/core/bills/bills.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/bills/bills.reducer.ts -------------------------------------------------------------------------------- /src/core/bills/bills.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/bills/bills.saga.ts -------------------------------------------------------------------------------- /src/core/bills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/bills/index.ts -------------------------------------------------------------------------------- /src/core/global/global.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/global/global.actions.ts -------------------------------------------------------------------------------- /src/core/global/global.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/global/global.reducer.ts -------------------------------------------------------------------------------- /src/core/global/global.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/global/global.saga.ts -------------------------------------------------------------------------------- /src/core/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/global/index.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './store'; 2 | -------------------------------------------------------------------------------- /src/core/package.json: -------------------------------------------------------------------------------- 1 | {"name": "core"} 2 | -------------------------------------------------------------------------------- /src/core/pendencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/pendencies/index.ts -------------------------------------------------------------------------------- /src/core/pendencies/pendencies.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/pendencies/pendencies.actions.ts -------------------------------------------------------------------------------- /src/core/pendencies/pendencies.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/pendencies/pendencies.reducer.ts -------------------------------------------------------------------------------- /src/core/pendencies/pendencies.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/pendencies/pendencies.saga.ts -------------------------------------------------------------------------------- /src/core/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/rootReducer.ts -------------------------------------------------------------------------------- /src/core/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/rootSaga.ts -------------------------------------------------------------------------------- /src/core/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/store.ts -------------------------------------------------------------------------------- /src/core/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/user/index.ts -------------------------------------------------------------------------------- /src/core/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/user/user.actions.ts -------------------------------------------------------------------------------- /src/core/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/user/user.reducer.ts -------------------------------------------------------------------------------- /src/core/user/user.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/core/user/user.saga.ts -------------------------------------------------------------------------------- /src/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/environment.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/models/Bill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/models/Bill.ts -------------------------------------------------------------------------------- /src/models/Pendency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/models/Pendency.ts -------------------------------------------------------------------------------- /src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/models/User.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/package.json: -------------------------------------------------------------------------------- 1 | {"name": "models"} 2 | -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- 1 | {"name": "src"} 2 | -------------------------------------------------------------------------------- /src/routes/Application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/routes/Application.tsx -------------------------------------------------------------------------------- /src/routes/ApplicationModals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/routes/ApplicationModals.tsx -------------------------------------------------------------------------------- /src/routes/Authentication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/routes/Authentication.tsx -------------------------------------------------------------------------------- /src/routes/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/routes/Routes.tsx -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Routes'; 2 | -------------------------------------------------------------------------------- /src/services/BillsRestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/BillsRestService.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/FirebaseAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/FirebaseAuthService.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/FirebaseRestService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/FirebaseRestService.spec.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/FirebaseRestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/FirebaseRestService.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/FirebaseSingleton.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/FirebaseSingleton.spec.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/FirebaseSingleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/FirebaseSingleton.ts -------------------------------------------------------------------------------- /src/services/FirebaseRestService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/FirebaseRestService/index.ts -------------------------------------------------------------------------------- /src/services/PendenciesRestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/PendenciesRestService.ts -------------------------------------------------------------------------------- /src/services/SentryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/SentryService.ts -------------------------------------------------------------------------------- /src/services/UserRestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/UserRestService.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/package.json: -------------------------------------------------------------------------------- 1 | {"name": "services"} 2 | -------------------------------------------------------------------------------- /src/style/index.ts: -------------------------------------------------------------------------------- 1 | export * from './vars'; 2 | -------------------------------------------------------------------------------- /src/style/package.json: -------------------------------------------------------------------------------- 1 | {"name": "style"} 2 | -------------------------------------------------------------------------------- /src/style/vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/style/vars.ts -------------------------------------------------------------------------------- /src/utils/getFormattedMoney.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/getFormattedMoney.ts -------------------------------------------------------------------------------- /src/utils/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/i18n/i18n.ts -------------------------------------------------------------------------------- /src/utils/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './i18n'; 2 | -------------------------------------------------------------------------------- /src/utils/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/utils/i18n/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/i18n/locales/pt-BR.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isIpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/isIpad.ts -------------------------------------------------------------------------------- /src/utils/isIphoneX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/isIphoneX.ts -------------------------------------------------------------------------------- /src/utils/isSmallDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/isSmallDevice.ts -------------------------------------------------------------------------------- /src/utils/package.json: -------------------------------------------------------------------------------- 1 | {"name": "utils"} 2 | -------------------------------------------------------------------------------- /src/utils/zIndexWorkaround.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/src/utils/zIndexWorkaround.ts -------------------------------------------------------------------------------- /tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/tests/helpers.ts -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/tests/mocks.ts -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- 1 | {"name": "tests"} 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsirlucas/PayIt/HEAD/yarn.lock --------------------------------------------------------------------------------