2023-10-23 23:11:59 +02:00
|
|
|
import Image from "next/image"
|
2023-07-31 19:06:46 +02:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
import type { CookiesStore } from "@/utils/constants"
|
|
|
|
import { useI18n } from "@/i18n/i18n.client"
|
2023-07-31 19:06:46 +02:00
|
|
|
|
|
|
|
export interface LocaleFlagProps {
|
|
|
|
locale: string
|
|
|
|
cookiesStore: CookiesStore
|
|
|
|
}
|
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const LocaleFlag = (props: LocaleFlagProps): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const { locale, cookiesStore } = props
|
|
|
|
|
|
|
|
const i18n = useI18n(cookiesStore)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Image
|
|
|
|
quality={100}
|
|
|
|
width={35}
|
|
|
|
height={35}
|
|
|
|
src={`/images/locales/${locale}.svg`}
|
|
|
|
alt={locale}
|
|
|
|
/>
|
2023-10-23 23:11:59 +02:00
|
|
|
<p data-cy="locale-flag-text" className="mx-2 text-base">
|
2023-07-31 19:06:46 +02:00
|
|
|
{i18n.translate(`common.${locale}`)}
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|