mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
30 lines
927 B
TypeScript
30 lines
927 B
TypeScript
import { RiFundsLine } from "@remixicon/react";
|
|
import type { GoalProgressItem } from "@/features/dashboard/goals-progress/goals-progress-queries";
|
|
import { WidgetEmptyState } from "@/shared/components/widgets/widget-empty-state";
|
|
import { GoalProgressItem as GoalProgressListItem } from "./goals-progress-item";
|
|
|
|
type GoalsProgressListProps = {
|
|
items: GoalProgressItem[];
|
|
onEdit: (item: GoalProgressItem) => void;
|
|
};
|
|
|
|
export function GoalsProgressList({ items, onEdit }: GoalsProgressListProps) {
|
|
if (items.length === 0) {
|
|
return (
|
|
<WidgetEmptyState
|
|
icon={<RiFundsLine className="size-6 text-muted-foreground" />}
|
|
title="Nenhum orçamento para o período"
|
|
description="Cadastre orçamentos para acompanhar o progresso das metas."
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ul className="flex flex-col">
|
|
{items.map((item) => (
|
|
<GoalProgressListItem key={item.id} item={item} onEdit={onEdit} />
|
|
))}
|
|
</ul>
|
|
);
|
|
}
|