Socket
Socket
Sign inDemoInstall

bee-notification

Package Overview
Dependencies
37
Maintainers
15
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bee-notification

Notification ui component for react


Version published
Weekly downloads
288
increased by33.33%
Maintainers
15
Install size
7.98 MB
Created
Weekly downloads
 

Changelog

Source

2.0.5 (2020-06-22)

Features

  • 新增设置容器api (8e592e3)

Readme

Source

bee-notification

npm version Build Status Coverage Status

Browser Support

IEChromeFirefoxOperaSafari
IE 9+ ✔Chrome 31.0+ ✔Firefox 31.0+ ✔Opera 30.0+ ✔Safari 7.0+ ✔

react bee-notification component for tinper-bee

Notification通知不同于操作类型的信息反馈,是一种主动推送的信息。

使用方法

let notification = null;
Notification.newInstance({position: 'bottomRight'}, n => notification = n);

class Demo1 extends Component {

    simpleFn() {
      notification.notice({
        content: <span>simple show</span>,
        onClose() {
          console.log('simple close');
        },
      });
    }
    render () {

        return (
            <div className="demoPadding">
                <Button onClick={this.simpleFn}>simple show</Button>
            </div>
        )
    }
}

样式引入
  • 可以使用link引入build目录下Notification.css
<link rel="stylesheet" href="./node_modules/bee-notification/build/Notification.css">
  • 可以在js中import样式
import "./node_modules/bee-notification/src/Notification.scss"
//或是
import "./node_modules/bee-notification/build/Notification.css"

API

Notice
参数说明类型默认值
duration显示时间number4.5
onClose关闭时触发的钩子函数function-
closable是否可手动关闭booleantrue
color显示颜色success/info/danger/warning/dark-
className类名string-
style样式object-
Notification
参数说明类型默认值
show是否显示booleantrue
transition动画elementFade
position显示位置topRight/BottomRighttopRight
timeout延迟时间number-
onEnter开始显示时的钩子函数function-
onEntering显示时的钩子函数function-
onEntered显示完成后的钩子函数function-
onExit隐藏开始时的钩子函数function-
onExiting隐藏进行时的钩子函数function-
onExited隐藏结束时的钩子函数function-
className类名string-
style样式object-
keyboardesc触发关闭booleantrue
onEscapeKeyUp响应ESC键时的钩子函数function-
已支持的键盘操作
按键功能
esc关闭Notification
开发调试
$ npm install -g bee-tools
$ git clone https://github.com/tinper-bee/bee-notification
$ cd bee-notification
$ npm install
$ npm run dev

Keywords

FAQs

Last updated on 22 Jun 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc