ns-react-block-ui
v1.0.13
Published
A react component for blocking UI.
Downloads
253
Maintainers
Readme
ns-react-block-ui
A react component for blocking UI.
Document
https://nutthawutkongsopa.github.io/ns-react-block-ui
Installation 🛠️
npm install ns-react-block-ui
Basic Using ✅
import { BlockUI } from "ns-react-block-ui";
<BlockUI blocking={isBlocking}>
...
<OtherComponent />
</BlockUI>
Global Blocking (Context) 🌟
index.js
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.scss';
import App from './App';
import { BlockUIProvider } from 'ns-react-block-ui'
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<BlockUIProvider loader="default">
<App />
</BlockUIProvider>
</React.StrictMode>
);
SomeComponent.js
import { useBlockUIContext } from 'ns-react-block-ui'
SomeComponent = () => {
const { setBlockUI } = useBlockUIContext();
const blockUI = () => {
setBlockUI({ blocking: true });
};
return (
<>
<button onClick={() => blockUI()}>Block Screen</button>
</>
);
};
Properties 🍀
BlockUI Properties
{
blocking?: boolean;
message?: string | ReactNode;
overlayStyle?: CSSProperties;
loader?: "default" | ReactNode;
style?: CSSProperties;
className?: string;
mode?: "contain" | "stretch" | "full-screen";
cursor?: "inherit" | "wait" | "default" | "progress" | "not-allowed";
hideScroll?: boolean;
}
BlockUI Context Data
{
blocking?: boolean;
message?: string;
loader?: ReactNode;
}
Compatible Version ⚖️
| Version | React Version | Node Version | | ------- | ------------- | ------------ | | 0.1.8 | 16.13.1 | >=14.0.0 | | 0.1.11 | 16.13.1 | >=14.0.0 | | 0.2.4 | 16.13.1 | >=14.0.0 | | 0.2.6 | >=16.13.1 | >=14.0.0 | | 1.x.x | >=16.13.1 | >=14.0.0 |