@actual-app/core 26.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (358) hide show
  1. package/.swcrc +11 -0
  2. package/bin/build-browser +40 -0
  3. package/bin/copy-migrations +9 -0
  4. package/db.sqlite +0 -0
  5. package/default-db.sqlite +0 -0
  6. package/migrations/.force-copy-windows +0 -0
  7. package/migrations/1548957970627_remove-db-version.sql +5 -0
  8. package/migrations/1550601598648_payees.sql +23 -0
  9. package/migrations/1555786194328_remove_category_group_unique.sql +25 -0
  10. package/migrations/1561751833510_indexes.sql +7 -0
  11. package/migrations/1567699552727_budget.sql +38 -0
  12. package/migrations/1582384163573_cleared.sql +6 -0
  13. package/migrations/1597756566448_rules.sql +10 -0
  14. package/migrations/1608652596043_parent_field.sql +13 -0
  15. package/migrations/1608652596044_trans_views.sql +56 -0
  16. package/migrations/1612625548236_optimize.sql +7 -0
  17. package/migrations/1614782639336_trans_views2.sql +33 -0
  18. package/migrations/1615745967948_meta.sql +10 -0
  19. package/migrations/1616167010796_accounts_order.sql +5 -0
  20. package/migrations/1618975177358_schedules.sql +28 -0
  21. package/migrations/1632571489012_remove_cache.js +136 -0
  22. package/migrations/1679728867040_rules_conditions.sql +5 -0
  23. package/migrations/1681115033845_add_schedule_name.sql +5 -0
  24. package/migrations/1682974838138_remove_payee_rules.sql +5 -0
  25. package/migrations/1685007876842_add_category_hidden.sql +6 -0
  26. package/migrations/1686139660866_remove_account_type.sql +5 -0
  27. package/migrations/1688749527273_transaction_filters.sql +10 -0
  28. package/migrations/1688841238000_add_account_type.sql +5 -0
  29. package/migrations/1691233396000_add_schedule_next_date_tombstone.sql +5 -0
  30. package/migrations/1694438752000_add_goal_targets.sql +7 -0
  31. package/migrations/1697046240000_add_reconciled.sql +5 -0
  32. package/migrations/1704572023730_add_account_sync_source.sql +5 -0
  33. package/migrations/1704572023731_add_missing_goCardless_sync_source.sql +9 -0
  34. package/migrations/1707267033000_reports.sql +28 -0
  35. package/migrations/1712784523000_unhide_input_group.sql +8 -0
  36. package/migrations/1716359441000_include_current.sql +5 -0
  37. package/migrations/1720310586000_link_transfer_schedules.sql +19 -0
  38. package/migrations/1720664867241_add_payee_favorite.sql +5 -0
  39. package/migrations/1720665000000_goal_context.sql +6 -0
  40. package/migrations/1722717601000_reports_move_selected_categories.js +55 -0
  41. package/migrations/1722804019000_create_dashboard_table.js +69 -0
  42. package/migrations/1723665565000_prefs.js +59 -0
  43. package/migrations/1730744182000_fix_dashboard_table.sql +7 -0
  44. package/migrations/1736640000000_custom_report_sorting.sql +7 -0
  45. package/migrations/1737158400000_add_learn_categories_to_payees.sql +5 -0
  46. package/migrations/1738491452000_sorting_rename.sql +13 -0
  47. package/migrations/1739139550000_bank_sync_page.sql +7 -0
  48. package/migrations/1740506588539_add_last_reconciled_at.sql +5 -0
  49. package/migrations/1745425408000_update_budgetType_pref.sql +7 -0
  50. package/migrations/1749799110000_add_tags.sql +10 -0
  51. package/migrations/1749799110001_tags_tombstone.sql +5 -0
  52. package/migrations/1754611200000_add_category_template_settings.sql +5 -0
  53. package/migrations/1759260219000_add_trim_interval_report_setting.sql +6 -0
  54. package/migrations/1759842823172_add_isGlobal_to_preferences.sql +1 -0
  55. package/migrations/1762178745667_rename_csv_skip_lines_pref.sql +8 -0
  56. package/migrations/1765518577215_multiple_dashboards.js +30 -0
  57. package/migrations/1768872504000_add_payee_locations.sql +21 -0
  58. package/package.json +128 -0
  59. package/src/mocks/arbitrary-schema.ts +162 -0
  60. package/src/mocks/budget.ts +901 -0
  61. package/src/mocks/files/8859-1.qfx +63 -0
  62. package/src/mocks/files/best.data-ever$.QFX +124 -0
  63. package/src/mocks/files/big.data.QiF +91 -0
  64. package/src/mocks/files/budgets/.commit-to-git +0 -0
  65. package/src/mocks/files/camt/camt.053.payee-memo.xml +127 -0
  66. package/src/mocks/files/camt/camt.053.xml +463 -0
  67. package/src/mocks/files/credit-card.ofx +11 -0
  68. package/src/mocks/files/data-multi-decimal.ofx +64 -0
  69. package/src/mocks/files/data-payee-memo.ofx +75 -0
  70. package/src/mocks/files/data-payee-memo.qif +17 -0
  71. package/src/mocks/files/data.ofx +124 -0
  72. package/src/mocks/files/data.qfx +124 -0
  73. package/src/mocks/files/data.qif +91 -0
  74. package/src/mocks/files/default-budget-template/db.sqlite +0 -0
  75. package/src/mocks/files/default-budget-template/metadata.json +6 -0
  76. package/src/mocks/files/html-vals.qfx +17 -0
  77. package/src/mocks/index.ts +221 -0
  78. package/src/mocks/migrations/1508717984291_up_add-poop.sql +13 -0
  79. package/src/mocks/migrations/1508718036311_up_modify-poop.sql +2 -0
  80. package/src/mocks/migrations/1508727787513_remove-is_income.sql +15 -0
  81. package/src/mocks/random.ts +16 -0
  82. package/src/mocks/setup.ts +180 -0
  83. package/src/mocks/spreadsheet.ts +101 -0
  84. package/src/mocks/util.ts +82 -0
  85. package/src/platform/client/connection/README.md +3 -0
  86. package/src/platform/client/connection/__mocks__/index.ts +67 -0
  87. package/src/platform/client/connection/index-types.ts +95 -0
  88. package/src/platform/client/connection/index.browser.ts +213 -0
  89. package/src/platform/client/connection/index.ts +155 -0
  90. package/src/platform/client/undo/index.ts +59 -0
  91. package/src/platform/exceptions/__mocks__/index.ts +7 -0
  92. package/src/platform/exceptions/index.ts +9 -0
  93. package/src/platform/server/asyncStorage/__mocks__/index.ts +50 -0
  94. package/src/platform/server/asyncStorage/index-types.ts +35 -0
  95. package/src/platform/server/asyncStorage/index.api.ts +2 -0
  96. package/src/platform/server/asyncStorage/index.electron.ts +88 -0
  97. package/src/platform/server/asyncStorage/index.ts +126 -0
  98. package/src/platform/server/connection/README.md +3 -0
  99. package/src/platform/server/connection/__mocks__/index.ts +15 -0
  100. package/src/platform/server/connection/index-types.ts +20 -0
  101. package/src/platform/server/connection/index.api.ts +13 -0
  102. package/src/platform/server/connection/index.electron.ts +102 -0
  103. package/src/platform/server/connection/index.ts +154 -0
  104. package/src/platform/server/fetch/__mocks__/index.ts +3 -0
  105. package/src/platform/server/fetch/index.api.ts +1 -0
  106. package/src/platform/server/fetch/index.electron.ts +18 -0
  107. package/src/platform/server/fetch/index.ts +20 -0
  108. package/src/platform/server/fs/index.api.ts +198 -0
  109. package/src/platform/server/fs/index.electron.ts +208 -0
  110. package/src/platform/server/fs/index.test.ts +117 -0
  111. package/src/platform/server/fs/index.ts +416 -0
  112. package/src/platform/server/fs/path-join.api.ts +1 -0
  113. package/src/platform/server/fs/path-join.electron.ts +1 -0
  114. package/src/platform/server/fs/path-join.ts +97 -0
  115. package/src/platform/server/fs/shared.ts +33 -0
  116. package/src/platform/server/indexeddb/index.ts +115 -0
  117. package/src/platform/server/log/index.ts +43 -0
  118. package/src/platform/server/sqlite/index.api.ts +2 -0
  119. package/src/platform/server/sqlite/index.electron.ts +134 -0
  120. package/src/platform/server/sqlite/index.test.ts +108 -0
  121. package/src/platform/server/sqlite/index.ts +241 -0
  122. package/src/platform/server/sqlite/normalise.ts +9 -0
  123. package/src/platform/server/sqlite/unicodeLike.test.ts +58 -0
  124. package/src/platform/server/sqlite/unicodeLike.ts +31 -0
  125. package/src/server/__mocks__/post.ts +9 -0
  126. package/src/server/__snapshots__/main.test.ts.snap +199 -0
  127. package/src/server/__snapshots__/sheet.test.ts.snap +9 -0
  128. package/src/server/accounts/__snapshots__/sync.test.ts.snap +136 -0
  129. package/src/server/accounts/app-bank-sync.test.ts +136 -0
  130. package/src/server/accounts/app.ts +1294 -0
  131. package/src/server/accounts/link.ts +25 -0
  132. package/src/server/accounts/payees.ts +36 -0
  133. package/src/server/accounts/sync.test.ts +679 -0
  134. package/src/server/accounts/sync.ts +1168 -0
  135. package/src/server/accounts/title/index.ts +60 -0
  136. package/src/server/accounts/title/lower-case.ts +93 -0
  137. package/src/server/accounts/title/specials.ts +21 -0
  138. package/src/server/admin/app.ts +241 -0
  139. package/src/server/api-models.ts +244 -0
  140. package/src/server/api.test.ts +36 -0
  141. package/src/server/api.ts +1030 -0
  142. package/src/server/app.ts +91 -0
  143. package/src/server/aql/compiler.test.ts +966 -0
  144. package/src/server/aql/compiler.ts +1222 -0
  145. package/src/server/aql/exec.test.ts +289 -0
  146. package/src/server/aql/exec.ts +128 -0
  147. package/src/server/aql/index.ts +41 -0
  148. package/src/server/aql/schema/executors.test.ts +420 -0
  149. package/src/server/aql/schema/executors.ts +345 -0
  150. package/src/server/aql/schema/index.test.ts +67 -0
  151. package/src/server/aql/schema/index.ts +409 -0
  152. package/src/server/aql/schema-helpers.test.ts +242 -0
  153. package/src/server/aql/schema-helpers.ts +208 -0
  154. package/src/server/aql/views.test.ts +62 -0
  155. package/src/server/aql/views.ts +57 -0
  156. package/src/server/auth/app.ts +387 -0
  157. package/src/server/bench.ts +29 -0
  158. package/src/server/budget/actions.ts +686 -0
  159. package/src/server/budget/app.ts +469 -0
  160. package/src/server/budget/base.test.ts +340 -0
  161. package/src/server/budget/base.ts +339 -0
  162. package/src/server/budget/category-template-context.test.ts +1658 -0
  163. package/src/server/budget/category-template-context.ts +862 -0
  164. package/src/server/budget/cleanup-template.pegjs +27 -0
  165. package/src/server/budget/cleanup-template.ts +408 -0
  166. package/src/server/budget/envelope.ts +403 -0
  167. package/src/server/budget/goal-template.pegjs +110 -0
  168. package/src/server/budget/goal-template.ts +309 -0
  169. package/src/server/budget/report.ts +308 -0
  170. package/src/server/budget/schedule-template.test.ts +184 -0
  171. package/src/server/budget/schedule-template.ts +351 -0
  172. package/src/server/budget/statements.ts +60 -0
  173. package/src/server/budget/template-notes.test.ts +393 -0
  174. package/src/server/budget/template-notes.ts +323 -0
  175. package/src/server/budget/util.ts +25 -0
  176. package/src/server/budgetfiles/__snapshots__/backups.test.ts.snap +101 -0
  177. package/src/server/budgetfiles/app.ts +672 -0
  178. package/src/server/budgetfiles/backups.test.ts +79 -0
  179. package/src/server/budgetfiles/backups.ts +251 -0
  180. package/src/server/cloud-storage.ts +467 -0
  181. package/src/server/dashboard/app.ts +373 -0
  182. package/src/server/db/__snapshots__/index.test.ts.snap +271 -0
  183. package/src/server/db/index.test.ts +300 -0
  184. package/src/server/db/index.ts +855 -0
  185. package/src/server/db/mappings.ts +59 -0
  186. package/src/server/db/sort.ts +58 -0
  187. package/src/server/db/types/index.ts +342 -0
  188. package/src/server/db/util.ts +36 -0
  189. package/src/server/encryption/app.ts +133 -0
  190. package/src/server/encryption/encryption-internals.api.ts +2 -0
  191. package/src/server/encryption/encryption-internals.electron.ts +89 -0
  192. package/src/server/encryption/encryption-internals.ts +109 -0
  193. package/src/server/encryption/encryption.test.ts +19 -0
  194. package/src/server/encryption/index.test.ts +19 -0
  195. package/src/server/encryption/index.ts +89 -0
  196. package/src/server/errors.ts +110 -0
  197. package/src/server/filters/app.ts +191 -0
  198. package/src/server/importers/actual.ts +49 -0
  199. package/src/server/importers/index.ts +58 -0
  200. package/src/server/importers/ynab4-types.ts +163 -0
  201. package/src/server/importers/ynab4.ts +470 -0
  202. package/src/server/importers/ynab5-types.ts +290 -0
  203. package/src/server/importers/ynab5.ts +1193 -0
  204. package/src/server/main-app.ts +25 -0
  205. package/src/server/main.test.ts +392 -0
  206. package/src/server/main.ts +336 -0
  207. package/src/server/migrate/__snapshots__/migrations.test.ts.snap +17 -0
  208. package/src/server/migrate/cli.ts +100 -0
  209. package/src/server/migrate/migrations.test.ts +81 -0
  210. package/src/server/migrate/migrations.ts +192 -0
  211. package/src/server/models.ts +184 -0
  212. package/src/server/mutators.ts +139 -0
  213. package/src/server/notes/app.ts +18 -0
  214. package/src/server/payees/app.ts +351 -0
  215. package/src/server/polyfills.ts +26 -0
  216. package/src/server/post.ts +219 -0
  217. package/src/server/preferences/app.ts +249 -0
  218. package/src/server/prefs.ts +91 -0
  219. package/src/server/reports/app.ts +187 -0
  220. package/src/server/rules/action.ts +344 -0
  221. package/src/server/rules/app.ts +193 -0
  222. package/src/server/rules/condition.ts +436 -0
  223. package/src/server/rules/customFunctions.ts +61 -0
  224. package/src/server/rules/formula-action.test.ts +175 -0
  225. package/src/server/rules/handlebars-helpers.ts +131 -0
  226. package/src/server/rules/index.test.ts +1095 -0
  227. package/src/server/rules/index.ts +22 -0
  228. package/src/server/rules/rule-indexer.ts +89 -0
  229. package/src/server/rules/rule-utils.ts +274 -0
  230. package/src/server/rules/rule.ts +193 -0
  231. package/src/server/schedules/app.test.ts +502 -0
  232. package/src/server/schedules/app.ts +644 -0
  233. package/src/server/schedules/find-schedules.ts +391 -0
  234. package/src/server/server-config.ts +59 -0
  235. package/src/server/sheet.test.ts +101 -0
  236. package/src/server/sheet.ts +280 -0
  237. package/src/server/spreadsheet/__snapshots__/spreadsheet.test.ts.snap +5 -0
  238. package/src/server/spreadsheet/app.ts +54 -0
  239. package/src/server/spreadsheet/globals.ts +13 -0
  240. package/src/server/spreadsheet/graph-data-structure.ts +165 -0
  241. package/src/server/spreadsheet/scratch +60 -0
  242. package/src/server/spreadsheet/spreadsheet.test.ts +191 -0
  243. package/src/server/spreadsheet/spreadsheet.ts +523 -0
  244. package/src/server/spreadsheet/util.ts +15 -0
  245. package/src/server/sql/init.sql +88 -0
  246. package/src/server/sync/__snapshots__/sync.test.ts.snap +31 -0
  247. package/src/server/sync/app.ts +29 -0
  248. package/src/server/sync/encoder.ts +129 -0
  249. package/src/server/sync/index.ts +820 -0
  250. package/src/server/sync/make-test-message.ts +19 -0
  251. package/src/server/sync/migrate.test.ts +169 -0
  252. package/src/server/sync/migrate.ts +48 -0
  253. package/src/server/sync/repair.ts +39 -0
  254. package/src/server/sync/reset.ts +91 -0
  255. package/src/server/sync/sync.property.test.ts +385 -0
  256. package/src/server/sync/sync.test.ts +349 -0
  257. package/src/server/sync/utils.ts +3 -0
  258. package/src/server/tags/app.ts +101 -0
  259. package/src/server/tests/mockData.json +9352 -0
  260. package/src/server/tests/mockSyncServer.ts +119 -0
  261. package/src/server/tools/app.ts +152 -0
  262. package/src/server/transactions/__snapshots__/transaction-rules.test.ts.snap +173 -0
  263. package/src/server/transactions/__snapshots__/transfer.test.ts.snap +655 -0
  264. package/src/server/transactions/app.ts +136 -0
  265. package/src/server/transactions/export/export-to-csv.ts +132 -0
  266. package/src/server/transactions/import/__snapshots__/parse-file.test.ts.snap +1582 -0
  267. package/src/server/transactions/import/ofx2json.test.ts +33 -0
  268. package/src/server/transactions/import/ofx2json.ts +157 -0
  269. package/src/server/transactions/import/parse-file.test.ts +224 -0
  270. package/src/server/transactions/import/parse-file.ts +286 -0
  271. package/src/server/transactions/import/qif2json.ts +110 -0
  272. package/src/server/transactions/import/xmlcamt2json.ts +168 -0
  273. package/src/server/transactions/index.ts +196 -0
  274. package/src/server/transactions/merge.test.ts +370 -0
  275. package/src/server/transactions/merge.ts +139 -0
  276. package/src/server/transactions/transaction-rules.test.ts +994 -0
  277. package/src/server/transactions/transaction-rules.ts +1038 -0
  278. package/src/server/transactions/transfer.test.ts +221 -0
  279. package/src/server/transactions/transfer.ts +173 -0
  280. package/src/server/undo.ts +271 -0
  281. package/src/server/update.ts +37 -0
  282. package/src/server/util/budget-name.ts +61 -0
  283. package/src/server/util/custom-sync-mapping.ts +48 -0
  284. package/src/server/util/rschedule.ts +9 -0
  285. package/src/shared/__mocks__/platform.ts +7 -0
  286. package/src/shared/__snapshots__/months.test.ts.snap +21 -0
  287. package/src/shared/arithmetic.test.ts +112 -0
  288. package/src/shared/arithmetic.ts +170 -0
  289. package/src/shared/async.test.ts +135 -0
  290. package/src/shared/async.ts +76 -0
  291. package/src/shared/constants.ts +5 -0
  292. package/src/shared/currencies.ts +70 -0
  293. package/src/shared/dashboard.ts +260 -0
  294. package/src/shared/environment.ts +18 -0
  295. package/src/shared/errors.ts +195 -0
  296. package/src/shared/locale.ts +27 -0
  297. package/src/shared/location-utils.test.ts +69 -0
  298. package/src/shared/location-utils.ts +49 -0
  299. package/src/shared/months.test.ts +5 -0
  300. package/src/shared/months.ts +485 -0
  301. package/src/shared/normalisation.ts +6 -0
  302. package/src/shared/platform.electron.ts +21 -0
  303. package/src/shared/platform.ts +20 -0
  304. package/src/shared/query.ts +176 -0
  305. package/src/shared/rules.test.ts +56 -0
  306. package/src/shared/rules.ts +371 -0
  307. package/src/shared/schedules.test.ts +570 -0
  308. package/src/shared/schedules.ts +560 -0
  309. package/src/shared/test-helpers.ts +156 -0
  310. package/src/shared/transactions.test.ts +275 -0
  311. package/src/shared/transactions.ts +433 -0
  312. package/src/shared/transfer.test.ts +75 -0
  313. package/src/shared/transfer.ts +16 -0
  314. package/src/shared/user.ts +4 -0
  315. package/src/shared/util.test.ts +240 -0
  316. package/src/shared/util.ts +633 -0
  317. package/src/types/api-handlers.ts +287 -0
  318. package/src/types/budget.ts +8 -0
  319. package/src/types/file.ts +47 -0
  320. package/src/types/handlers.ts +46 -0
  321. package/src/types/models/account.ts +24 -0
  322. package/src/types/models/bank-sync.ts +23 -0
  323. package/src/types/models/bank.ts +6 -0
  324. package/src/types/models/category-group.ts +11 -0
  325. package/src/types/models/category.ts +13 -0
  326. package/src/types/models/dashboard.ts +199 -0
  327. package/src/types/models/gocardless.ts +84 -0
  328. package/src/types/models/import-transaction.ts +56 -0
  329. package/src/types/models/index.ts +23 -0
  330. package/src/types/models/nearby-payee.ts +7 -0
  331. package/src/types/models/note.ts +4 -0
  332. package/src/types/models/openid.ts +8 -0
  333. package/src/types/models/payee-location.ts +8 -0
  334. package/src/types/models/payee.ts +10 -0
  335. package/src/types/models/pluggyai.ts +19 -0
  336. package/src/types/models/reports.ts +144 -0
  337. package/src/types/models/rule.ts +174 -0
  338. package/src/types/models/schedule.ts +49 -0
  339. package/src/types/models/simplefin.ts +28 -0
  340. package/src/types/models/tags.ts +6 -0
  341. package/src/types/models/templates.ts +135 -0
  342. package/src/types/models/transaction-filter.ts +9 -0
  343. package/src/types/models/transaction.ts +39 -0
  344. package/src/types/models/user-access.ts +10 -0
  345. package/src/types/models/user.ts +25 -0
  346. package/src/types/prefs.ts +167 -0
  347. package/src/types/server-events.ts +86 -0
  348. package/src/types/server-handlers.ts +27 -0
  349. package/src/types/util.ts +26 -0
  350. package/tsconfig.json +34 -0
  351. package/typings/pegjs.ts +1 -0
  352. package/typings/process-worker.ts +12 -0
  353. package/typings/vite-plugin-peggy-loader.ts +1 -0
  354. package/typings/window.ts +62 -0
  355. package/vite.config.ts +109 -0
  356. package/vite.desktop.config.ts +59 -0
  357. package/vitest.config.ts +43 -0
  358. package/vitest.web.config.ts +38 -0
@@ -0,0 +1,275 @@
1
+ // @ts-strict-ignore
2
+ import { v4 as uuidv4 } from 'uuid';
3
+
4
+ import type { TransactionEntity } from '../types/models';
5
+
6
+ import {
7
+ addSplitTransaction,
8
+ deleteTransaction,
9
+ makeAsNonChildTransactions,
10
+ makeChild,
11
+ splitTransaction,
12
+ updateTransaction,
13
+ } from './transactions';
14
+
15
+ function makeTransaction(data: Partial<TransactionEntity>): TransactionEntity {
16
+ return {
17
+ id: uuidv4(),
18
+ amount: 2422,
19
+ date: '2020-01-05',
20
+ account: 'acc-id-1',
21
+ ...data,
22
+ };
23
+ }
24
+
25
+ function makeSplitTransaction(data, children) {
26
+ const parent = makeTransaction({ ...data, is_parent: true });
27
+ return [parent, ...children.map(t => makeChild(parent, t))];
28
+ }
29
+
30
+ function splitError(amount: number) {
31
+ return { difference: amount, type: 'SplitTransactionError', version: 1 };
32
+ }
33
+
34
+ describe('Transactions', () => {
35
+ test('updating a transaction works', () => {
36
+ const transactions = [
37
+ makeTransaction({ amount: 5000 }),
38
+ makeTransaction({ id: 't1', amount: 4000 }),
39
+ makeTransaction({ amount: 3000 }),
40
+ ];
41
+ const { data, diff } = updateTransaction(
42
+ transactions,
43
+ makeTransaction({
44
+ id: 't1',
45
+ amount: 5000,
46
+ }),
47
+ );
48
+ expect(data.find(d => d.subtransactions)).toBeFalsy();
49
+ expect(diff).toEqual({
50
+ added: [],
51
+ deleted: [],
52
+ updated: [expect.objectContaining({ id: 't1', amount: 5000 })],
53
+ });
54
+ expect(
55
+ data
56
+ .map(t => ({ id: t.id, amount: t.amount }))
57
+ .sort(
58
+ (a, b) =>
59
+ b.amount - a.amount || String(a.id).localeCompare(String(b.id)),
60
+ ),
61
+ ).toEqual([
62
+ { id: expect.any(String), amount: 5000 },
63
+ { id: 't1', amount: 5000 },
64
+ { id: expect.any(String), amount: 3000 },
65
+ ]);
66
+ });
67
+
68
+ test('updating does nothing if value not changed', () => {
69
+ const updatedTransaction = makeTransaction({ id: 't1', amount: 5000 });
70
+ const transactions = [
71
+ updatedTransaction,
72
+ makeTransaction({ amount: 3000 }),
73
+ ];
74
+ const { data, diff } = updateTransaction(transactions, updatedTransaction);
75
+ expect(diff).toEqual({ added: [], deleted: [], updated: [] });
76
+ expect(
77
+ data
78
+ .map(t => ({ id: t.id, amount: t.amount }))
79
+ .sort(
80
+ (a, b) =>
81
+ b.amount - a.amount || String(a.id).localeCompare(String(b.id)),
82
+ ),
83
+ ).toEqual([
84
+ { id: expect.any(String), amount: 5000 },
85
+ { id: expect.any(String), amount: 3000 },
86
+ ]);
87
+ });
88
+
89
+ test('deleting a transaction works', () => {
90
+ const transactions = [
91
+ makeTransaction({ amount: 5000 }),
92
+ makeTransaction({ id: 't1', amount: 4000 }),
93
+ makeTransaction({ amount: 3000 }),
94
+ ];
95
+ const { data, diff } = deleteTransaction(transactions, 't1');
96
+
97
+ expect(diff).toEqual({
98
+ added: [],
99
+ deleted: [{ id: 't1' }],
100
+ updated: [],
101
+ });
102
+ expect(
103
+ data
104
+ .map(t => ({ id: t.id, amount: t.amount }))
105
+ .sort(
106
+ (a, b) =>
107
+ b.amount - a.amount || String(a.id).localeCompare(String(b.id)),
108
+ ),
109
+ ).toEqual([
110
+ { id: expect.any(String), amount: 5000 },
111
+ { id: expect.any(String), amount: 3000 },
112
+ ]);
113
+ });
114
+
115
+ test('splitting a transaction works', () => {
116
+ const transactions = [
117
+ makeTransaction({ id: 't1', amount: 5000 }),
118
+ makeTransaction({ amount: 3000 }),
119
+ ];
120
+ const { data, diff } = splitTransaction(transactions, 't1');
121
+ expect(data.find(d => d.subtransactions)).toBeFalsy();
122
+
123
+ expect(diff).toEqual({
124
+ added: [expect.objectContaining({ amount: 0, parent_id: 't1' })],
125
+ deleted: [],
126
+ updated: [
127
+ {
128
+ id: 't1',
129
+ is_parent: true,
130
+ error: splitError(5000),
131
+ },
132
+ ],
133
+ });
134
+ expect(data).toEqual([
135
+ expect.objectContaining({
136
+ id: 't1',
137
+ amount: 5000,
138
+ error: splitError(5000),
139
+ }),
140
+ expect.objectContaining({ parent_id: 't1', amount: 0 }),
141
+ expect.objectContaining({ amount: 3000 }),
142
+ ]);
143
+ });
144
+
145
+ test('adding a split transaction works', () => {
146
+ const transactions = [
147
+ makeTransaction({ amount: 2001 }),
148
+ ...makeSplitTransaction({ id: 't1', amount: 2500 }, [
149
+ { id: 't2', amount: 2000 },
150
+ { id: 't3', amount: 500 },
151
+ ]),
152
+ makeTransaction({ amount: 3002 }),
153
+ ];
154
+
155
+ expect(transactions.filter(t => t.parent_id === 't1').length).toBe(2);
156
+
157
+ // Should be able to pass in any id from the split trans
158
+ const { data, diff } = addSplitTransaction(transactions, 't1');
159
+ expect(data.find(d => d.subtransactions)).toBeFalsy();
160
+
161
+ expect(data.filter(t => t.parent_id === 't1').length).toBe(3);
162
+ expect(diff).toEqual({
163
+ added: [
164
+ expect.objectContaining({
165
+ id: expect.any(String),
166
+ amount: 0,
167
+ parent_id: 't1',
168
+ }),
169
+ ],
170
+ deleted: [],
171
+ updated: [],
172
+ });
173
+ expect(data.length).toBe(6);
174
+ });
175
+
176
+ test('updating a split transaction works', () => {
177
+ const transactions = [
178
+ makeTransaction({ amount: 2001 }),
179
+ ...makeSplitTransaction({ id: 't1', amount: 2500 }, [
180
+ { id: 't2', amount: 2000 },
181
+ { id: 't3', amount: 500 },
182
+ ]),
183
+ makeTransaction({ amount: 3002 }),
184
+ ];
185
+ const { data, diff } = updateTransaction(
186
+ transactions,
187
+ makeTransaction({
188
+ id: 't2',
189
+ amount: 2200,
190
+ }),
191
+ );
192
+ expect(data.find(d => d.subtransactions)).toBeFalsy();
193
+ expect(diff).toEqual({
194
+ added: [],
195
+ deleted: [],
196
+ updated: [
197
+ { id: 't1', error: splitError(-200) },
198
+ { id: 't2', amount: 2200 },
199
+ ],
200
+ });
201
+ expect(data.length).toBe(5);
202
+ });
203
+
204
+ test('deleting a split transaction works', () => {
205
+ const transactions = [
206
+ makeTransaction({ amount: 2001 }),
207
+ ...makeSplitTransaction({ id: 't1', amount: 2500 }, [
208
+ { id: 't2', amount: 2000 },
209
+ { id: 't3', amount: 500 },
210
+ ]),
211
+ makeTransaction({ amount: 3002 }),
212
+ ];
213
+ const { data, diff } = deleteTransaction(transactions, 't2');
214
+
215
+ expect(diff).toEqual({
216
+ added: [],
217
+ deleted: [expect.objectContaining({ id: 't2' })],
218
+ updated: [{ id: 't1', error: splitError(2000) }],
219
+ });
220
+ expect(data).toEqual([
221
+ expect.objectContaining({ amount: 2001 }),
222
+ expect.objectContaining({
223
+ amount: 2500,
224
+ is_parent: true,
225
+ error: splitError(2000),
226
+ }),
227
+ expect.objectContaining({ amount: 500, parent_id: 't1' }),
228
+ expect.objectContaining({ amount: 3002 }),
229
+ ]);
230
+ });
231
+
232
+ test('deleting all child split transactions works', () => {
233
+ const transactions = [
234
+ makeTransaction({ amount: 2001 }),
235
+ ...makeSplitTransaction(
236
+ { id: 't1', amount: 2500, error: splitError(500) },
237
+ [{ id: 't2', amount: 2000 }],
238
+ ),
239
+ makeTransaction({ amount: 3002 }),
240
+ ];
241
+ const { data } = deleteTransaction(transactions, 't2');
242
+
243
+ expect(data).toEqual([
244
+ expect.objectContaining({ amount: 2001 }),
245
+ // Must delete error if no children
246
+ expect.objectContaining({ amount: 2500, error: null }),
247
+ expect.objectContaining({ amount: 3002 }),
248
+ ]);
249
+ });
250
+
251
+ test('unsplitting last remaining child converts parent to regular transaction', () => {
252
+ const [parent, child] = makeSplitTransaction(
253
+ { id: 't1', amount: 2000, category: 'cat1' },
254
+ [{ id: 't2', amount: 0, category: 'cat2' }],
255
+ );
256
+
257
+ const transactions = [parent, child];
258
+
259
+ const result = makeAsNonChildTransactions([child], transactions);
260
+
261
+ expect(result.updated).toHaveLength(1);
262
+ expect(result.deleted).toHaveLength(1);
263
+
264
+ expect(result.updated[0]).toMatchObject({
265
+ id: 't1',
266
+ amount: 2000,
267
+ is_parent: false,
268
+ category: 'cat2',
269
+ });
270
+
271
+ expect(result.deleted[0]).toMatchObject({
272
+ id: 't2',
273
+ });
274
+ });
275
+ });
@@ -0,0 +1,433 @@
1
+ import { v4 as uuidv4 } from 'uuid';
2
+
3
+ import { logger } from '../platform/server/log';
4
+ import type { TransactionEntity } from '../types/models';
5
+
6
+ import { applyChanges, diffItems, last } from './util';
7
+
8
+ export function isTemporaryId(id: string) {
9
+ return id.indexOf('temp') !== -1;
10
+ }
11
+
12
+ export function isPreviewId(id: string) {
13
+ return id.indexOf('preview/') !== -1;
14
+ }
15
+
16
+ // The amount might be null when adding a new transaction
17
+ function num(n: number | null | undefined) {
18
+ return typeof n === 'number' ? n : 0;
19
+ }
20
+
21
+ function SplitTransactionError(total: number, parent: TransactionEntity) {
22
+ const difference = num(parent.amount) - total;
23
+
24
+ return {
25
+ type: 'SplitTransactionError' as const,
26
+ version: 1 as const,
27
+ difference,
28
+ };
29
+ }
30
+
31
+ type GenericTransactionEntity = TransactionEntity;
32
+
33
+ export function makeChild<T extends GenericTransactionEntity>(
34
+ parent: T,
35
+ data: object = {},
36
+ ) {
37
+ const prefix = parent.id === 'temp' ? 'temp' : '';
38
+
39
+ return {
40
+ amount: 0,
41
+ ...data,
42
+ category: 'category' in data ? data.category : parent.category,
43
+ payee: 'payee' in data ? data.payee : parent.payee,
44
+ id: 'id' in data ? data.id : prefix + uuidv4(),
45
+ account: parent.account,
46
+ date: parent.date,
47
+ cleared: parent.cleared != null ? parent.cleared : null,
48
+ reconciled: 'reconciled' in data ? data.reconciled : parent.reconciled,
49
+ starting_balance_flag:
50
+ parent.starting_balance_flag != null
51
+ ? parent.starting_balance_flag
52
+ : null,
53
+ is_child: true,
54
+ parent_id: parent.id,
55
+ error: null,
56
+ } as unknown as T;
57
+ }
58
+
59
+ function makeNonChild<T extends GenericTransactionEntity>(
60
+ parent: T,
61
+ data: object,
62
+ ) {
63
+ return {
64
+ amount: 0,
65
+ ...data,
66
+ cleared: parent.cleared != null ? parent.cleared : null,
67
+ reconciled: parent.reconciled != null ? parent.reconciled : null,
68
+ sort_order: parent.sort_order || null,
69
+ starting_balance_flag: null,
70
+ is_child: false,
71
+ parent_id: null,
72
+ } as unknown as T;
73
+ }
74
+
75
+ function makeTransactionWithChildCategory<T extends GenericTransactionEntity>(
76
+ parent: T,
77
+ data: Partial<TransactionEntity>,
78
+ ) {
79
+ return {
80
+ ...parent,
81
+ is_parent: false,
82
+ category: data.category || null,
83
+ } as unknown as T;
84
+ }
85
+
86
+ export function recalculateSplit(trans: TransactionEntity) {
87
+ // Calculate the new total of split transactions and make sure
88
+ // that it equals the parent amount
89
+ const total = (trans.subtransactions || []).reduce(
90
+ (acc, t) => acc + num(t.amount),
91
+ 0,
92
+ );
93
+
94
+ const { error: _error, ...rest } = trans;
95
+ return {
96
+ ...rest,
97
+ error:
98
+ total === num(trans.amount) ? null : SplitTransactionError(total, trans),
99
+ } satisfies TransactionEntity;
100
+ }
101
+
102
+ function findParentIndex(
103
+ transactions: readonly TransactionEntity[],
104
+ idx: number,
105
+ ) {
106
+ // This relies on transactions being sorted in a way where parents
107
+ // are always before children, which is enforced in the db layer.
108
+ // Walk backwards and find the last parent;
109
+ while (idx >= 0) {
110
+ const trans = transactions[idx];
111
+ if (trans.is_parent) {
112
+ return idx;
113
+ }
114
+ idx--;
115
+ }
116
+ return null;
117
+ }
118
+
119
+ function getSplit(
120
+ transactions: readonly TransactionEntity[],
121
+ parentIndex: number,
122
+ ) {
123
+ const split = [transactions[parentIndex]];
124
+ let curr = parentIndex + 1;
125
+ while (curr < transactions.length && transactions[curr].is_child) {
126
+ split.push(transactions[curr]);
127
+ curr++;
128
+ }
129
+ return split;
130
+ }
131
+
132
+ export function ungroupTransactions(transactions: TransactionEntity[]) {
133
+ return transactions.reduce<TransactionEntity[]>((list, parent) => {
134
+ const { subtransactions, ...trans } = parent;
135
+ const _subtransactions = subtransactions || [];
136
+
137
+ list.push(trans);
138
+
139
+ for (let i = 0; i < _subtransactions.length; i++) {
140
+ list.push(_subtransactions[i]);
141
+ }
142
+ return list;
143
+ }, []);
144
+ }
145
+
146
+ export function groupTransaction(
147
+ split: TransactionEntity[],
148
+ ): TransactionEntity {
149
+ return {
150
+ ...split[0],
151
+ subtransactions: split.slice(1),
152
+ } satisfies TransactionEntity;
153
+ }
154
+
155
+ export function ungroupTransaction(split: TransactionEntity | null) {
156
+ if (split == null) {
157
+ return [];
158
+ }
159
+ return ungroupTransactions([split]);
160
+ }
161
+
162
+ export function applyTransactionDiff(
163
+ groupedTrans: Parameters<typeof ungroupTransaction>[0],
164
+ diff: Parameters<typeof applyChanges>[0],
165
+ ) {
166
+ return groupTransaction(
167
+ applyChanges(
168
+ diff,
169
+ ungroupTransaction(groupedTrans) || [],
170
+ ) as TransactionEntity[],
171
+ );
172
+ }
173
+
174
+ function replaceTransactions(
175
+ transactions: readonly TransactionEntity[],
176
+ id: string,
177
+ func: (transaction: TransactionEntity) => TransactionEntity | null,
178
+ ): {
179
+ data: TransactionEntity[];
180
+ newTransaction: TransactionEntity | null;
181
+ diff: ReturnType<typeof diffItems<TransactionEntity>>;
182
+ } {
183
+ const idx = transactions.findIndex(t => t.id === id);
184
+ const trans = transactions[idx];
185
+ const transactionsCopy = [...transactions];
186
+
187
+ if (idx === -1) {
188
+ throw new Error('Tried to edit unknown transaction id: ' + id);
189
+ }
190
+
191
+ if (trans.is_parent || trans.is_child) {
192
+ const parentIndex = findParentIndex(transactions, idx);
193
+ if (parentIndex == null) {
194
+ logger.log('Cannot find parent index');
195
+ return {
196
+ data: [],
197
+ diff: { added: [], deleted: [], updated: [] },
198
+ newTransaction: null,
199
+ };
200
+ }
201
+
202
+ const split = getSplit(transactions, parentIndex);
203
+ let grouped = func(groupTransaction(split));
204
+ const newSplit = ungroupTransaction(grouped);
205
+
206
+ let diff: ReturnType<typeof diffItems<TransactionEntity>>;
207
+ if (newSplit == null) {
208
+ // If everything was deleted, just delete the parent which will
209
+ // delete everything
210
+ diff = { added: [], deleted: [{ id: split[0].id }], updated: [] };
211
+ grouped = { ...split[0], _deleted: true };
212
+ transactionsCopy.splice(parentIndex, split.length);
213
+ } else {
214
+ diff = diffItems<TransactionEntity>(split, newSplit);
215
+ transactionsCopy.splice(parentIndex, split.length, ...newSplit);
216
+ }
217
+
218
+ return { data: transactionsCopy, newTransaction: grouped, diff };
219
+ } else {
220
+ const grouped = func(trans);
221
+ const newTrans = ungroupTransaction(grouped) || [];
222
+ if (grouped) {
223
+ grouped.subtransactions = grouped.subtransactions || [];
224
+ }
225
+ transactionsCopy.splice(idx, 1, ...newTrans);
226
+
227
+ return {
228
+ data: transactionsCopy,
229
+ newTransaction: grouped || {
230
+ ...trans,
231
+ _deleted: true,
232
+ },
233
+ diff: diffItems<TransactionEntity>([trans], newTrans),
234
+ };
235
+ }
236
+ }
237
+
238
+ export function addSplitTransaction(
239
+ transactions: readonly TransactionEntity[],
240
+ id: string,
241
+ ) {
242
+ return replaceTransactions(transactions, id, trans => {
243
+ if (!trans.is_parent) {
244
+ return trans;
245
+ }
246
+ const prevSub = last(trans.subtransactions || []);
247
+ trans.subtransactions?.push(
248
+ makeChild(trans, {
249
+ amount: 0,
250
+ sort_order: num(prevSub && prevSub.sort_order) - 1,
251
+ }),
252
+ );
253
+ return trans;
254
+ });
255
+ }
256
+
257
+ export function updateTransaction(
258
+ transactions: readonly TransactionEntity[],
259
+ transaction: TransactionEntity,
260
+ ) {
261
+ return replaceTransactions(transactions, transaction.id, trans => {
262
+ if (trans.is_parent) {
263
+ const parent = trans.id === transaction.id ? transaction : trans;
264
+ const originalSubtransactions =
265
+ parent.subtransactions ?? trans.subtransactions;
266
+ const sub = originalSubtransactions?.map(t => {
267
+ // Make sure to update the children to reflect the updated
268
+ // properties (if the parent updated)
269
+
270
+ let child = t;
271
+ if (trans.id === transaction.id) {
272
+ const { payee: childPayee, ...rest } = t;
273
+ const newPayee =
274
+ childPayee === trans.payee ? transaction.payee : childPayee;
275
+ child = {
276
+ ...rest,
277
+ ...(newPayee != null ? { payee: newPayee } : {}),
278
+ };
279
+ } else if (t.id === transaction.id) {
280
+ child = transaction;
281
+ }
282
+
283
+ return makeChild(parent, child);
284
+ });
285
+
286
+ return recalculateSplit({
287
+ ...parent,
288
+ ...(sub && { subtransactions: sub }),
289
+ });
290
+ } else {
291
+ return transaction;
292
+ }
293
+ });
294
+ }
295
+
296
+ export function deleteTransaction(
297
+ transactions: TransactionEntity[],
298
+ id: string,
299
+ ) {
300
+ return replaceTransactions(transactions, id, trans => {
301
+ if (trans.is_parent) {
302
+ if (trans.id === id) {
303
+ return null;
304
+ } else if (trans.subtransactions?.length === 1) {
305
+ const { subtransactions: _subtransactions, ...rest } = trans;
306
+ return {
307
+ ...rest,
308
+ is_parent: false,
309
+ error: null,
310
+ } satisfies TransactionEntity;
311
+ } else {
312
+ const sub = trans.subtransactions?.filter(t => t.id !== id);
313
+ return recalculateSplit({
314
+ ...trans,
315
+ ...(sub && { subtransactions: sub }),
316
+ });
317
+ }
318
+ } else {
319
+ return null;
320
+ }
321
+ });
322
+ }
323
+
324
+ export function splitTransaction(
325
+ transactions: readonly TransactionEntity[],
326
+ id: string,
327
+ createSubtransactions?: (
328
+ parentTransaction: TransactionEntity,
329
+ ) => TransactionEntity[],
330
+ ) {
331
+ return replaceTransactions(transactions, id, trans => {
332
+ if (trans.is_parent || trans.is_child) {
333
+ return trans;
334
+ }
335
+
336
+ const subtransactions = createSubtransactions?.(trans) || [
337
+ makeChild(trans),
338
+ ];
339
+
340
+ const { error: _error, ...rest } = trans;
341
+
342
+ return {
343
+ ...rest,
344
+ is_parent: true,
345
+ error: num(trans.amount) === 0 ? null : SplitTransactionError(0, trans),
346
+ subtransactions: subtransactions.map(t => ({
347
+ ...t,
348
+ sort_order: t.sort_order || -1,
349
+ })),
350
+ } satisfies TransactionEntity;
351
+ });
352
+ }
353
+
354
+ export function realizeTempTransactions(
355
+ transactions: TransactionEntity[],
356
+ ): TransactionEntity[] {
357
+ const parent = {
358
+ ...transactions.find(t => !t.is_child),
359
+ id: uuidv4(),
360
+ sort_order: Date.now(),
361
+ } as TransactionEntity;
362
+ const children = transactions.filter(t => t.is_child);
363
+ return [
364
+ parent,
365
+ ...children.map(
366
+ child =>
367
+ ({
368
+ ...child,
369
+ id: uuidv4(),
370
+ parent_id: parent.id,
371
+ }) satisfies TransactionEntity,
372
+ ),
373
+ ];
374
+ }
375
+
376
+ export function makeAsNonChildTransactions(
377
+ childTransactionsToUpdate: TransactionEntity[],
378
+ transactions: TransactionEntity[],
379
+ ) {
380
+ const [parentTransaction, ...childTransactions] = transactions;
381
+ const newNonChildTransactions = childTransactionsToUpdate.map(t =>
382
+ makeNonChild(parentTransaction, t),
383
+ );
384
+
385
+ const remainingChildTransactions = childTransactions.filter(
386
+ t =>
387
+ !newNonChildTransactions.some(updatedTrans => updatedTrans.id === t.id),
388
+ );
389
+ if (
390
+ childTransactions.length === 1 &&
391
+ childTransactionsToUpdate.length === 1 &&
392
+ childTransactionsToUpdate[0].id === childTransactions[0].id
393
+ ) {
394
+ return {
395
+ updated: [
396
+ makeTransactionWithChildCategory(
397
+ parentTransaction,
398
+ childTransactionsToUpdate[0],
399
+ ),
400
+ ],
401
+ deleted: [childTransactionsToUpdate[0]],
402
+ };
403
+ }
404
+
405
+ const nonChildTransactionsToUpdate =
406
+ remainingChildTransactions.length === 1
407
+ ? [
408
+ ...newNonChildTransactions,
409
+ makeNonChild(parentTransaction, remainingChildTransactions[0]),
410
+ ]
411
+ : newNonChildTransactions;
412
+
413
+ const deleteParentTransaction = remainingChildTransactions.length <= 1;
414
+
415
+ const updatedParentTransaction = {
416
+ ...parentTransaction,
417
+ ...(!deleteParentTransaction
418
+ ? {
419
+ amount: remainingChildTransactions
420
+ .map(t => t.amount)
421
+ .reduce((total, amount) => total + amount, 0),
422
+ }
423
+ : {}),
424
+ };
425
+
426
+ return {
427
+ updated: [
428
+ ...(!deleteParentTransaction ? [updatedParentTransaction] : []),
429
+ ...nonChildTransactionsToUpdate,
430
+ ],
431
+ deleted: [...(deleteParentTransaction ? [updatedParentTransaction] : [])],
432
+ };
433
+ }