Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

bee-message

tinper-bee478MIT2.1.7

Message ui component for react

react, react-component, bee-message, iuap-design, tinper-bee, Message

readme

bee-message

npm version Build Status Coverage Status

Browser Support

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

react bee-message component for tinper-bee

全局展示操作反馈信息。

应用场景:

  • 可提供成功、警告和错误等反馈信息。
  • 当需要提醒但是不打断操作时,是一种不打断用户操作的轻量级提示方式。

使用方法

const info = function () {
  Message.create({content: 'This is a Info message', color: 'info'});
};

class Demo extends Component {
    render () {
        return (
            <Button
                colors="info"
                onClick={info}>
                info
            </Button>
        )
    }
}

样式引入

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

API

函数api

//设置默认设置
Message.config({
    top: 20,  //顶上显示时距顶部的位置
    bottom: 20, //左下右下显示时距底部的位置
    defaultBottom: 20, //底部显示时距底部的位置
    duration: 20, //显示持续时间
    width: 500 //左下左上右下右上显示时的宽度
    });

//销毁所有消息
Message.destroy();

//创建消息
Messsage.create({});

message函数参数

参数 说明 类型 默认值
content 内容 string/number -
duration 显示时间 number 3
color 颜色 dark / light / success / danger / warning / info / successlight / dangerlight / warninglight / infolight light
onClose 关闭时的钩子函数 function -
position 弹出框显示的位置 top / bottom / topRight / topLeft / bottomRight / bottomLeft top
style 样式 object {}
keyboard esc触发关闭 boolean true
onEscapeKeyUp 响应ESC键时的钩子函数 function -
showIcon 是否显示icon boolean true

已支持的键盘操作

按键 功能
esc 关闭message

开发调试

$ npm install -g bee-tools
$ git clone https://github.com/tinper-bee/bee-message
$ cd bee-message
$ npm install
$ npm run dev

changelog

2.1.7 (2020-04-24)

Bug Fixes

2.1.6 (2019-09-30)

2.1.5 (2019-09-23)

2.1.4 (2019-08-16)

2.1.3 (2019-08-14)

2.1.2 (2019-08-06)

2.1.1 (2019-06-24)

Features

  • bee-message: 升级icon组件 (da30010)

2.1.0 (2019-06-05)

2.0.4 (2019-05-15)

2.0.3 (2019-05-07)

2.0.2 (2019-04-24)

2.0.1 (2019-04-24)

Bug Fixes

  • 每次创建新的Message对象前,没有销毁之前的对象 (2cec5f2)

2.0.0 (2019-03-13)

1.0.13 (2018-12-12)

1.0.4 (2018-02-01)

Bug Fixes

  • bee-message: 去掉阴影rem,改为opx (87214cd)
  • 修改示例 (9b2beff)

Features

  • bee-message: 添加style参数,可以为message组件添加样式 (2f2716d)