Files
web/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/index.tsx
Matilda Landström 6a803e2d81 Merged in fix(LOY-423)-hide-progress-bar (pull request #3421)
fix(LOY-423): hide progress bar behind feature flag

* fix(LOY-423): hide progress bar behind feature flag


Approved-by: Linus Flood
2026-01-13 09:00:01 +00:00

45 lines
1.4 KiB
TypeScript

import { env } from "@/env/server"
import { serverClient } from "@/lib/trpc/server"
import ClaimPoints from "@/components/Blocks/DynamicContent/Points/ClaimPoints"
import { Section } from "@/components/Section"
import { SectionHeader } from "@/components/Section/Header"
import SectionLink from "@/components/Section/Link"
import { Cards } from "./Cards"
import { INITIAL_STAYS_FETCH_LIMIT } from "./data"
import { L6Progress } from "./L6Progress"
import { ClientPreviousStays } from "./OldClient"
import styles from "./previous.module.css"
import type { AccountPageComponentProps } from "@/types/components/myPages/myPage/accountPage"
export default async function PreviousStays({
title,
link,
}: AccountPageComponentProps) {
const caller = await serverClient()
const initialPreviousStays = await caller.user.stays.previous({
limit: INITIAL_STAYS_FETCH_LIMIT,
})
if (!initialPreviousStays?.data.length) {
return null
}
const StaysComponent = env.NEW_STAYS_ON_MY_PAGES ? Cards : ClientPreviousStays
return (
<Section>
<div className={styles.header}>
<SectionHeader heading={title ?? undefined} link={link} />
<ClaimPoints />
</div>
{env.NEW_STAYS_ON_MY_PAGES ? <L6Progress /> : null}
<StaysComponent initialPreviousStays={initialPreviousStays} />
<SectionLink link={link} variant="mobile" />
</Section>
)
}