import type { TaskPriority, TaskStatus, TimeSphere } from '@/integrations/supabase/types'

export const PRIORITY_LABELS: Record<TaskPriority, string> = {
  none: 'Sem prioridade', low: 'Baixa', medium: 'Média', high: 'Alta', urgent: 'Urgente',
}
export const STATUS_LABELS: Record<TaskStatus, string> = {
  inbox: 'Caixa de entrada', todo: 'A fazer', in_progress: 'Em andamento', done: 'Concluído',
}
export const SPHERE_LABELS: Record<TimeSphere, string> = {
  importante: 'Importante', urgente: 'Urgente', circunstancial: 'Circunstancial',
}
export const PRIORITY_CLASSES: Record<TaskPriority, string> = {
  none: 'bg-prio-none', low: 'bg-prio-low', medium: 'bg-prio-medium', high: 'bg-prio-high', urgent: 'bg-prio-urgent',
}
