feat(SW-2879): Move BookingWidget to booking-flow package * Fix lockfile * Fix styling * a tiny little booking widget test * Tiny fixes * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Remove unused scripts * lint:fix * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Tiny lint fixes * update test * Update Input in booking-flow * Clean up comments etc * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Setup tracking context for booking-flow * Add missing use client * Fix temp tracking function * Pass booking to booking-widget * Remove comment * Add use client to booking widget tracking provider * Add use client to tracking functions * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Move debug page * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package * Merge branch 'master' into feat/sw-2879-booking-widget-to-booking-flow-package Approved-by: Bianca Widstam
28 lines
731 B
TypeScript
28 lines
731 B
TypeScript
/* eslint-disable formatjs/no-literal-string-in-jsx */
|
|
"use client"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { Lang } from "@scandic-hotels/common/constants/language"
|
|
import { trpc } from "@scandic-hotels/trpc/client"
|
|
|
|
export function ClientComponent() {
|
|
const intl = useIntl()
|
|
const { data, isLoading } = trpc.autocomplete.destinations.useQuery({
|
|
lang: Lang.en,
|
|
includeTypes: ["hotels"],
|
|
query: "Malmö",
|
|
})
|
|
|
|
return (
|
|
<div>
|
|
<p>client component</p>
|
|
<p>Data: {JSON.stringify(data?.hits?.hotels[0]?.name)}</p>
|
|
<p>Is loading: {isLoading ? "Yes" : "No"}</p>
|
|
<p>Translated text: </p>
|
|
{intl.formatMessage({
|
|
defaultMessage: "All-day breakfast",
|
|
})}
|
|
</div>
|
|
)
|
|
}
|