-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathsimple.js
66 lines (59 loc) · 1.47 KB
/
simple.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* eslint-disable no-console */
import 'rc-notification/assets/index.less';
import Notification from 'rc-notification';
import React from 'react';
import ReactDOM from 'react-dom';
let notification = null;
Notification.newInstance({}, (n) => notification = n);
function simpleFn() {
notification.notice({
content: <span>simple show</span>,
onClose() {
console.log('simple close');
},
});
}
function durationFn() {
notification.notice({
content: <span>can not close...</span>,
duration: null,
});
}
function closableFn() {
notification.notice({
content: <span>closable</span>,
duration: null,
onClose() {
console.log('closable close');
},
closable: true,
});
}
function close(key) {
notification.removeNotice(key);
}
function manualClose() {
const key = Date.now();
notification.notice({
content: <div>
<p>click below button to close</p>
<button onClick={close.bind(null, key)}>close</button>
</div>,
key,
duration: null,
});
}
function toggleOrder() {
notification.toggleOrder();
}
ReactDOM.render(<div>
<div>
<label><input type="checkbox" onChange={toggleOrder} />Show last added on top</label>
<br/>
<br/>
<button onClick={simpleFn}>simple show</button>
<button onClick={durationFn}>duration=0</button>
<button onClick={closableFn}>closable</button>
<button onClick={manualClose}>controlled close</button>
</div>
</div>, document.getElementById('__react-content'));