Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rsuite/interactions

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rsuite/interactions

Call rsuite Modal at ease.

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
102
increased by7.37%
Maintainers
5
Weekly downloads
 
Created
Source

RSuite Interactions

Call RSuite Modals like a boss.

npm install @rsuite/interactions --save

Features

  • Easy to call out alert(), confirm(), prompt() styles modals as you already know how.
  • Await their return values.
  • Multiple calls are queued.

Usage

import { alert, confirm, prompt  } from '@rsuite/interactions';

function App() {

  const buyNewPhone = useCallback(() => {
    alert('Congrats! You\'ve got a new iPhone!');
  }, []);

  const confirmSmashPhone = useCallback(() => {
    if (await confirm('Are you sure you what to do this?')) {
      alert('Rest in pieces.');
    }
  }, []);

  const promptForName = useCallback(() => {
    const name = await prompt('What is your name?');
    if (name) {
      alert(`It\'s ok, ${name}.`);
    }
  }, []);

  return (
    <>
      <Button onClick={buyNewPhone}>Buy a new iPhone</Button>
      <Button onClick={confirmSmashPhone}>Then smash it!</Button>
      <Button onClick={promptForName}>I'm so sorry.</Button>
    </>
  );
};

API

alert(message?: string): void

Use it like you are using window.alert().

confirm(message?: string): Promise<boolean>

Use it like you are using window.confirm() but await its return value.

prompt(message?: string, _default?: string): Promise<string | null>

Use it like you are using window.prompt() but await its return value.

License

MIT licensed

Keywords

FAQs

Package last updated on 30 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc