diff options
| author | ivar <i@oiee.no> | 2025-12-27 11:25:47 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-12-27 11:25:47 +0100 |
| commit | 5a5717699b8b2d60b7d92c2087ed2cc22667e1cc (patch) | |
| tree | b3d2a5029af79a91a71e8464b5d5981187fe23cb /app/src/routes/+page.svelte | |
| parent | abf37599c877a8cc83e5a24c775c3999a9879abf (diff) | |
| download | sparebank1-actualbudget-5a5717699b8b2d60b7d92c2087ed2cc22667e1cc.tar.xz sparebank1-actualbudget-5a5717699b8b2d60b7d92c2087ed2cc22667e1cc.zip | |
Almost there
Diffstat (limited to 'app/src/routes/+page.svelte')
| -rw-r--r-- | app/src/routes/+page.svelte | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app/src/routes/+page.svelte b/app/src/routes/+page.svelte index 6f257f6..ee4148b 100644 --- a/app/src/routes/+page.svelte +++ b/app/src/routes/+page.svelte @@ -1,9 +1,7 @@ <script lang="ts"> import Button from "$lib/ui/button.svelte"; - import { clear_auth_session, init_auth_session } from "./methods.remote"; + import { clear_auth_session, init_auth_session, do_import } from "./methods.remote"; import type { PageProps } from "./$types"; - import { Temporal } from "temporal-polyfill"; - import { instantAsHtmlInputValueString } from "$lib/helpers"; import type { ImportForm } from "$lib/shared"; let { data }: PageProps = $props(); @@ -14,7 +12,12 @@ dryRun: true, }); - async function run() {} + async function run() { + if (!form.mappings.length) { + return; + } + await do_import(form); + } async function authorize() { navigating = true; @@ -34,8 +37,6 @@ mappings.push({ sb1Id, actualId }); form.mappings = mappings; } - - $inspect(form); </script> <main> |
