dovršen rendering homepage-a
This commit is contained in:
@@ -4,21 +4,20 @@ import { Cog8ToothIcon, PlusCircleIcon } from "@heroicons/react/24/outline";
|
||||
import { FC } from "react";
|
||||
import { BillBadge } from "./BillBadge";
|
||||
import { Bill, Location } from "../lib/db-types";
|
||||
import { formatYearMonth } from "../lib/format";
|
||||
|
||||
export interface LocationCardProps {
|
||||
month: Date,
|
||||
location: Location,
|
||||
bills: Bill[]
|
||||
location: Location
|
||||
}
|
||||
|
||||
export const LocationCard:FC<LocationCardProps> = ({month, location: { name }, bills}) =>
|
||||
export const LocationCard:FC<LocationCardProps> = ({location: { name, yearMonth, bills }}) =>
|
||||
<div className="card card-compact card-bordered max-w-[36em] bg-base-100 shadow-s my-1">
|
||||
<div className="card-body">
|
||||
<Cog8ToothIcon className="h-[1em] w-[1em] absolute cursor-pointer top-3 right-3 text-2xl" />
|
||||
<h2 className="card-title">{month.getFullYear()}-{month.getMonth()+1} {name}</h2>
|
||||
<h2 className="card-title">{formatYearMonth(yearMonth)} {name}</h2>
|
||||
<div className="card-actions">
|
||||
{
|
||||
bills.map(bill => <BillBadge key={bill.id} bill={bill} />)
|
||||
bills.map(bill => <BillBadge key={`${bill.id}`} bill={bill} />)
|
||||
}
|
||||
<div className="tooltip" data-tip="Dodaj novi tip računa">
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-2xl" />
|
||||
|
||||
Reference in New Issue
Block a user