Some checks failed
CI Pipeline / Test Shared Package (pull_request) Has been cancelled
CI Pipeline / Build All Packages (pull_request) Has been cancelled
CI Pipeline / Generate Coverage Report (pull_request) Has been cancelled
CI Pipeline / Lint Code (pull_request) Has been cancelled
CI Pipeline / Test API Package (pull_request) Has been cancelled
CI Pipeline / Test Web Package (pull_request) Has been cancelled
Docker Build & Deploy / Build Docker Images (pull_request) Has been cancelled
Docker Build & Deploy / Push Docker Images (pull_request) Has been cancelled
Docker Build & Deploy / Deploy to Staging (pull_request) Has been cancelled
Docker Build & Deploy / Deploy to Production (pull_request) Has been cancelled
E2E Tests / End-to-End Tests (pull_request) Has been cancelled
E2E Tests / E2E Tests (Mobile) (pull_request) Has been cancelled
Security Scanning / NPM Audit (pull_request) Has been cancelled
Security Scanning / Dependency License Check (pull_request) Has been cancelled
Security Scanning / Code Quality Scan (pull_request) Has been cancelled
Security Scanning / Docker Image Security (pull_request) Has been cancelled
Security Scanning / Security Summary (pull_request) Has been cancelled
Added comprehensive recipe editing functionality with improved image handling and better UX for large file uploads. **Features:** - Recipe editing: Full CRUD support for recipes with edit page - Image management: Upload, replace, and delete recipe images - Upload feedback: Processing and uploading states for better UX - File size increase: Raised limit from 10MB to 20MB for images - Nginx configuration: Added client_max_body_size for large uploads **Changes:** - Created EditRecipe.tsx page for editing existing recipes - Created NewRecipe.tsx page wrapper for recipe creation - Created RecipeForm.tsx comprehensive form component with: - Simple and multi-section recipe modes - Image upload with confirmation dialogs - Processing state feedback during file handling - Smaller, button-style upload controls - Updated recipes.routes.ts: - Increased multer fileSize limit to 20MB - Added file validation for image types - Image upload now updates Recipe.imageUrl field - Added DELETE /recipes/:id/image endpoint - Automatic cleanup of old images when uploading new ones - Updated nginx.conf: Added client_max_body_size 20M for API proxy - Updated App.css: Improved upload button styling (smaller, more compact) - Updated RecipeForm.tsx: Better file processing feedback with setTimeout - Updated help text to reflect 20MB limit and WEBP support **Technical Details:** - Fixed static file serving path in index.ts - Added detailed logging for upload debugging - Improved TypeScript type safety in upload handlers - Better error handling and user feedback 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
114 lines
2.9 KiB
Plaintext
114 lines
2.9 KiB
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
binaryTargets = ["native", "linux-musl-openssl-3.0.x"]
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model Recipe {
|
|
id String @id @default(cuid())
|
|
title String
|
|
description String?
|
|
prepTime Int? // minutes
|
|
cookTime Int? // minutes
|
|
totalTime Int? // minutes
|
|
servings Int?
|
|
imageUrl String?
|
|
sourceUrl String? // For imported recipes
|
|
author String?
|
|
cuisine String?
|
|
category String?
|
|
rating Float?
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
|
|
sections RecipeSection[]
|
|
ingredients Ingredient[]
|
|
instructions Instruction[]
|
|
images RecipeImage[]
|
|
tags RecipeTag[]
|
|
|
|
@@index([title])
|
|
@@index([cuisine])
|
|
@@index([category])
|
|
}
|
|
|
|
model RecipeSection {
|
|
id String @id @default(cuid())
|
|
recipeId String
|
|
name String // e.g., "Starter", "Dough", "Assembly"
|
|
order Int
|
|
timing String? // e.g., "Day 1 - 8PM", "12 hours before mixing"
|
|
|
|
recipe Recipe @relation(fields: [recipeId], references: [id], onDelete: Cascade)
|
|
ingredients Ingredient[]
|
|
instructions Instruction[]
|
|
|
|
@@index([recipeId])
|
|
}
|
|
|
|
model Ingredient {
|
|
id String @id @default(cuid())
|
|
recipeId String? // Optional - can be derived from section
|
|
sectionId String? // Optional - if null, belongs to recipe directly
|
|
name String
|
|
amount String?
|
|
unit String?
|
|
notes String?
|
|
order Int
|
|
|
|
recipe Recipe? @relation(fields: [recipeId], references: [id], onDelete: Cascade)
|
|
section RecipeSection? @relation(fields: [sectionId], references: [id], onDelete: Cascade)
|
|
|
|
@@index([recipeId])
|
|
@@index([sectionId])
|
|
}
|
|
|
|
model Instruction {
|
|
id String @id @default(cuid())
|
|
recipeId String? // Optional - can be derived from section
|
|
sectionId String? // Optional - if null, belongs to recipe directly
|
|
step Int
|
|
text String @db.Text
|
|
imageUrl String?
|
|
timing String? // e.g., "8:00am", "After 30 minutes", "Day 2 - Morning"
|
|
|
|
recipe Recipe? @relation(fields: [recipeId], references: [id], onDelete: Cascade)
|
|
section RecipeSection? @relation(fields: [sectionId], references: [id], onDelete: Cascade)
|
|
|
|
@@index([recipeId])
|
|
@@index([sectionId])
|
|
}
|
|
|
|
model RecipeImage {
|
|
id String @id @default(cuid())
|
|
recipeId String
|
|
url String
|
|
order Int
|
|
|
|
recipe Recipe @relation(fields: [recipeId], references: [id], onDelete: Cascade)
|
|
|
|
@@index([recipeId])
|
|
}
|
|
|
|
model Tag {
|
|
id String @id @default(cuid())
|
|
name String @unique
|
|
recipes RecipeTag[]
|
|
}
|
|
|
|
model RecipeTag {
|
|
recipeId String
|
|
tagId String
|
|
|
|
recipe Recipe @relation(fields: [recipeId], references: [id], onDelete: Cascade)
|
|
tag Tag @relation(fields: [tagId], references: [id], onDelete: Cascade)
|
|
|
|
@@id([recipeId, tagId])
|
|
@@index([recipeId])
|
|
@@index([tagId])
|
|
}
|