
* feat: add crowdin and supported languages * fix: main branch name * feat: test crowdin integration * feat: add crowdin config skeleton * feat: update crowdin.yml * fix: remove ro translation * test: en translation * test: en translation * New Crowdin translations by Github Action (#735) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * test: en translation * fix: separate upload/download workflows * wip * New Crowdin translations by Github Action (#738) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * wip * wip * wip * wip * wip * typo * wip * wip * update crowdin config * update * chore: support i18n de,es,fr,it,pt,ru,ro,en * chore: extract i18n strings * chore: extract booking components strings for i18n * wip * extract more strings * wip * fallback to getServerSideProps for now * New Crowdin translations by Github Action (#874) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * fix: minor fixes on the datepicker * fix: add dutch lang * fix: linting issues * fix: string * fix: update GHA * cleanup trpc * fix linting Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
75 lines
2.6 KiB
TypeScript
75 lines
2.6 KiB
TypeScript
import { ClockIcon, CreditCardIcon, UserIcon, UsersIcon } from "@heroicons/react/solid";
|
|
import { SchedulingType } from "@prisma/client";
|
|
import { Prisma } from "@prisma/client";
|
|
import React from "react";
|
|
import { FormattedNumber, IntlProvider } from "react-intl";
|
|
|
|
import classNames from "@lib/classNames";
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
|
|
|
const eventTypeData = Prisma.validator<Prisma.EventTypeArgs>()({
|
|
select: {
|
|
id: true,
|
|
length: true,
|
|
price: true,
|
|
currency: true,
|
|
schedulingType: true,
|
|
description: true,
|
|
},
|
|
});
|
|
|
|
type EventType = Prisma.EventTypeGetPayload<typeof eventTypeData>;
|
|
|
|
export type EventTypeDescriptionProps = {
|
|
localeProp: string;
|
|
eventType: EventType;
|
|
className?: string;
|
|
};
|
|
|
|
export const EventTypeDescription = ({ localeProp, eventType, className }: EventTypeDescriptionProps) => {
|
|
const { t } = useLocale({ localeProp });
|
|
|
|
return (
|
|
<>
|
|
<div className={classNames("text-neutral-500 dark:text-white", className)}>
|
|
{eventType.description && (
|
|
<h2 className="opacity-60 truncate max-w-[280px] sm:max-w-[500px]">
|
|
{eventType.description.substring(0, 100)}
|
|
</h2>
|
|
)}
|
|
<ul className="flex mt-2 space-x-4 ">
|
|
<li className="flex whitespace-nowrap">
|
|
<ClockIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
|
{eventType.length}m
|
|
</li>
|
|
{eventType.schedulingType ? (
|
|
<li className="flex whitespace-nowrap">
|
|
<UsersIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
|
{eventType.schedulingType === SchedulingType.ROUND_ROBIN && t("round_robin")}
|
|
{eventType.schedulingType === SchedulingType.COLLECTIVE && t("collective")}
|
|
</li>
|
|
) : (
|
|
<li className="flex whitespace-nowrap">
|
|
<UserIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
|
{t("1_on_1")}
|
|
</li>
|
|
)}
|
|
{eventType.price > 0 && (
|
|
<li className="flex whitespace-nowrap">
|
|
<CreditCardIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
|
<IntlProvider locale="en">
|
|
<FormattedNumber
|
|
value={eventType.price / 100.0}
|
|
style="currency"
|
|
currency={eventType.currency.toUpperCase()}
|
|
/>
|
|
</IntlProvider>
|
|
</li>
|
|
)}
|
|
</ul>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default EventTypeDescription;
|