feat: Implementar sistema de disponibilidad y corregir errores de kiosko

- Agregar API routes de disponibilidad (blocks, staff, time-slots, staff-unavailable)
- Corregir autenticación en availability routes (reemplazar get_current_user_role con validación Bearer)
- Corregir DELETE en blocks/route.ts para usar query parameters
- Corregir errores de tipos en kiosk routes (supabase → supabaseAdmin)
- Agregar layout raíz de Next.js y estilos globales
- Agregar componente Badge UI
- Corregir tipos TypeScript en WalkInFlow
- Instalar dependencias necesarias (@radix-ui/*, class-variance-authority, etc)
- Agregar migraciones de disponibilidad
This commit is contained in:
Marco Gallegos
2026-01-16 15:12:57 -06:00
parent 631e60376c
commit accf0e81e1
23 changed files with 8263 additions and 152 deletions

View File

@@ -0,0 +1,200 @@
import { NextRequest, NextResponse } from 'next/server'
import { supabaseAdmin } from '@/lib/supabase/client'
async function validateAdmin(request: NextRequest) {
const authHeader = request.headers.get('authorization')
if (!authHeader) {
return null
}
const token = authHeader.replace('Bearer ', '')
if (token !== process.env.ADMIN_ENROLLMENT_KEY) {
return null
}
return true
}
export async function POST(request: NextRequest) {
try {
const isAdmin = await validateAdmin(request)
if (!isAdmin) {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 401 }
)
}
const body = await request.json()
const {
location_id,
resource_id,
start_time_utc,
end_time_utc,
reason
} = body
if (!location_id || !resource_id || !start_time_utc || !end_time_utc) {
return NextResponse.json(
{ error: 'Missing required fields: location_id, resource_id, start_time_utc, end_time_utc' },
{ status: 400 }
)
}
const { data: block, error: blockError } = await supabaseAdmin
.from('booking_blocks')
.insert({
location_id,
resource_id,
start_time_utc,
end_time_utc,
reason
})
.select()
.single()
if (blockError || !block) {
return NextResponse.json(
{ error: blockError?.message || 'Failed to create booking block' },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
block
})
} catch (error) {
console.error('Booking blocks POST error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}
export async function GET(request: NextRequest) {
try {
const isAdmin = await validateAdmin(request)
if (!isAdmin) {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 401 }
)
}
const { searchParams } = new URL(request.url)
const locationId = searchParams.get('location_id')
const startDate = searchParams.get('start_date')
const endDate = searchParams.get('end_date')
let query = supabaseAdmin
.from('booking_blocks')
.select(`
id,
location_id,
resource_id,
start_time_utc,
end_time_utc,
reason,
created_at,
location (
id,
name
),
resource (
id,
name,
type
),
created_by (
id,
display_name
)
`)
if (locationId) {
query = query.eq('location_id', locationId)
}
if (startDate) {
query = query.gte('start_time_utc', startDate)
}
if (endDate) {
query = query.lte('end_time_utc', endDate)
}
const { data: blocks, error } = await query.order('start_time_utc', { ascending: true })
if (error) {
return NextResponse.json(
{ error: error.message },
{ status: 400 }
)
}
return NextResponse.json({
blocks: blocks || [],
total: blocks?.length || 0
})
} catch (error) {
console.error('Booking blocks GET error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}
export async function DELETE(request: NextRequest) {
try {
const isAdmin = await validateAdmin(request)
if (!isAdmin) {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 401 }
)
}
const { searchParams } = new URL(request.url)
const blockId = searchParams.get('id')
if (!blockId) {
return NextResponse.json(
{ error: 'Missing required parameter: id' },
{ status: 400 }
)
}
const { data: block, error: blockError } = await supabaseAdmin
.from('booking_blocks')
.delete()
.eq('id', blockId)
.select()
.single()
if (blockError) {
return NextResponse.json(
{ error: blockError?.message || 'Block not found' },
{ status: 404 }
)
}
return NextResponse.json({
success: true,
message: 'Booking block deleted successfully'
})
} catch (error) {
console.error('Booking blocks DELETE error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}

View File

@@ -0,0 +1,178 @@
import { NextRequest, NextResponse } from 'next/server'
import { supabaseAdmin } from '@/lib/supabase/client'
async function validateAdminOrStaff(request: NextRequest) {
const authHeader = request.headers.get('authorization')
if (!authHeader) {
return null
}
const token = authHeader.replace('Bearer ', '')
if (token !== process.env.ADMIN_ENROLLMENT_KEY) {
return null
}
return true
}
export async function POST(request: NextRequest) {
try {
const hasAccess = await validateAdminOrStaff(request)
if (!hasAccess) {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 401 }
)
}
const body = await request.json()
const {
staff_id,
date,
start_time,
end_time,
reason,
location_id
} = body
if (!staff_id || !date || !start_time || !end_time) {
return NextResponse.json(
{ error: 'Missing required fields: staff_id, date, start_time, end_time' },
{ status: 400 }
)
}
const { data: staff, error: staffError } = await supabaseAdmin
.from('staff')
.select('id, location_id')
.eq('id', staff_id)
.single()
if (staffError || !staff) {
return NextResponse.json(
{ error: staffError?.message || 'Staff not found' },
{ status: 400 }
)
}
const { data: availability, error: availabilityError } = await supabaseAdmin.rpc('check_staff_availability', {
p_staff_id: staff_id,
p_start_time_utc: `${date}T${start_time}Z`,
p_end_time_utc: `${date}T${end_time}Z`
})
if (availabilityError) {
return NextResponse.json(
{ error: availabilityError.message },
{ status: 400 }
)
}
const { data: existingAvailability } = await supabaseAdmin
.from('staff_availability')
.select('*')
.eq('staff_id', staff_id)
.eq('date', date)
.single()
if (existingAvailability) {
return NextResponse.json(
{ error: 'Availability already exists for this staff and date' },
{ status: 400 }
)
}
const { data: newAvailability, error: createError } = await supabaseAdmin
.from('staff_availability')
.insert({
staff_id,
date,
start_time,
end_time,
is_available: false,
reason,
created_by: staff_id
})
.select()
.single()
if (createError) {
return NextResponse.json(
{ error: createError.message },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
availability: newAvailability
})
} catch (error) {
console.error('Staff unavailable POST error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}
export async function GET(request: NextRequest) {
try {
const hasAccess = await validateAdminOrStaff(request)
if (!hasAccess) {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 401 }
)
}
const { searchParams } = new URL(request.url)
const staffId = searchParams.get('staff_id')
const startDate = searchParams.get('start_date')
const endDate = searchParams.get('end_date')
if (!staffId) {
return NextResponse.json(
{ error: 'Missing required parameter: staff_id' },
{ status: 400 }
)
}
let query = supabaseAdmin
.from('staff_availability')
.select('*')
.eq('staff_id', staffId)
if (startDate) {
query = query.gte('date', startDate)
}
if (endDate) {
query = query.lte('date', endDate)
}
const { data: availabilityList, error } = await query.order('date', { ascending: true })
if (error) {
return NextResponse.json(
{ error: error.message },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
availability: availabilityList || []
})
} catch (error) {
console.error('Staff unavailable GET error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}

View File

@@ -0,0 +1,46 @@
import { NextRequest, NextResponse } from 'next/server'
import { supabaseAdmin } from '@/lib/supabase/client'
export async function GET(request: NextRequest) {
try {
const { searchParams } = new URL(request.url)
const locationId = searchParams.get('location_id')
const startTime = searchParams.get('start_time_utc')
const endTime = searchParams.get('end_time_utc')
if (!locationId || !startTime || !endTime) {
return NextResponse.json(
{ error: 'Missing required parameters: location_id, start_time_utc, end_time_utc' },
{ status: 400 }
)
}
const { data: staff, error: staffError } = await supabaseAdmin.rpc('get_available_staff', {
p_location_id: locationId,
p_start_time_utc: startTime,
p_end_time_utc: endTime
})
if (staffError) {
return NextResponse.json(
{ error: staffError.message },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
staff: staff || [],
location_id: locationId,
start_time_utc: startTime,
end_time_utc: endTime,
available_count: staff?.length || 0
})
} catch (error) {
console.error('Available staff GET error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}

View File

@@ -0,0 +1,46 @@
import { NextRequest, NextResponse } from 'next/server'
import { supabaseAdmin } from '@/lib/supabase/client'
export async function GET(request: NextRequest) {
try {
const { searchParams } = new URL(request.url)
const locationId = searchParams.get('location_id')
const serviceId = searchParams.get('service_id')
const date = searchParams.get('date')
if (!locationId || !date) {
return NextResponse.json(
{ error: 'Missing required parameters: location_id, date' },
{ status: 400 }
)
}
const timeSlotDuration = parseInt(searchParams.get('time_slot_duration_minutes') || '60', 10);
const { data: availability, error } = await supabaseAdmin.rpc('get_detailed_availability', {
p_location_id: locationId,
p_service_id: serviceId,
p_date: date,
p_time_slot_duration_minutes: timeSlotDuration
})
if (error) {
console.error('RPC error:', error);
return NextResponse.json(
{ error: error.message },
{ status: 400 }
)
}
return NextResponse.json({
success: true,
availability
})
} catch (error) {
console.error('Time slots GET error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}