Commit db04a78
🚀 Add bank account transaction integration (#132)
* Add bank account transaction integration
* Fixup indent
* Correct types
* Refactor some new code
* Add missing env in docker compose file
* Remove duplicates of docker files
* Update env to not use NEXT_PUBLIC
* Revert the country code in getInstitutions
* Refactor a on transaction row click function
* Remove unused imports/consts to make lint happy
* Fixed some comments from Fredrik
Co-authored-by: Fredrik Olsson <fredrik.olsson@precisit.com>
* Revert theme support
* Fix bug with floating numbers on exact split calculator
* Add verified transaction label
* Fixup linebreak in transactions list
* Order by expense created date in the groups list
* Redirect to groupexpense or expense in activity list based on groupId
* Fixup transaction row
* Make the checkbox bigger on mobile
* Make expenses lines thicker
* Fixup
* Add isloading to submit all on bank transaction to prevent adding multiple
* Fix
* Make changes so it works with new versions of splitpro
* Add missing translations
* Update to new code
* Add missing translations
* Fix lint
* Change translations
* Make it compile
* Changes from codereview
* Add translations for feature on homepage
* Move the envs to page hoc
* Refactor to make it easier to add more providers
* Reuse
* Fix ts error
* poc with pg_cron
* Remove the testing cron job
* Refactor to make it even easier to add more providers
* Move some reusable code
* User language to gocardless session
* Fix import
* Change some locales
* Add plaid along side with gocardless
* Update plaid support
* Whitespace and locale key regression fixes
* Changes according to review
* Add migration
* Update cache from migration
* Update according to review
* Fix missing translation
* Comment out multiple transactions
* Merge migrations, setup the cron jobs
* Add check for db url
* Changes after review
* UI fixes and optional transactionId
* Hide clear button when its disabled
* Fix peer dep issues and next runtime check
* Fix build
* Fix lint
---------
Co-authored-by: Fredrik Olsson <fredrik.olsson@precisit.com>
Co-authored-by: krokosik <krokosik@pm.me>1 parent 1c2559c commit db04a78
52 files changed
Lines changed: 2027 additions & 148 deletions
File tree
- .husky
- docker
- dev
- prod
- prisma
- migrations/20241026095834_add_gocardless_bank_transaction_integration
- public/locales/en
- src
- components
- Account/BankAccount
- AddExpense
- BankTransactions
- Expense
- Layout
- ui
- hooks
- pages
- balances
- server
- api
- routers
- services
- bankTransactions
- store
- types
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
49 | 69 | | |
50 | 70 | | |
51 | 71 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| 35 | + | |
35 | 36 | | |
36 | 37 | | |
37 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
| 132 | + | |
132 | 133 | | |
133 | 134 | | |
134 | 135 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
17 | 22 | | |
18 | 23 | | |
19 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
23 | 28 | | |
24 | 29 | | |
25 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
| 59 | + | |
| 60 | + | |
59 | 61 | | |
60 | 62 | | |
61 | 63 | | |
62 | 64 | | |
63 | 65 | | |
64 | 66 | | |
| 67 | + | |
65 | 68 | | |
66 | 69 | | |
67 | 70 | | |
| |||
0 commit comments