change spin animation on data grid loader
This commit is contained in:
@ -1,33 +1,15 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useDataGrid } from '.';
|
import { useDataGrid } from '.';
|
||||||
|
import { RefreshCw } from 'lucide-react';
|
||||||
|
|
||||||
export const DataGridLoader = () => {
|
export const DataGridLoader = () => {
|
||||||
const { props } = useDataGrid();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 flex items-center gap-6 min-w-[160px] bg-card text-muted-foreground px-4 py-2 font-medium leading-none text-sm border shadow-sm rounded-md">
|
<div className="fixed inset-0 bg-transparent flex items-center justify-center z-50 text-muted-foreground px-4 py-2">
|
||||||
<div className="text-muted-foreground bg-card flex items-center gap-2 px-4 py-2 font-medium leading-none text-sm border shadow-sm rounded-md">
|
<div className="bg-card flex items-center border shadow-sm rounded-md">
|
||||||
<svg
|
<div className="flex flex-col items-center">
|
||||||
className="animate-spin -ml-1 h-5 w-5 text-muted-foreground flex-shrink-0"
|
<RefreshCw className="animate-spin h-8 w-8 text-slate-500 mb-2" />
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
<span className="text-slate-500 font-medium">Refreshing data...</span>
|
||||||
fill="none"
|
</div>
|
||||||
viewBox="0 0 24 24"
|
|
||||||
>
|
|
||||||
<circle
|
|
||||||
className="opacity-25"
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="10"
|
|
||||||
stroke="currentColor"
|
|
||||||
strokeWidth="3"
|
|
||||||
></circle>
|
|
||||||
<path
|
|
||||||
className="opacity-75"
|
|
||||||
fill="currentColor"
|
|
||||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
||||||
></path>
|
|
||||||
</svg>
|
|
||||||
{props.messages?.loading}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -224,11 +224,13 @@ const ManageGroups = () => {
|
|||||||
<div className="grid gap-5 lg:gap-7.5 mt-5 relative">
|
<div className="grid gap-5 lg:gap-7.5 mt-5 relative">
|
||||||
{isReloading && (
|
{isReloading && (
|
||||||
<div className="fixed inset-0 bg-transparent flex items-center justify-center z-50 text-muted-foreground px-4 py-2">
|
<div className="fixed inset-0 bg-transparent flex items-center justify-center z-50 text-muted-foreground px-4 py-2">
|
||||||
|
<div className="bg-card flex items-center border shadow-sm rounded-md">
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
<RefreshCw className="animate-spin h-8 w-8 text-slate-500 mb-2" />
|
<RefreshCw className="animate-spin h-8 w-8 text-slate-500 mb-2" />
|
||||||
<span className="text-slate-500 font-medium">Refreshing data...</span>
|
<span className="text-slate-500 font-medium">Refreshing data...</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
<DataGridProvider
|
<DataGridProvider
|
||||||
data={dataGroup}
|
data={dataGroup}
|
||||||
|
|||||||
@ -178,7 +178,7 @@ const ManageMembers = () => {
|
|||||||
toast.success('Success Create Member. PIN sent to email');
|
toast.success('Success Create Member. PIN sent to email');
|
||||||
}
|
}
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
if (error?.response?.data?.message) toast.error(error?.response?.data?.message)
|
if (error?.response?.data?.message) toast.error(error?.response?.data?.message);
|
||||||
else toast.error(error.message);
|
else toast.error(error.message);
|
||||||
} finally {
|
} finally {
|
||||||
setDialogOpen(false);
|
setDialogOpen(false);
|
||||||
@ -239,12 +239,14 @@ const ManageMembers = () => {
|
|||||||
|
|
||||||
<div className="grid gap-5 lg:gap-7.5 mt-5 relative">
|
<div className="grid gap-5 lg:gap-7.5 mt-5 relative">
|
||||||
{isReloading && (
|
{isReloading && (
|
||||||
<div className="absolute inset-0 bg-white/70 z-10 flex items-center justify-center">
|
<div className="fixed inset-0 bg-transparent flex items-center justify-center z-50 text-muted-foreground px-4 py-2">
|
||||||
|
<div className="bg-card flex items-center border shadow-sm rounded-md">
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
<RefreshCw className="animate-spin h-8 w-8 text-slate-500 mb-2" />
|
<RefreshCw className="animate-spin h-8 w-8 text-slate-500 mb-2" />
|
||||||
<span className="text-slate-500 font-medium">Refreshing data...</span>
|
<span className="text-slate-500 font-medium">Refreshing data...</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
<DataGridProvider
|
<DataGridProvider
|
||||||
data={members}
|
data={members}
|
||||||
|
|||||||
Reference in New Issue
Block a user