38 lines
982 B
TypeScript
38 lines
982 B
TypeScript
|
import { Expense } from '@/app/lib/definitions';
|
||
|
import { getCsrfToken } from '@/app/lib/utils';
|
||
|
|
||
|
export function loadExpenses(onLoad?: (expenses: Expense[]) => void) {
|
||
|
fetch("/api/expenses")
|
||
|
.then((response) => response.json())
|
||
|
.then((data) => {
|
||
|
onLoad && onLoad(data.map((record: any) => {
|
||
|
return ({
|
||
|
id: record.id,
|
||
|
name: record.name,
|
||
|
amount: record.amount,
|
||
|
pricingType: record.pricing_type
|
||
|
});
|
||
|
}));
|
||
|
}, (error) => {
|
||
|
return [];
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function updateExpense(expense: Expense) {
|
||
|
fetch(`/api/expenses/${expense.id}`,
|
||
|
{
|
||
|
method: 'PUT',
|
||
|
body: JSON.stringify({
|
||
|
expense: {
|
||
|
name: expense.name,
|
||
|
amount: expense.amount,
|
||
|
pricing_type: expense.pricingType,
|
||
|
}
|
||
|
}),
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
'X-CSRF-TOKEN': getCsrfToken(),
|
||
|
}
|
||
|
})
|
||
|
.catch((error) => console.error(error));
|
||
|
}
|