@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,373 @@
1
+ import isMatch from 'lodash/isMatch';
2
+ import { v4 as uuidv4 } from 'uuid';
3
+
4
+ import { captureException } from '../../platform/exceptions';
5
+ import * as fs from '../../platform/server/fs';
6
+ import { DEFAULT_DASHBOARD_STATE } from '../../shared/dashboard';
7
+ import { q } from '../../shared/query';
8
+ import type {
9
+ DashboardWidgetEntity,
10
+ ExportImportCustomReportWidget,
11
+ ExportImportDashboard,
12
+ ExportImportDashboardWidget,
13
+ } from '../../types/models';
14
+ import type { EverythingButIdOptional, WithOptional } from '../../types/util';
15
+ import { createApp } from '../app';
16
+ import { aqlQuery } from '../aql';
17
+ import * as db from '../db';
18
+ import { ValidationError } from '../errors';
19
+ import { requiredFields } from '../models';
20
+ import { mutator } from '../mutators';
21
+ import { reportModel } from '../reports/app';
22
+ import { batchMessages } from '../sync';
23
+ import { undoable } from '../undo';
24
+
25
+ function isExportedCustomReportWidget(
26
+ widget: ExportImportDashboardWidget,
27
+ ): widget is ExportImportCustomReportWidget {
28
+ return widget.type === 'custom-report';
29
+ }
30
+
31
+ function isWidgetType(type: string): type is DashboardWidgetEntity['type'] {
32
+ return [
33
+ 'net-worth-card',
34
+ 'cash-flow-card',
35
+ 'spending-card',
36
+ 'crossover-card',
37
+ 'budget-analysis-card',
38
+ 'markdown-card',
39
+ 'summary-card',
40
+ 'calendar-card',
41
+ 'formula-card',
42
+ 'custom-report',
43
+ ].includes(type);
44
+ }
45
+
46
+ const exportModel = {
47
+ validate(dashboard: ExportImportDashboard) {
48
+ requiredFields('Dashboard', dashboard, ['version', 'widgets']);
49
+
50
+ if (!Array.isArray(dashboard.widgets)) {
51
+ throw new ValidationError(
52
+ 'Invalid dashboard.widgets data type: it must be an array of widgets.',
53
+ );
54
+ }
55
+
56
+ dashboard.widgets.forEach((widget, idx) => {
57
+ requiredFields(`Dashboard widget #${idx}`, widget, [
58
+ 'type',
59
+ 'x',
60
+ 'y',
61
+ 'width',
62
+ 'height',
63
+ ...(isExportedCustomReportWidget(widget) ? ['meta' as const] : []),
64
+ ]);
65
+
66
+ if (!Number.isInteger(widget.x)) {
67
+ throw new ValidationError(
68
+ `Invalid widget.${idx}.x data-type for value ${widget.x}.`,
69
+ );
70
+ }
71
+
72
+ if (!Number.isInteger(widget.y)) {
73
+ throw new ValidationError(
74
+ `Invalid widget.${idx}.y data-type for value ${widget.y}.`,
75
+ );
76
+ }
77
+
78
+ if (!Number.isInteger(widget.width)) {
79
+ throw new ValidationError(
80
+ `Invalid widget.${idx}.width data-type for value ${widget.width}.`,
81
+ );
82
+ }
83
+
84
+ if (!Number.isInteger(widget.height)) {
85
+ throw new ValidationError(
86
+ `Invalid widget.${idx}.height data-type for value ${widget.height}.`,
87
+ );
88
+ }
89
+
90
+ if (!isWidgetType(widget.type)) {
91
+ throw new ValidationError(
92
+ `Invalid widget.${idx}.type value ${String(widget.type)}.`,
93
+ );
94
+ }
95
+
96
+ if (isExportedCustomReportWidget(widget)) {
97
+ reportModel.validate(widget.meta);
98
+ }
99
+ });
100
+ },
101
+ };
102
+
103
+ async function createDashboardPage({ name }: { name: string }) {
104
+ const id = uuidv4();
105
+ await db.insertWithSchema('dashboard_pages', { id, name });
106
+
107
+ return id;
108
+ }
109
+
110
+ async function deleteDashboardPage(id: string) {
111
+ const res = await db.first<{ c: number }>(
112
+ 'SELECT count(*) as c FROM dashboard_pages WHERE tombstone = 0',
113
+ );
114
+
115
+ if ((res?.c ?? 0) <= 1) {
116
+ throw new Error('Cannot delete the last dashboard page');
117
+ }
118
+
119
+ const deleting_widgets = await db.all<Pick<db.DbDashboard, 'id'>>(
120
+ 'SELECT id FROM dashboard WHERE dashboard_page_id = ? AND tombstone = 0',
121
+ [id],
122
+ );
123
+
124
+ await batchMessages(async () => {
125
+ await db.delete_('dashboard_pages', id);
126
+ // Tombstone all widgets for this dashboard
127
+ await Promise.all(
128
+ deleting_widgets.map(({ id }) => db.delete_('dashboard', id)),
129
+ );
130
+ });
131
+ }
132
+
133
+ async function renameDashboardPage({ id, name }: { id: string; name: string }) {
134
+ await db.updateWithSchema('dashboard_pages', { id, name });
135
+ }
136
+
137
+ async function updateDashboard(
138
+ widgets: EverythingButIdOptional<Omit<DashboardWidgetEntity, 'tombstone'>>[],
139
+ ) {
140
+ const { data: dbWidgets } = await aqlQuery(
141
+ q('dashboard')
142
+ .filter({ id: { $oneof: widgets.map(({ id }) => id) } })
143
+ .select('*'),
144
+ );
145
+ const dbWidgetMap = new Map(
146
+ (dbWidgets as DashboardWidgetEntity[]).map(widget => [widget.id, widget]),
147
+ );
148
+
149
+ await Promise.all(
150
+ widgets
151
+ // Perform an update query only if the widget actually has changes
152
+ .filter(widget => !isMatch(dbWidgetMap.get(widget.id) ?? {}, widget))
153
+ .map(widget => db.update('dashboard', widget)),
154
+ );
155
+ }
156
+
157
+ async function updateDashboardWidget(
158
+ widget: EverythingButIdOptional<Omit<DashboardWidgetEntity, 'tombstone'>>,
159
+ ) {
160
+ await db.updateWithSchema('dashboard', widget);
161
+ }
162
+
163
+ async function resetDashboard(id: string) {
164
+ await batchMessages(async () => {
165
+ const widgets = await db.selectWithSchema(
166
+ 'dashboard',
167
+ 'SELECT id FROM dashboard WHERE dashboard_page_id = ? AND tombstone = 0',
168
+ [id],
169
+ );
170
+
171
+ await Promise.all([
172
+ // Delete all widgets for this dashboard
173
+ ...widgets.map(({ id }) => db.delete_('dashboard', id)),
174
+
175
+ // Insert the default state
176
+ ...DEFAULT_DASHBOARD_STATE.map(widget =>
177
+ db.insertWithSchema('dashboard', { ...widget, dashboard_page_id: id }),
178
+ ),
179
+ ]);
180
+ });
181
+ }
182
+
183
+ async function addDashboardWidget(
184
+ widget: WithOptional<
185
+ Omit<DashboardWidgetEntity, 'id' | 'tombstone'>,
186
+ 'x' | 'y'
187
+ >,
188
+ ) {
189
+ // If no x & y was provided - calculate it dynamically
190
+ // The new widget should be the very last one in the list of all widgets
191
+ if (!('x' in widget) && !('y' in widget)) {
192
+ const data = await db.first<
193
+ Pick<db.DbDashboard, 'x' | 'y' | 'width' | 'height'>
194
+ >(
195
+ 'SELECT x, y, width, height FROM dashboard WHERE dashboard_page_id = ? AND tombstone = 0 ORDER BY y DESC, x DESC',
196
+ [widget.dashboard_page_id],
197
+ );
198
+
199
+ if (!data) {
200
+ widget.x = 0;
201
+ widget.y = 0;
202
+ } else {
203
+ const xBoundaryCheck = data.x + data.width + widget.width;
204
+ widget.x = xBoundaryCheck > 12 ? 0 : data.x + data.width;
205
+ widget.y = data.y + (xBoundaryCheck > 12 ? data.height : 0);
206
+ }
207
+ }
208
+
209
+ const { dashboard_page_id, ...widgetWithoutDashboardPageId } = widget;
210
+
211
+ await db.insertWithSchema('dashboard', {
212
+ ...widgetWithoutDashboardPageId,
213
+ dashboard_page_id,
214
+ });
215
+ }
216
+
217
+ async function removeDashboardWidget(widgetId: string) {
218
+ await db.delete_('dashboard', widgetId);
219
+ }
220
+
221
+ async function copyDashboardWidget({
222
+ id,
223
+ targetDashboardPageId,
224
+ }: {
225
+ id: string;
226
+ targetDashboardPageId: string;
227
+ }) {
228
+ // Get the widget to copy
229
+ const widget = await db.first<db.DbDashboard>(
230
+ 'SELECT * FROM dashboard WHERE id = ? AND tombstone = 0',
231
+ [id],
232
+ );
233
+
234
+ if (!widget) {
235
+ throw new Error(`Widget not found: ${id}`);
236
+ }
237
+
238
+ await batchMessages(async () => {
239
+ // Insert the widget to target dashboard
240
+ if (isWidgetType(widget.type)) {
241
+ const newWidget = {
242
+ type: widget.type,
243
+ width: widget.width,
244
+ height: widget.height,
245
+ meta: widget.meta ? JSON.parse(widget.meta) : {},
246
+ dashboard_page_id: targetDashboardPageId,
247
+ };
248
+ await addDashboardWidget(newWidget);
249
+ } else {
250
+ throw new Error(`Unsupported widget type: ${widget.type}`);
251
+ }
252
+ });
253
+ }
254
+
255
+ async function importDashboard({
256
+ filePath,
257
+ dashboardPageId,
258
+ }: {
259
+ filePath: string;
260
+ dashboardPageId: string;
261
+ }) {
262
+ try {
263
+ if (!(await fs.exists(filePath))) {
264
+ throw new Error(`File not found at the provided path: ${filePath}`);
265
+ }
266
+
267
+ const content = await fs.readFile(filePath);
268
+ const parsedContent: ExportImportDashboard = JSON.parse(content);
269
+
270
+ exportModel.validate(parsedContent);
271
+
272
+ const customReportIds = await db.all<Pick<db.DbCustomReport, 'id'>>(
273
+ 'SELECT id from custom_reports',
274
+ );
275
+ const customReportIdSet = new Set(customReportIds.map(({ id }) => id));
276
+
277
+ const existingWidgets = await db.selectWithSchema(
278
+ 'dashboard',
279
+ 'SELECT id FROM dashboard WHERE dashboard_page_id = ? AND tombstone = 0',
280
+ [dashboardPageId],
281
+ );
282
+
283
+ await batchMessages(async () => {
284
+ await Promise.all([
285
+ // Delete all widgets
286
+ ...existingWidgets.map(({ id }) => db.delete_('dashboard', id)),
287
+
288
+ // Insert new widgets
289
+ ...parsedContent.widgets.map(widget =>
290
+ db.insertWithSchema('dashboard', {
291
+ type: widget.type,
292
+ width: widget.width,
293
+ height: widget.height,
294
+ x: widget.x,
295
+ y: widget.y,
296
+ dashboard_page_id: dashboardPageId,
297
+ meta: isExportedCustomReportWidget(widget)
298
+ ? { id: widget.meta.id }
299
+ : widget.meta,
300
+ }),
301
+ ),
302
+
303
+ // Insert new custom reports
304
+ ...parsedContent.widgets
305
+ .filter(isExportedCustomReportWidget)
306
+ .filter(({ meta }) => !customReportIdSet.has(meta.id))
307
+ .map(({ meta }) =>
308
+ db.insertWithSchema('custom_reports', reportModel.fromJS(meta)),
309
+ ),
310
+
311
+ // Update existing reports
312
+ ...parsedContent.widgets
313
+ .filter(isExportedCustomReportWidget)
314
+ .filter(({ meta }) => customReportIdSet.has(meta.id))
315
+ .map(({ meta }) =>
316
+ db.updateWithSchema('custom_reports', {
317
+ // Replace `undefined` values with `null`
318
+ // (null clears the value in DB; undefined breaks the operation)
319
+ ...Object.fromEntries(
320
+ Object.entries(reportModel.fromJS(meta)).map(([key, value]) => [
321
+ key,
322
+ value ?? null,
323
+ ]),
324
+ ),
325
+ tombstone: false,
326
+ }),
327
+ ),
328
+ ]);
329
+ });
330
+
331
+ return { status: 'ok' as const };
332
+ } catch (err: unknown) {
333
+ if (err instanceof Error) {
334
+ err.message = 'Error importing file: ' + err.message;
335
+ captureException(err);
336
+ }
337
+ if (err instanceof SyntaxError) {
338
+ throw new Error('Invalid JSON file.', { cause: 'json-parse-error' });
339
+ }
340
+ if (err instanceof ValidationError) {
341
+ throw new Error(err.message, { cause: 'validation-error' });
342
+ }
343
+ throw new Error('Internal error occurred during import.', {
344
+ cause: 'internal-error',
345
+ });
346
+ }
347
+ }
348
+
349
+ export type DashboardHandlers = {
350
+ 'dashboard-create': typeof createDashboardPage;
351
+ 'dashboard-delete': typeof deleteDashboardPage;
352
+ 'dashboard-rename': typeof renameDashboardPage;
353
+ 'dashboard-update': typeof updateDashboard;
354
+ 'dashboard-update-widget': typeof updateDashboardWidget;
355
+ 'dashboard-reset': typeof resetDashboard;
356
+ 'dashboard-add-widget': typeof addDashboardWidget;
357
+ 'dashboard-remove-widget': typeof removeDashboardWidget;
358
+ 'dashboard-copy-widget': typeof copyDashboardWidget;
359
+ 'dashboard-import': typeof importDashboard;
360
+ };
361
+
362
+ export const app = createApp<DashboardHandlers>();
363
+
364
+ app.method('dashboard-create', mutator(undoable(createDashboardPage)));
365
+ app.method('dashboard-delete', mutator(undoable(deleteDashboardPage)));
366
+ app.method('dashboard-rename', mutator(undoable(renameDashboardPage)));
367
+ app.method('dashboard-update', mutator(undoable(updateDashboard)));
368
+ app.method('dashboard-update-widget', mutator(undoable(updateDashboardWidget)));
369
+ app.method('dashboard-reset', mutator(undoable(resetDashboard)));
370
+ app.method('dashboard-add-widget', mutator(undoable(addDashboardWidget)));
371
+ app.method('dashboard-remove-widget', mutator(undoable(removeDashboardWidget)));
372
+ app.method('dashboard-copy-widget', mutator(undoable(copyDashboardWidget)));
373
+ app.method('dashboard-import', mutator(undoable(importDashboard)));
@@ -0,0 +1,271 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`Database > transactions are sorted by date 1`] = `
4
+ [
5
+ {
6
+ "amount": -23,
7
+ "date": "2018-01-05",
8
+ "id": "id2",
9
+ "is_child": false,
10
+ "is_parent": false,
11
+ "payee": null,
12
+ "sort_order": 123456789,
13
+ "starting_balance_flag": false,
14
+ },
15
+ {
16
+ "amount": 12,
17
+ "date": "2018-01-04",
18
+ "id": "id4",
19
+ "is_child": false,
20
+ "is_parent": false,
21
+ "payee": null,
22
+ "sort_order": 123456789,
23
+ "starting_balance_flag": false,
24
+ },
25
+ {
26
+ "amount": -5,
27
+ "date": "2018-01-03",
28
+ "id": "id6",
29
+ "is_child": false,
30
+ "is_parent": false,
31
+ "payee": null,
32
+ "sort_order": 123456789,
33
+ "starting_balance_flag": false,
34
+ },
35
+ {
36
+ "amount": -24,
37
+ "date": "2018-01-02",
38
+ "id": "id3",
39
+ "is_child": false,
40
+ "is_parent": false,
41
+ "payee": null,
42
+ "sort_order": 123456789,
43
+ "starting_balance_flag": false,
44
+ },
45
+ {
46
+ "amount": 2,
47
+ "date": "2018-01-01",
48
+ "id": "id5",
49
+ "is_child": false,
50
+ "is_parent": false,
51
+ "payee": null,
52
+ "sort_order": 123456789,
53
+ "starting_balance_flag": false,
54
+ },
55
+ ]
56
+ `;
57
+
58
+ exports[`Database > transactions are sorted by id as a last resort 1`] = `
59
+ [
60
+ {
61
+ "amount": -23,
62
+ "date": "2018-01-05",
63
+ "id": "id2",
64
+ "is_child": false,
65
+ "is_parent": false,
66
+ "payee": null,
67
+ "sort_order": 5,
68
+ "starting_balance_flag": false,
69
+ },
70
+ {
71
+ "amount": 12,
72
+ "date": "2018-01-03",
73
+ "id": "foo1",
74
+ "is_child": false,
75
+ "is_parent": false,
76
+ "payee": null,
77
+ "sort_order": 4,
78
+ "starting_balance_flag": false,
79
+ },
80
+ {
81
+ "amount": 2,
82
+ "date": "2018-01-03",
83
+ "id": "foo2",
84
+ "is_child": false,
85
+ "is_parent": false,
86
+ "payee": null,
87
+ "sort_order": 4,
88
+ "starting_balance_flag": false,
89
+ },
90
+ {
91
+ "amount": -24,
92
+ "date": "2018-01-03",
93
+ "id": "foo3",
94
+ "is_child": false,
95
+ "is_parent": false,
96
+ "payee": null,
97
+ "sort_order": 4,
98
+ "starting_balance_flag": false,
99
+ },
100
+ ]
101
+ `;
102
+
103
+ exports[`Database > transactions are sorted by sort order 1`] = `
104
+ [
105
+ {
106
+ "amount": -23,
107
+ "date": "2018-01-05",
108
+ "id": "id2",
109
+ "is_child": false,
110
+ "is_parent": false,
111
+ "payee": null,
112
+ "sort_order": 5,
113
+ "starting_balance_flag": false,
114
+ },
115
+ {
116
+ "amount": -24,
117
+ "date": "2018-01-03",
118
+ "id": "id3",
119
+ "is_child": false,
120
+ "is_parent": false,
121
+ "payee": null,
122
+ "sort_order": 8,
123
+ "starting_balance_flag": false,
124
+ },
125
+ {
126
+ "amount": 2,
127
+ "date": "2018-01-03",
128
+ "id": "id5",
129
+ "is_child": false,
130
+ "is_parent": false,
131
+ "payee": null,
132
+ "sort_order": 4,
133
+ "starting_balance_flag": false,
134
+ },
135
+ {
136
+ "amount": 12,
137
+ "date": "2018-01-03",
138
+ "id": "id4",
139
+ "is_child": false,
140
+ "is_parent": false,
141
+ "payee": null,
142
+ "sort_order": 2,
143
+ "starting_balance_flag": false,
144
+ },
145
+ {
146
+ "amount": -5,
147
+ "date": "2018-01-03",
148
+ "id": "id6",
149
+ "is_child": false,
150
+ "is_parent": false,
151
+ "payee": null,
152
+ "sort_order": 1,
153
+ "starting_balance_flag": false,
154
+ },
155
+ ]
156
+ `;
157
+
158
+ exports[`Database > transactions are sorted by starting balance flag 1`] = `
159
+ [
160
+ {
161
+ "amount": -23,
162
+ "date": "2018-01-05",
163
+ "id": "id2",
164
+ "is_child": false,
165
+ "is_parent": false,
166
+ "payee": null,
167
+ "sort_order": 123456789,
168
+ "starting_balance_flag": false,
169
+ },
170
+ {
171
+ "amount": -25,
172
+ "date": "2018-01-03",
173
+ "id": "id4",
174
+ "is_child": false,
175
+ "is_parent": false,
176
+ "payee": null,
177
+ "sort_order": 123456789,
178
+ "starting_balance_flag": false,
179
+ },
180
+ {
181
+ "amount": -5,
182
+ "date": "2018-01-03",
183
+ "id": "id5",
184
+ "is_child": false,
185
+ "is_parent": false,
186
+ "payee": null,
187
+ "sort_order": 123456789,
188
+ "starting_balance_flag": false,
189
+ },
190
+ {
191
+ "amount": 12,
192
+ "date": "2018-01-03",
193
+ "id": "id3",
194
+ "is_child": false,
195
+ "is_parent": false,
196
+ "payee": null,
197
+ "sort_order": 123456789,
198
+ "starting_balance_flag": true,
199
+ },
200
+ ]
201
+ `;
202
+
203
+ exports[`Database > transactions don't show orphaned child transactions 1`] = `
204
+ [
205
+ {
206
+ "amount": -23,
207
+ "date": "2018-01-05",
208
+ "id": "id2",
209
+ "is_child": false,
210
+ "is_parent": false,
211
+ "payee": null,
212
+ "sort_order": 5,
213
+ "starting_balance_flag": false,
214
+ },
215
+ ]
216
+ `;
217
+
218
+ exports[`Database > transactions get child transactions in the right order 1`] = `
219
+ [
220
+ {
221
+ "amount": -23,
222
+ "date": "2018-01-05",
223
+ "id": "id2",
224
+ "is_child": false,
225
+ "is_parent": false,
226
+ "payee": null,
227
+ "sort_order": 5,
228
+ "starting_balance_flag": false,
229
+ },
230
+ {
231
+ "amount": -24,
232
+ "date": "2018-01-03",
233
+ "id": "foo",
234
+ "is_child": false,
235
+ "is_parent": true,
236
+ "payee": null,
237
+ "sort_order": 8,
238
+ "starting_balance_flag": false,
239
+ },
240
+ {
241
+ "amount": 12,
242
+ "date": "2018-01-03",
243
+ "id": "child1",
244
+ "is_child": true,
245
+ "is_parent": false,
246
+ "payee": null,
247
+ "sort_order": 7.99,
248
+ "starting_balance_flag": false,
249
+ },
250
+ {
251
+ "amount": 2,
252
+ "date": "2018-01-03",
253
+ "id": "child2",
254
+ "is_child": true,
255
+ "is_parent": false,
256
+ "payee": null,
257
+ "sort_order": 7.98,
258
+ "starting_balance_flag": false,
259
+ },
260
+ {
261
+ "amount": -5,
262
+ "date": "2018-01-03",
263
+ "id": "child3",
264
+ "is_child": true,
265
+ "is_parent": false,
266
+ "payee": null,
267
+ "sort_order": 7.97,
268
+ "starting_balance_flag": false,
269
+ },
270
+ ]
271
+ `;