
* 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>
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import { ExclamationIcon } from "@heroicons/react/outline";
|
|
import { CheckIcon } from "@heroicons/react/solid";
|
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
import React, { PropsWithChildren } from "react";
|
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
|
|
|
import { DialogClose, DialogContent } from "@components/Dialog";
|
|
import { Button } from "@components/ui/Button";
|
|
|
|
export type ConfirmationDialogContentProps = {
|
|
localeProp: string;
|
|
confirmBtnText?: string;
|
|
cancelBtnText?: string;
|
|
onConfirm?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
title: string;
|
|
variety?: "danger" | "warning" | "success";
|
|
};
|
|
|
|
export default function ConfirmationDialogContent(props: PropsWithChildren<ConfirmationDialogContentProps>) {
|
|
const { t } = useLocale({ localeProp: props.localeProp });
|
|
const {
|
|
title,
|
|
variety,
|
|
confirmBtnText = t("confirm"),
|
|
cancelBtnText = t("cancel"),
|
|
onConfirm,
|
|
children,
|
|
} = props;
|
|
|
|
return (
|
|
<DialogContent>
|
|
<div className="flex">
|
|
{variety && (
|
|
<div className="mr-3 mt-0.5">
|
|
{variety === "danger" && (
|
|
<div className="text-center p-2 rounded-full mx-auto bg-red-100">
|
|
<ExclamationIcon className="w-5 h-5 text-red-600" />
|
|
</div>
|
|
)}
|
|
{variety === "warning" && (
|
|
<div className="text-center p-2 rounded-full mx-auto bg-orange-100">
|
|
<ExclamationIcon className="w-5 h-5 text-orange-600" />
|
|
</div>
|
|
)}
|
|
{variety === "success" && (
|
|
<div className="text-center p-2 rounded-full mx-auto bg-green-100">
|
|
<CheckIcon className="w-5 h-5 text-green-600" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
<div>
|
|
<DialogPrimitive.Title className="font-cal text-xl font-bold text-gray-900">
|
|
{title}
|
|
</DialogPrimitive.Title>
|
|
<DialogPrimitive.Description className="text-neutral-500">{children}</DialogPrimitive.Description>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse gap-x-2">
|
|
<DialogClose onClick={onConfirm} asChild>
|
|
<Button color="primary">{confirmBtnText}</Button>
|
|
</DialogClose>
|
|
<DialogClose asChild>
|
|
<Button color="secondary">{cancelBtnText}</Button>
|
|
</DialogClose>
|
|
</div>
|
|
</DialogContent>
|
|
);
|
|
}
|