Version: 4.xx.xx
Source Code<AutoSaveIndicator />
<AutoSaveIndicator>
component from Refine for Mantine can be used to communicate auto-save status to the user.
Good to know:
This component is an extended version of the <AutoSaveIndicator>
component from Refine's core package. It provides a set of elements which align with Mantine's components and styling.
Usage
import { AutoSaveIndicator, useForm } from "@refinedev/mantine";
const MyComponent = () => {
const {
refineCore: { autoSaveProps },
} = useForm({
refineCoreProps: {
autoSave: {
enabled: true,
},
},
});
console.log(autoSaveProps);
/*
{
status: "success", // "loading" | "error" | "idle" | "success"
error: null, // HttpError | null
data: { ... }, // UpdateResponse | undefined,
}
*/
return <AutoSaveIndicator {...autoSaveProps} />;
};