├── .all-contributorsrc ├── .circleci └── config.yml ├── .gitattributes ├── .node-version ├── .nyc_output ├── 0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json └── processinfo │ ├── 0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json │ └── index.json ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── .yarn └── unplugged │ └── term-size-npm-2.2.0-2f8b439547 │ └── node_modules │ └── term-size │ └── vendor │ ├── .DS_Store │ └── macos │ └── .DS_Store ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Task.md ├── backend.md ├── client ├── .gitignore ├── cypress.json ├── cypress │ ├── fixtures │ │ └── public-transactions.json │ ├── global.d.ts │ ├── plugins │ │ └── index.ts │ ├── support │ │ ├── commands.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── tests │ │ ├── api │ │ │ ├── api-bankaccounts.spec.ts │ │ │ ├── api-banktransfers.spec.ts │ │ │ ├── api-comments.spec.ts │ │ │ ├── api-contacts.spec.ts │ │ │ ├── api-likes.spec.ts │ │ │ ├── api-notifications.spec.ts │ │ │ ├── api-testdata.spec.ts │ │ │ ├── api-transactions.spec.ts │ │ │ └── api-users.spec.ts │ │ └── ui │ │ │ ├── auth.spec.ts │ │ │ ├── bankaccounts.spec.ts │ │ │ ├── new-transaction.spec.ts │ │ │ ├── notifications.spec.ts │ │ │ ├── transaction-feeds.spec.ts │ │ │ ├── transaction-view.spec.ts │ │ │ └── user-settings.spec.ts │ └── tsconfig.json ├── debug.log ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── img │ │ └── rwa-readme-screenshot.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── __tests__ │ │ ├── bankaccounts.test.ts │ │ ├── comments.test.ts │ │ ├── contacts.test.ts │ │ ├── generateSeedData.test.ts │ │ ├── likes.test.ts │ │ ├── notifications.test.ts │ │ ├── transactions.test.ts │ │ └── users.test.ts │ ├── components │ │ ├── AlertBar.tsx │ │ ├── BankAccountForm.tsx │ │ ├── BankAccountItem.tsx │ │ ├── BankAccountList.tsx │ │ ├── Charts │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── Loading.css │ │ │ ├── Loading.tsx │ │ │ ├── LogOfAllEvents.tsx │ │ │ ├── MyGoogleMap.tsx │ │ │ ├── RetentionCohortWeek.tsx │ │ │ ├── SessionsDays.tsx │ │ │ ├── SessionsHours.tsx │ │ │ ├── UsersByOs.tsx │ │ │ ├── ViewSelector.tsx │ │ │ ├── ViewsPerPage.tsx │ │ │ └── styledComponent.ts │ │ ├── CommentForm.tsx │ │ ├── CommentList.tsx │ │ ├── CommentListItem.tsx │ │ ├── EmptyList.tsx │ │ ├── Footer.tsx │ │ ├── MainLayout.tsx │ │ ├── NavBar.tsx │ │ ├── NavDrawer.tsx │ │ ├── NotificationList.tsx │ │ ├── NotificationListItem.tsx │ │ ├── PrivateRoute.tsx │ │ ├── SignInForm.tsx │ │ ├── SignUpForm.tsx │ │ ├── SkeletonList.tsx │ │ ├── TransactionAmount.tsx │ │ ├── TransactionContactsList.tsx │ │ ├── TransactionCreateStepOne.tsx │ │ ├── TransactionCreateStepThree.tsx │ │ ├── TransactionCreateStepTwo.tsx │ │ ├── TransactionDateRangeFilter.tsx │ │ ├── TransactionDetail.tsx │ │ ├── TransactionInfiniteList.tsx │ │ ├── TransactionItem.tsx │ │ ├── TransactionList.tsx │ │ ├── TransactionListAmountRangeFilter.tsx │ │ ├── TransactionListFilters.tsx │ │ ├── TransactionNavTabs.tsx │ │ ├── TransactionPersonalList.tsx │ │ ├── TransactionPublicList.tsx │ │ ├── TransactionTitle.tsx │ │ ├── UserListItem.tsx │ │ ├── UserListSearchForm.tsx │ │ ├── UserSettingsForm.tsx │ │ └── UsersList.tsx │ ├── containers │ │ ├── App.tsx │ │ ├── BankAccountsContainer.tsx │ │ ├── DashBoard.tsx │ │ ├── NotificationsContainer.tsx │ │ ├── PrivateRoutesContainer.tsx │ │ ├── TransactionCreateContainer.tsx │ │ ├── TransactionDetailContainer.tsx │ │ ├── TransactionsContainer.tsx │ │ ├── UserOnboardingContainer.tsx │ │ └── UserSettingsContainer.tsx │ ├── index.tsx │ ├── machines │ │ ├── authMachine.ts │ │ ├── bankAccountsMachine.ts │ │ ├── contactsTransactionsMachine.ts │ │ ├── createTransactionMachine.ts │ │ ├── dataMachine.ts │ │ ├── drawerMachine.ts │ │ ├── notificationsMachine.ts │ │ ├── personalTransactionsMachine.ts │ │ ├── publicTransactionsMachine.ts │ │ ├── snackbarMachine.ts │ │ ├── transactionDetailMachine.ts │ │ ├── transactionFiltersMachine.ts │ │ ├── userOnboardingMachine.ts │ │ └── usersMachine.ts │ ├── models │ │ ├── bankaccount.ts │ │ ├── banktransfer.ts │ │ ├── comment.ts │ │ ├── contact.ts │ │ ├── db-schema.ts │ │ ├── event.ts │ │ ├── index.ts │ │ ├── like.ts │ │ ├── notification.ts │ │ ├── transaction.ts │ │ └── user.ts │ ├── react-app-env.d.ts │ ├── setupProxy.js │ ├── svgs │ │ ├── built-by-cypress.svg │ │ ├── cypress-logo.svg │ │ ├── rwa-icon-logo.svg │ │ ├── rwa-logo.svg │ │ ├── undraw_navigator_a479.svg │ │ ├── undraw_personal_finance_tqcd.svg │ │ ├── undraw_personal_settings_kihd.svg │ │ ├── undraw_reminders_697p.svg │ │ └── undraw_transfer_money_rywa.svg │ └── utils │ │ ├── __tests__ │ │ └── transactionUtils.test.ts │ │ ├── asyncUtils.ts │ │ ├── historyUtils.ts │ │ └── transactionUtils.ts ├── tsconfig.json └── tsconfig.tsnode.json ├── codecov.yml ├── kxXrAoCdNQ.gif ├── package.json ├── renovate.json ├── sandbox.config.json └── server ├── .env ├── .gitignore ├── backend ├── __tests__ │ ├── events.test.ts │ └── mock_data.ts ├── app.ts ├── auth.ts ├── bankaccount-routes.ts ├── banktransfer-routes.ts ├── comment-routes.ts ├── contact-routes.ts ├── database.ts ├── event-routes.ts ├── helpers.ts ├── index.ts ├── like-routes.ts ├── notification-routes.ts ├── testdata-routes.ts ├── timeFrames.ts ├── transaction-routes.ts ├── types.ts ├── user-routes.ts └── validators.ts ├── data ├── database-events.json ├── database-seed.json ├── database.json └── empty-seed.json ├── package-lock.json ├── package.json ├── scripts ├── generateSeedData.ts ├── seedDataUtils.ts ├── seedEvents.ts ├── testServer.ts └── tsconfig.json ├── tsconfig.json └── tsconfig.tsnode.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 12.19 -------------------------------------------------------------------------------- /.nyc_output/0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.nyc_output/0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json -------------------------------------------------------------------------------- /.nyc_output/processinfo/0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.nyc_output/processinfo/0d7b7ae3-41de-4ed5-811b-04e7622ca5e9.json -------------------------------------------------------------------------------- /.nyc_output/processinfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.nyc_output/processinfo/index.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | data 2 | build 3 | coverage -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/unplugged/term-size-npm-2.2.0-2f8b439547/node_modules/term-size/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.yarn/unplugged/term-size-npm-2.2.0-2f8b439547/node_modules/term-size/vendor/.DS_Store -------------------------------------------------------------------------------- /.yarn/unplugged/term-size-npm-2.2.0-2f8b439547/node_modules/term-size/vendor/macos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/.yarn/unplugged/term-size-npm-2.2.0-2f8b439547/node_modules/term-size/vendor/macos/.DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/Task.md -------------------------------------------------------------------------------- /backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/backend.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress.json -------------------------------------------------------------------------------- /client/cypress/fixtures/public-transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/fixtures/public-transactions.json -------------------------------------------------------------------------------- /client/cypress/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/global.d.ts -------------------------------------------------------------------------------- /client/cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/plugins/index.ts -------------------------------------------------------------------------------- /client/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/support/commands.ts -------------------------------------------------------------------------------- /client/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/support/index.ts -------------------------------------------------------------------------------- /client/cypress/support/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/support/utils.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-bankaccounts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-bankaccounts.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-banktransfers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-banktransfers.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-comments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-comments.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-contacts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-contacts.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-likes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-likes.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-notifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-notifications.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-testdata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-testdata.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-transactions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-transactions.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/api/api-users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/api/api-users.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/auth.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/bankaccounts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/bankaccounts.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/new-transaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/new-transaction.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/notifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/notifications.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/transaction-feeds.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/transaction-feeds.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/transaction-view.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/transaction-view.spec.ts -------------------------------------------------------------------------------- /client/cypress/tests/ui/user-settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tests/ui/user-settings.spec.ts -------------------------------------------------------------------------------- /client/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/cypress/tsconfig.json -------------------------------------------------------------------------------- /client/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/debug.log -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/img/rwa-readme-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/img/rwa-readme-screenshot.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/__tests__/bankaccounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/bankaccounts.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/comments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/comments.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/contacts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/contacts.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/generateSeedData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/generateSeedData.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/likes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/likes.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/notifications.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/notifications.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/transactions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/transactions.test.ts -------------------------------------------------------------------------------- /client/src/__tests__/users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/__tests__/users.test.ts -------------------------------------------------------------------------------- /client/src/components/AlertBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/AlertBar.tsx -------------------------------------------------------------------------------- /client/src/components/BankAccountForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/BankAccountForm.tsx -------------------------------------------------------------------------------- /client/src/components/BankAccountItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/BankAccountItem.tsx -------------------------------------------------------------------------------- /client/src/components/BankAccountList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/BankAccountList.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/ErrorBoundary.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/Loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/Loading.css -------------------------------------------------------------------------------- /client/src/components/Charts/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/Loading.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/LogOfAllEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/LogOfAllEvents.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/MyGoogleMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/MyGoogleMap.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/RetentionCohortWeek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/RetentionCohortWeek.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/SessionsDays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/SessionsDays.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/SessionsHours.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/SessionsHours.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/UsersByOs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/UsersByOs.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/ViewSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/ViewSelector.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/ViewsPerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/ViewsPerPage.tsx -------------------------------------------------------------------------------- /client/src/components/Charts/styledComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Charts/styledComponent.ts -------------------------------------------------------------------------------- /client/src/components/CommentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/CommentForm.tsx -------------------------------------------------------------------------------- /client/src/components/CommentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/CommentList.tsx -------------------------------------------------------------------------------- /client/src/components/CommentListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/CommentListItem.tsx -------------------------------------------------------------------------------- /client/src/components/EmptyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/EmptyList.tsx -------------------------------------------------------------------------------- /client/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/MainLayout.tsx -------------------------------------------------------------------------------- /client/src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/NavBar.tsx -------------------------------------------------------------------------------- /client/src/components/NavDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/NavDrawer.tsx -------------------------------------------------------------------------------- /client/src/components/NotificationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/NotificationList.tsx -------------------------------------------------------------------------------- /client/src/components/NotificationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/NotificationListItem.tsx -------------------------------------------------------------------------------- /client/src/components/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/PrivateRoute.tsx -------------------------------------------------------------------------------- /client/src/components/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/SignInForm.tsx -------------------------------------------------------------------------------- /client/src/components/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/SignUpForm.tsx -------------------------------------------------------------------------------- /client/src/components/SkeletonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/SkeletonList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionAmount.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionContactsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionContactsList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionCreateStepOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionCreateStepOne.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionCreateStepThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionCreateStepThree.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionCreateStepTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionCreateStepTwo.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionDateRangeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionDateRangeFilter.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionDetail.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionInfiniteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionInfiniteList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionItem.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionListAmountRangeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionListAmountRangeFilter.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionListFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionListFilters.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionNavTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionNavTabs.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionPersonalList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionPersonalList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionPublicList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionPublicList.tsx -------------------------------------------------------------------------------- /client/src/components/TransactionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/TransactionTitle.tsx -------------------------------------------------------------------------------- /client/src/components/UserListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/UserListItem.tsx -------------------------------------------------------------------------------- /client/src/components/UserListSearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/UserListSearchForm.tsx -------------------------------------------------------------------------------- /client/src/components/UserSettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/UserSettingsForm.tsx -------------------------------------------------------------------------------- /client/src/components/UsersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/components/UsersList.tsx -------------------------------------------------------------------------------- /client/src/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/App.tsx -------------------------------------------------------------------------------- /client/src/containers/BankAccountsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/BankAccountsContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/DashBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/DashBoard.tsx -------------------------------------------------------------------------------- /client/src/containers/NotificationsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/NotificationsContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/PrivateRoutesContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/PrivateRoutesContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/TransactionCreateContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/TransactionCreateContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/TransactionDetailContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/TransactionDetailContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/TransactionsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/TransactionsContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/UserOnboardingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/UserOnboardingContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/UserSettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/containers/UserSettingsContainer.tsx -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/machines/authMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/authMachine.ts -------------------------------------------------------------------------------- /client/src/machines/bankAccountsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/bankAccountsMachine.ts -------------------------------------------------------------------------------- /client/src/machines/contactsTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/contactsTransactionsMachine.ts -------------------------------------------------------------------------------- /client/src/machines/createTransactionMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/createTransactionMachine.ts -------------------------------------------------------------------------------- /client/src/machines/dataMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/dataMachine.ts -------------------------------------------------------------------------------- /client/src/machines/drawerMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/drawerMachine.ts -------------------------------------------------------------------------------- /client/src/machines/notificationsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/notificationsMachine.ts -------------------------------------------------------------------------------- /client/src/machines/personalTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/personalTransactionsMachine.ts -------------------------------------------------------------------------------- /client/src/machines/publicTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/publicTransactionsMachine.ts -------------------------------------------------------------------------------- /client/src/machines/snackbarMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/snackbarMachine.ts -------------------------------------------------------------------------------- /client/src/machines/transactionDetailMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/transactionDetailMachine.ts -------------------------------------------------------------------------------- /client/src/machines/transactionFiltersMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/transactionFiltersMachine.ts -------------------------------------------------------------------------------- /client/src/machines/userOnboardingMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/userOnboardingMachine.ts -------------------------------------------------------------------------------- /client/src/machines/usersMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/machines/usersMachine.ts -------------------------------------------------------------------------------- /client/src/models/bankaccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/bankaccount.ts -------------------------------------------------------------------------------- /client/src/models/banktransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/banktransfer.ts -------------------------------------------------------------------------------- /client/src/models/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/comment.ts -------------------------------------------------------------------------------- /client/src/models/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/contact.ts -------------------------------------------------------------------------------- /client/src/models/db-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/db-schema.ts -------------------------------------------------------------------------------- /client/src/models/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/event.ts -------------------------------------------------------------------------------- /client/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/index.ts -------------------------------------------------------------------------------- /client/src/models/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/like.ts -------------------------------------------------------------------------------- /client/src/models/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/notification.ts -------------------------------------------------------------------------------- /client/src/models/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/transaction.ts -------------------------------------------------------------------------------- /client/src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/models/user.ts -------------------------------------------------------------------------------- /client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/setupProxy.js -------------------------------------------------------------------------------- /client/src/svgs/built-by-cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/built-by-cypress.svg -------------------------------------------------------------------------------- /client/src/svgs/cypress-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/cypress-logo.svg -------------------------------------------------------------------------------- /client/src/svgs/rwa-icon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/rwa-icon-logo.svg -------------------------------------------------------------------------------- /client/src/svgs/rwa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/rwa-logo.svg -------------------------------------------------------------------------------- /client/src/svgs/undraw_navigator_a479.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/undraw_navigator_a479.svg -------------------------------------------------------------------------------- /client/src/svgs/undraw_personal_finance_tqcd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/undraw_personal_finance_tqcd.svg -------------------------------------------------------------------------------- /client/src/svgs/undraw_personal_settings_kihd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/undraw_personal_settings_kihd.svg -------------------------------------------------------------------------------- /client/src/svgs/undraw_reminders_697p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/undraw_reminders_697p.svg -------------------------------------------------------------------------------- /client/src/svgs/undraw_transfer_money_rywa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/svgs/undraw_transfer_money_rywa.svg -------------------------------------------------------------------------------- /client/src/utils/__tests__/transactionUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/utils/__tests__/transactionUtils.test.ts -------------------------------------------------------------------------------- /client/src/utils/asyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/utils/asyncUtils.ts -------------------------------------------------------------------------------- /client/src/utils/historyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/utils/historyUtils.ts -------------------------------------------------------------------------------- /client/src/utils/transactionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/src/utils/transactionUtils.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.tsnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/client/tsconfig.tsnode.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/codecov.yml -------------------------------------------------------------------------------- /kxXrAoCdNQ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/kxXrAoCdNQ.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/renovate.json -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/.env -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/backend/__tests__/events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/__tests__/events.test.ts -------------------------------------------------------------------------------- /server/backend/__tests__/mock_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/__tests__/mock_data.ts -------------------------------------------------------------------------------- /server/backend/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/app.ts -------------------------------------------------------------------------------- /server/backend/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/auth.ts -------------------------------------------------------------------------------- /server/backend/bankaccount-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/bankaccount-routes.ts -------------------------------------------------------------------------------- /server/backend/banktransfer-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/banktransfer-routes.ts -------------------------------------------------------------------------------- /server/backend/comment-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/comment-routes.ts -------------------------------------------------------------------------------- /server/backend/contact-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/contact-routes.ts -------------------------------------------------------------------------------- /server/backend/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/database.ts -------------------------------------------------------------------------------- /server/backend/event-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/event-routes.ts -------------------------------------------------------------------------------- /server/backend/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/helpers.ts -------------------------------------------------------------------------------- /server/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/index.ts -------------------------------------------------------------------------------- /server/backend/like-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/like-routes.ts -------------------------------------------------------------------------------- /server/backend/notification-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/notification-routes.ts -------------------------------------------------------------------------------- /server/backend/testdata-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/testdata-routes.ts -------------------------------------------------------------------------------- /server/backend/timeFrames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/timeFrames.ts -------------------------------------------------------------------------------- /server/backend/transaction-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/transaction-routes.ts -------------------------------------------------------------------------------- /server/backend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/types.ts -------------------------------------------------------------------------------- /server/backend/user-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/user-routes.ts -------------------------------------------------------------------------------- /server/backend/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/backend/validators.ts -------------------------------------------------------------------------------- /server/data/database-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/data/database-events.json -------------------------------------------------------------------------------- /server/data/database-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/data/database-seed.json -------------------------------------------------------------------------------- /server/data/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/data/database.json -------------------------------------------------------------------------------- /server/data/empty-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/data/empty-seed.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/package.json -------------------------------------------------------------------------------- /server/scripts/generateSeedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/scripts/generateSeedData.ts -------------------------------------------------------------------------------- /server/scripts/seedDataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/scripts/seedDataUtils.ts -------------------------------------------------------------------------------- /server/scripts/seedEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/scripts/seedEvents.ts -------------------------------------------------------------------------------- /server/scripts/testServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/scripts/testServer.ts -------------------------------------------------------------------------------- /server/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/scripts/tsconfig.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/tsconfig.tsnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david35008/Analytics-Events-Dashboard/HEAD/server/tsconfig.tsnode.json --------------------------------------------------------------------------------