Skip to content

Commit

Permalink
Implement simple pagination of expenses (see spliit-app#30)
Browse files Browse the repository at this point in the history
- display only this year's entries by default
- a "Show more" button reveals all expenses
  • Loading branch information
shynst committed Feb 16, 2024
1 parent e213d09 commit aba1fa1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 20 deletions.
48 changes: 32 additions & 16 deletions src/app/groups/[groupId]/expenses/expense-list.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
'use client'
import { ExpenseCard } from '@/app/groups/[groupId]/expenses/expense-card'
import { Button } from '@/components/ui/button'
import { SearchBar } from '@/components/ui/search-bar'
import { getGroupExpenses } from '@/lib/api'
import { Participant } from '@prisma/client'
import dayjs, { type Dayjs } from 'dayjs'
import Link from 'next/link'
import { useEffect, useState } from 'react'
import { ExpenseCard } from '@/app/groups/[groupId]/expenses/expense-card'
import { useEffect, useMemo, useState } from 'react'

type ExpensesType = Awaited<ReturnType<typeof getGroupExpenses>>

type Props = {
expenses: Awaited<ReturnType<typeof getGroupExpenses>>
expenses: ExpensesType
participants: Participant[]
currency: string
groupId: string
Expand Down Expand Up @@ -40,19 +42,14 @@ function getExpenseGroup(date: Dayjs, today: Dayjs) {
}
}

function getGroupedExpensesByDate(
expenses: Awaited<ReturnType<typeof getGroupExpenses>>,
) {
function getGroupedExpensesByDate(expenses: ExpensesType) {
const today = dayjs()
return expenses.reduce(
(result: { [key: string]: Awaited<ReturnType<typeof getGroupExpenses>> }, expense) => {
const expenseGroup = getExpenseGroup(dayjs(expense.expenseDate), today)
result[expenseGroup] = result[expenseGroup] ?? []
result[expenseGroup].push(expense)
return result
},
{},
)
return expenses.reduce((result: { [key: string]: ExpensesType }, expense) => {
const expenseGroup = getExpenseGroup(dayjs(expense.expenseDate), today)
result[expenseGroup] = result[expenseGroup] ?? []
result[expenseGroup].push(expense)
return result
}, {})
}

export function ExpenseList({
Expand Down Expand Up @@ -81,11 +78,25 @@ export function ExpenseList({
}
}, [groupId, participants])

const groupedExpensesByDate = getGroupedExpensesByDate(expenses)
const groupedExpensesByDate = useMemo(
() => getGroupedExpensesByDate(expenses),
[expenses],
)
const [showAll, setShowAll] = useState(
!groupedExpensesByDate[EXPENSE_GROUPS.LAST_YEAR],
)

return expenses.length > 0 ? (
<>
<SearchBar onChange={(e) => setSearchText(e.target.value)} />
{Object.values(EXPENSE_GROUPS).map((expenseGroup: string) => {
if (
!showAll &&
(expenseGroup === EXPENSE_GROUPS.LAST_YEAR ||
expenseGroup === EXPENSE_GROUPS.OLDER)
)
return null

let groupExpenses = groupedExpensesByDate[expenseGroup]
if (!groupExpenses) return null

Expand Down Expand Up @@ -116,6 +127,11 @@ export function ExpenseList({
</div>
)
})}
{!showAll && (
<Button variant="secondary" onClick={() => setShowAll(true)}>
Show more...
</Button>
)}
</>
) : (
<p className="px-6 text-sm py-6">
Expand Down
10 changes: 6 additions & 4 deletions src/app/groups/[groupId]/expenses/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default async function GroupExpensesPage({
</div>
))}
>
<Expenses groupId={groupId} />
<Expenses group={group} />
</Suspense>
</CardContent>
</Card>
Expand All @@ -97,9 +97,11 @@ export default async function GroupExpensesPage({
)
}

async function Expenses({ groupId }: { groupId: string }) {
const group = await cached.getGroup(groupId)
if (!group) notFound()
type Props = {
group: NonNullable<Awaited<ReturnType<typeof cached.getGroup>>>
}

async function Expenses({ group }: Props) {
const expenses = await getGroupExpenses(group.id)

return (
Expand Down

0 comments on commit aba1fa1

Please # to comment.