feat(receipt-import): refactor product creation and category update to use server actions
This commit is contained in:
@@ -195,26 +195,15 @@ export default function ReceiptImportClient({ isAdmin }: { isAdmin: boolean }) {
|
|||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
console.log('handleCreateProduct: isAdmin =', isAdmin, 'endpoint = /api/products');
|
console.log('handleCreateProduct: isAdmin =', isAdmin, 'endpoint = /api/products');
|
||||||
try {
|
try {
|
||||||
// Admin skapar aktiv produkt direkt
|
const { createProductAction, updateProductCategoryAction } = await import('./actions');
|
||||||
const createRes = await fetch('/api/products', {
|
|
||||||
method: 'POST',
|
// Admin skapar aktiv produkt direkt via Server Action
|
||||||
headers: { 'Content-Type': 'application/json' },
|
const product = await createProductAction(row.rawName);
|
||||||
body: JSON.stringify({ name: row.rawName }),
|
|
||||||
});
|
|
||||||
if (!createRes.ok) {
|
|
||||||
const e = await createRes.json().catch(() => ({}));
|
|
||||||
throw new Error(e.message ?? `HTTP ${createRes.status}`);
|
|
||||||
}
|
|
||||||
const product = await createRes.json() as { id: number; name: string; canonicalName: string | null };
|
|
||||||
|
|
||||||
// Sätt kategori: AI-förslag har prioritet, annars manuellt val
|
// Sätt kategori: AI-förslag har prioritet, annars manuellt val
|
||||||
const categoryId = row.categorySuggestion?.categoryId ?? (row.selectedCategoryId !== '' ? row.selectedCategoryId : null);
|
const categoryId = row.categorySuggestion?.categoryId ?? (row.selectedCategoryId !== '' ? row.selectedCategoryId : null);
|
||||||
if (categoryId) {
|
if (categoryId) {
|
||||||
await fetch(`/api/products/${product.id}`, {
|
await updateProductCategoryAction(product.id, categoryId);
|
||||||
method: 'PATCH',
|
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify({ categoryId }),
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Uppdatera produktlistan lokalt
|
// Uppdatera produktlistan lokalt
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
'use server';
|
||||||
|
|
||||||
|
import { getAuthHeaders } from '@/lib/auth-headers';
|
||||||
|
|
||||||
|
const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';
|
||||||
|
|
||||||
|
export async function createProductAction(name: string) {
|
||||||
|
const authHeaders = await getAuthHeaders();
|
||||||
|
console.log('[createProductAction] Creating product with name:', name);
|
||||||
|
console.log('[createProductAction] Auth headers:', authHeaders ? 'YES' : 'NO');
|
||||||
|
|
||||||
|
const res = await fetch(`${API_BASE}/api/products`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json', ...authHeaders },
|
||||||
|
body: JSON.stringify({ name }),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
const e = await res.json().catch(() => ({}));
|
||||||
|
throw new Error(e.message ?? `HTTP ${res.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function updateProductCategoryAction(productId: number, categoryId: number) {
|
||||||
|
const authHeaders = await getAuthHeaders();
|
||||||
|
|
||||||
|
const res = await fetch(`${API_BASE}/api/products/${productId}`, {
|
||||||
|
method: 'PATCH',
|
||||||
|
headers: { 'Content-Type': 'application/json', ...authHeaders },
|
||||||
|
body: JSON.stringify({ categoryId }),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
const e = await res.json().catch(() => ({}));
|
||||||
|
throw new Error(e.message ?? `HTTP ${res.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res.json();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user