Skip to content

Commit

Permalink
fix: alertcomponent type error
Browse files Browse the repository at this point in the history
Signed-off-by: pranalidhanavade <[email protected]>
  • Loading branch information
pranalidhanavade committed Oct 8, 2024
1 parent eb2ed2f commit 2f6812f
Showing 1 changed file with 60 additions and 69 deletions.
129 changes: 60 additions & 69 deletions src/components/AlertComponent/index.tsx
Original file line number Diff line number Diff line change
@@ -1,87 +1,78 @@
import React from 'react';
import type { IAlertComponent } from './interface';

const getAlertClass = (type:string) => {
switch (type) {
case 'warning':
return 'text-yellow-700 bg-yellow-100 border-yellow-500 dark:bg-yellow-200 dark:text-yellow-800';
case 'failure':
return 'text-red-700 bg-red-100 border-red-500 dark:bg-red-200 dark:text-red-800';
case 'success':
return 'text-green-700 bg-green-100 border-green-500 dark:bg-green-200 dark:text-green-800';
default:

return 'text-gray-700 bg-gray-100 border-gray-500 dark:bg-gray-200 dark:text-gray-800';
}
};
export const AlertComponent = ({
message,
type,
viewButton,
onAlertClose,
path = '',
}: IAlertComponent) => {
const getAlertClass = () => {
switch (type) {
case 'warning':
return 'text-yellow-700 bg-yellow-100 border-yellow-500 dark:bg-yellow-200 dark:text-yellow-800';
case 'failure':
return 'text-red-700 bg-red-100 border-red-500 dark:bg-red-200 dark:text-red-800';
case 'success':
return 'text-green-700 bg-green-100 border-green-500 dark:bg-green-200 dark:text-green-800';
default:
return 'text-gray-700 bg-gray-100 border-gray-500 dark:bg-gray-200 dark:text-gray-800';
}
};

return (
message !== null ?
(
(
<div className="w-full">
message !== null ? (
<div className="w-full">
<div
className={`flex flex-col gap-2 p-4 text-sm rounded-lg mb-4 ${getAlertClass()}`}
role="alert"
>
<div
className={`flex flex-col gap-2 p-4 text-sm rounded-lg mb-4 ${() => getAlertClass(type)}`}
role="alert"
className="flex items-center w-full"
data-testid="flowbite-alert-wrapper"
>
<div
className="flex items-center w-full"
data-testid="flowbite-alert-wrapper"
>
<div className="w-full">
<div className="flex flex-wrap justify-between items-center w-full">
<div>{message}</div>
{viewButton && (
<div className="md:w-32 lg:w-48 text-base text-primary-700 text-right flex justify-end mr-2">
<a href={path}>View more... </a>
</div>
)}
</div>
<div className="w-full">
<div className="flex flex-wrap justify-between items-center w-full">
<div>{message}</div>
{viewButton && (
<div className="md:w-32 lg:w-48 text-base text-primary-700 text-right flex justify-end mr-2">
<a href={path}>View more... </a>
</div>
)}
</div>
<button
aria-label="Dismiss"
className={`-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg p-1.5 ${() => getAlertClass(type)}`}
type="button"
onClick={onAlertClose}
>
<svg
stroke="currentColor"
fill="currentColor"
strokeWidth="0"
viewBox="0 0 20 20"
aria-hidden="true"
className={`w-5 h-5 ${() => getAlertClass(type)}`}
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clipRule="evenodd"
></path>
</svg>
</button>
</div>
<button
aria-label="Dismiss"
className={`-mx-1.5 -my-1.5 ml-auto inline-flex h-8 w-8 rounded-lg p-1.5 ${getAlertClass()}`}
type="button"
onClick={onAlertClose}
>
<svg
stroke="currentColor"
fill="currentColor"
strokeWidth="0"
viewBox="0 0 20 20"
aria-hidden="true"
className={`w-5 h-5 ${getAlertClass()}`}
height="1em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clipRule="evenodd"
></path>
</svg>
</button>
</div>
</div>

)
) :
(
<>
<span>

</span>
</>
)


</div>
) : (
<>
<span>
</span></>
)
);
};
};

0 comments on commit 2f6812f

Please sign in to comment.