feat: add city/state/country to complex, new settings page with sidebar, and Biome linting

- Added city, state, and country optional fields to Complex model
- Updated onboarding to include optional location fields
- Created new settings page with sidebar navigation (Datos del Complejo, Canchas)
- Replaced ESLint with Biome for frontend and backend linting
- Added parallel dev script with concurrently
- Migrated register-routes to use direct app.route() pattern
This commit is contained in:
Jose Selesan
2026-04-10 15:36:15 -03:00
parent 77004b14b0
commit 9ee98a4cb4
129 changed files with 2929 additions and 3186 deletions

View File

@@ -1,26 +1,22 @@
"use client"
'use client';
import * as React from "react"
import { format } from "date-fns"
import { es } from "date-fns/locale"
import { Calendar as CalendarIcon } from "lucide-react"
import { format } from 'date-fns';
import { es } from 'date-fns/locale';
import { Calendar as CalendarIcon } from 'lucide-react';
import * as React from 'react';
import { cn } from "@/lib/utils"
import { Button } from "@/components/ui/button"
import { Calendar } from "@/components/ui/calendar"
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover"
import { Button } from '@/components/ui/button';
import { Calendar } from '@/components/ui/calendar';
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover';
import { cn } from '@/lib/utils';
interface DatePickerProps {
value?: Date
onChange?: (date: Date | undefined) => void
disabled?: (date: Date) => boolean
className?: string
placeholder?: string
minDate?: Date
value?: Date;
onChange?: (date: Date | undefined) => void;
disabled?: (date: Date) => boolean;
className?: string;
placeholder?: string;
minDate?: Date;
}
export function DatePicker({
@@ -28,19 +24,19 @@ export function DatePicker({
onChange,
disabled,
className,
placeholder = "Selecciona una fecha",
placeholder = 'Selecciona una fecha',
minDate,
}: DatePickerProps) {
const [open, setOpen] = React.useState(false)
const [open, setOpen] = React.useState(false);
const isDateDisabled = React.useCallback(
(date: Date) => {
if (minDate && date < minDate) return true
if (disabled) return disabled(date)
return false
if (minDate && date < minDate) return true;
if (disabled) return disabled(date);
return false;
},
[minDate, disabled]
)
);
return (
<Popover open={open} onOpenChange={setOpen}>
@@ -48,18 +44,14 @@ export function DatePicker({
<Button
variant="outline"
className={cn(
"w-full justify-start text-left font-normal",
!value && "text-muted-foreground",
'w-full justify-start text-left font-normal',
!value && 'text-muted-foreground',
className
)}
data-empty={!value}
>
<CalendarIcon className="mr-2 h-4 w-4" />
{value ? (
format(value, "PPP", { locale: es })
) : (
<span>{placeholder}</span>
)}
{value ? format(value, 'PPP', { locale: es }) : <span>{placeholder}</span>}
</Button>
</PopoverTrigger>
<PopoverContent className="w-auto p-0" align="start">
@@ -67,13 +59,13 @@ export function DatePicker({
mode="single"
selected={value}
onSelect={(date) => {
onChange?.(date)
setOpen(false)
onChange?.(date);
setOpen(false);
}}
disabled={isDateDisabled}
initialFocus
/>
</PopoverContent>
</Popover>
)
);
}