Skip to content

Commit 248128c

Browse files
authored
demo: demo update (#422)
* demo: code optimization * demo: code optimization
1 parent dcc74ee commit 248128c

File tree

5 files changed

+70
-81
lines changed

5 files changed

+70
-81
lines changed

docs/examples/ant-design.tsx

+16-24
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,33 @@ const clearPath =
1212
' 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h618c35.3 0 64-' +
1313
'28.7 64-64V306c0-35.3-28.7-64-64-64z';
1414

15-
const getSvg = (path: string, props = {}, align = false) => {
16-
return (
17-
<i {...props}>
18-
<svg
19-
viewBox="0 0 1024 1024"
20-
width="1em"
21-
height="1em"
22-
fill="currentColor"
23-
style={align ? { verticalAlign: '-.125em ' } : {}}
24-
>
25-
<path d={path} p-id="5827" />
26-
</svg>
27-
</i>
28-
);
29-
};
15+
const getSvg = (path: string, props = {}, align = false) => (
16+
<i {...props}>
17+
<svg
18+
viewBox="0 0 1024 1024"
19+
width="1em"
20+
height="1em"
21+
fill="currentColor"
22+
style={align ? { verticalAlign: '-0.125em ' } : {}}
23+
>
24+
<path d={path} />
25+
</svg>
26+
</i>
27+
);
3028

31-
const MyControl = () => {
29+
const MyControl: React.FC = () => {
3230
const [visible1, setVisible1] = React.useState(true);
3331
const [visible2, setVisible2] = React.useState(false);
3432
const [visible3, setVisible3] = React.useState(false);
3533
const [width, setWidth] = React.useState(600);
3634
const [destroyOnClose, setDestroyOnClose] = React.useState(false);
3735
const [center, setCenter] = React.useState(false);
38-
const [mousePosition, setMousePosition] = React.useState({
39-
x: null,
40-
y: null,
41-
});
36+
const [mousePosition, setMousePosition] = React.useState({ x: null, y: null });
4237
const [useIcon, setUseIcon] = React.useState(false);
4338
const [forceRender, setForceRender] = React.useState(false);
4439

4540
const onClick = (e: React.MouseEvent) => {
46-
setMousePosition({
47-
x: e.pageX,
48-
y: e.pageY,
49-
});
41+
setMousePosition({ x: e.pageX, y: e.pageY });
5042
setVisible1(true);
5143
};
5244

docs/examples/bootstrap.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import 'bootstrap/dist/css/bootstrap.css';
2-
import * as React from 'react';
1+
import React from 'react';
32
import Dialog from 'rc-dialog';
3+
import 'bootstrap/dist/css/bootstrap.css';
44
import '../../assets/bootstrap.less';
55

66
// Check for memo update should work
7-
const InnerRender = () => {
7+
const InnerRender: React.FC = () => {
88
console.log('Updated...', Date.now());
99
return null;
1010
};
1111

12-
const MyControl = () => {
12+
const MyControl: React.FC = () => {
1313
const [visible, setVisible] = React.useState(false);
1414
const [destroyOnClose, setDestroyOnClose] = React.useState(false);
1515

docs/examples/draggable.tsx

+28-33
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,56 @@
11
import 'bootstrap/dist/css/bootstrap.css';
22
import * as React from 'react';
3-
import Draggable from 'react-draggable';
3+
import Draggable from 'react-draggable';
44
import Dialog from 'rc-dialog';
55
import '../../assets/index.less';
66

7-
const MyControl = () => {
7+
const MyControl: React.FC = () => {
88
const [visible, setVisible] = React.useState(false);
99
const [disabled, setDisabled] = React.useState(true);
1010
const onClick = () => {
1111
setVisible(true);
12-
}
13-
12+
};
1413
const onClose = () => {
1514
setVisible(false);
16-
}
17-
15+
};
1816
return (
1917
<div style={{ margin: 20 }}>
2018
<p>
21-
<button type="button" className="btn btn-primary" onClick={onClick}>show dialog</button>
19+
<button type="button" className="btn btn-primary" onClick={onClick}>
20+
show dialog
21+
</button>
2222
</p>
2323
<Dialog
2424
visible={visible}
2525
animation="slide-fade"
2626
maskAnimation="fade"
2727
onClose={onClose}
2828
style={{ width: 600 }}
29-
title={(
30-
<div
31-
style={{
32-
width: '100%',
33-
cursor: 'pointer',
34-
}}
35-
onMouseOver={() => {
36-
if (disabled){
37-
setDisabled(false)
38-
}
39-
}}
40-
onMouseOut={() => {
41-
setDisabled(true)
42-
}}
43-
// fix eslintjsx-a11y/mouse-events-have-key-events
44-
// https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/mouse-events-have-key-events.md
45-
onFocus={ () => {} }
46-
onBlur={ () => {}}
47-
// end
48-
>modal</div>
49-
)}
50-
modalRender={modal => <Draggable disabled={disabled}>{modal}</Draggable>}
51-
>
29+
title={
5230
<div
53-
style={{
54-
height: 200,
31+
style={{ width: '100%', cursor: 'pointer' }}
32+
onMouseOver={() => {
33+
if (disabled) {
34+
setDisabled(false);
35+
}
5536
}}
37+
onMouseOut={() => {
38+
setDisabled(true);
39+
}}
40+
// fix eslintjsx-a11y/mouse-events-have-key-events
41+
// https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/mouse-events-have-key-events.md
42+
onFocus={() => {}}
43+
onBlur={() => {}}
44+
// end
5645
>
57-
Day before yesterday I saw a rabbit, and yesterday a deer, and today, you.
46+
modal
5847
</div>
48+
}
49+
modalRender={(modal) => <Draggable disabled={disabled}>{modal}</Draggable>}
50+
>
51+
<div style={{ height: 200 }}>
52+
Day before yesterday I saw a rabbit, and yesterday a deer, and today, you.
53+
</div>
5954
</Dialog>
6055
</div>
6156
);

docs/examples/multiple-Portal.tsx

+17-16
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@ import 'rc-drawer/assets/index.css';
44
import Dialog from 'rc-dialog';
55
import '../../assets/index.less';
66

7-
const { useState } = React;
8-
9-
const Demo = () => {
10-
const [showDialog, setShowDialog] = useState(false);
11-
const [showDrawer, setShowDrawer] = useState(false);
7+
const Demo: React.FC = () => {
8+
const [showDialog, setShowDialog] = React.useState(false);
9+
const [showDrawer, setShowDrawer] = React.useState(false);
1210

1311
const onToggleDrawer = () => {
14-
setShowDrawer(value => !value);
12+
setShowDrawer((value) => !value);
1513
};
1614

1715
const onToggleDialog = () => {
18-
setShowDialog(value => !value);
16+
setShowDialog((value) => !value);
1917
};
2018

2119
const dialog = (
@@ -27,23 +25,26 @@ const Demo = () => {
2725
forceRender
2826
title="basic modal"
2927
>
30-
<p><button type="button" onClick={onToggleDrawer}>show drawer</button></p>
28+
<p>
29+
<button type="button" onClick={onToggleDrawer}>
30+
show drawer
31+
</button>
32+
</p>
3133
<div style={{ height: 200 }} />
3234
</Dialog>
3335
);
3436
const drawer = (
35-
<Drawer
36-
open={showDrawer}
37-
handler={false}
38-
onClose={onToggleDrawer}
39-
level={null}
40-
>
41-
<button type="button" onClick={onToggleDrawer}>close drawer</button>
37+
<Drawer open={showDrawer} onClose={onToggleDrawer}>
38+
<button type="button" onClick={onToggleDrawer}>
39+
close drawer
40+
</button>
4241
</Drawer>
4342
);
4443
return (
4544
<div>
46-
<button type="button" onClick={onToggleDialog}>open dialog</button>
45+
<button type="button" onClick={onToggleDialog}>
46+
open dialog
47+
</button>
4748
{dialog}
4849
{drawer}
4950
</div>

docs/examples/pure.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
/* eslint no-console:0 */
2-
import * as React from 'react';
3-
import 'rc-select/assets/index.less';
1+
import React from 'react';
42
import { Panel } from 'rc-dialog';
3+
import 'rc-select/assets/index.less';
54
import '../../assets/index.less';
65

7-
export default () => (
6+
const Demo: React.FC = () => (
87
<Panel prefixCls="rc-dialog" title="Title" closable>
98
Hello World!
109
</Panel>
1110
);
11+
12+
export default Demo;

0 commit comments

Comments
 (0)