Update Card interface to get and send new fields and add select for currency to cards

This commit is contained in:
qowevisa 2024-11-20 21:01:14 +02:00
parent a55c7fb139
commit 01ab0e223f
2 changed files with 36 additions and 1 deletions

View File

@ -18,6 +18,8 @@ export interface Card {
have_credit_line: boolean; have_credit_line: boolean;
id: number; id: number;
name: string; name: string;
last_digits: string;
currency_id: number;
} }
export interface Category { export interface Category {

View File

@ -1,9 +1,10 @@
<script lang="ts"> <script lang="ts">
import { onMount } from "svelte"; import { onMount } from "svelte";
import { type Card } from "$lib/entities"; import { type Card, type Currency } from "$lib/entities";
import { NumberToFPA } from "$lib/util/fpa"; import { NumberToFPA } from "$lib/util/fpa";
let cards: Card[] = $state([]); let cards: Card[] = $state([]);
let currencies: Currency[] = $state([]);
let error: string | null = $state(null); let error: string | null = $state(null);
let editingCard: Card | null = $state(null); let editingCard: Card | null = $state(null);
let newCard: Partial<Card> = $state({ let newCard: Partial<Card> = $state({
@ -16,6 +17,7 @@
// Fetch all cards on page load // Fetch all cards on page load
onMount(async () => { onMount(async () => {
await fetchCards(); await fetchCards();
await fetchCurrencies();
}); });
async function fetchCards() { async function fetchCards() {
@ -27,6 +29,15 @@
cards = await result.json(); cards = await result.json();
} }
} }
async function fetchCurrencies() {
const result = await fetch("/api/currency/all");
if (!result.ok) {
const obj = await result.json();
error = obj.message;
} else {
currencies = await result.json();
}
}
async function saveCard() { async function saveCard() {
const endpoint = editingCard ? `/api/card/update` : "/api/card/create"; const endpoint = editingCard ? `/api/card/update` : "/api/card/create";
@ -134,6 +145,28 @@
class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md focus:ring focus:ring-indigo-200 focus:border-indigo-500" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md focus:ring focus:ring-indigo-200 focus:border-indigo-500"
/> />
</label> </label>
<label class="block">
<span class="text-gray-700">Currency:</span>
<select
bind:value={currentCard.currency_id}
class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md focus:ring focus:ring-indigo-200 focus:border-indigo-500"
>
{#each currencies as currency}
<option value={currency.id}
>{`${currency.symbol} (${currency.iso_name})`}</option
>
{/each}
</select>
</label>
<label class="block">
<span class="text-gray-700">Last 4 digits:</span>
<input
type="text"
bind:value={currentCard.last_digits}
required
class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md focus:ring focus:ring-indigo-200 focus:border-indigo-500"
/>
</label>
<label class="flex items-center"> <label class="flex items-center">
<input <input
type="checkbox" type="checkbox"