
* Concluded merge * Applied stash to newly merged * Always disconnect + remove redundant success message * Added named dialog to replace new=1 * Merged with main p2 * Set eventTypeId to @unique * WIP * Undo vscode changes * Availability dropdown works * Remove console.log + set schedule to null as it is unneeded * Added schedule to availability endpoint * Reduce one refresh; hotfix state inconsistency with forced refresh for now * Add missing translations * Fixed some type errors I missed * Ditch outdated remnant from before packages/prisma * Remove Availability section for teams * Bringing back the Availability section temporarily to teams to allow configuration * Migrated getting-started to new availability system + updated translations + updated seed * Fixed type error coming from main * Titlecase 'default' by providing translation * Fixed broken 'radio' buttons. * schedule deleted translation added * Added empty state for when no schedules are configured * Added correct created message + hotfix reload hard on delete to refresh state * Removed index renames * Type fixes * Update NewScheduleButton.tsx Co-authored-by: zomars <zomars@me.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
import { CheckCircleIcon, ExclamationIcon, InformationCircleIcon, XCircleIcon } from "@heroicons/react/solid";
|
|
import classNames from "classnames";
|
|
import { ReactNode } from "react";
|
|
|
|
export interface AlertProps {
|
|
title?: ReactNode;
|
|
message?: ReactNode;
|
|
actions?: ReactNode;
|
|
className?: string;
|
|
severity: "success" | "warning" | "error" | "info";
|
|
}
|
|
export function Alert(props: AlertProps) {
|
|
const { severity } = props;
|
|
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
"rounded-sm border border-opacity-20 p-3",
|
|
props.className,
|
|
severity === "error" && "border-red-900 bg-red-50 text-red-800",
|
|
severity === "warning" && "border-yellow-700 bg-yellow-50 text-yellow-700",
|
|
severity === "info" && "border-sky-700 bg-sky-50 text-sky-700",
|
|
severity === "success" && "bg-gray-900 text-white"
|
|
)}>
|
|
<div className="flex">
|
|
<div className="flex-shrink-0">
|
|
{severity === "error" && (
|
|
<XCircleIcon className={classNames("h-5 w-5 text-red-400")} aria-hidden="true" />
|
|
)}
|
|
{severity === "warning" && (
|
|
<ExclamationIcon className={classNames("h-5 w-5 text-yellow-400")} aria-hidden="true" />
|
|
)}
|
|
{severity === "info" && (
|
|
<InformationCircleIcon className={classNames("h-5 w-5 text-sky-400")} aria-hidden="true" />
|
|
)}
|
|
{severity === "success" && (
|
|
<CheckCircleIcon className={classNames("h-5 w-5 text-gray-400")} aria-hidden="true" />
|
|
)}
|
|
</div>
|
|
<div className="ml-3 flex-grow">
|
|
<h3 className="text-sm font-medium">{props.title}</h3>
|
|
<div className="text-sm">{props.message}</div>
|
|
</div>
|
|
{props.actions && <div className="text-sm">{props.actions}</div>}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|