Skip to content

Commit f7c3b55

Browse files
author
Yang
committed
chore: modal mini
1 parent ece9be4 commit f7c3b55

40 files changed

+628
-335
lines changed

packages/mini-demo/order.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"input":{"AutoHeight":"6","Basic":"1","Clearable":"2","Disabled":"5","Native":"3","ReadOnly":"4","ShowLength":"7","Vertical":"8","Readonly":"4","Disable":0},"swipe-action":{"Basic":0},"modal":{"Basic":"1","Button":"2","Alert":"1"}}
1+
{"input":{"AutoHeight":"6","Basic":"1","Clearable":"2","Disabled":"5","Native":"3","ReadOnly":"4","ShowLength":"7","Vertical":"8","Readonly":"4","Disable":0},"swipe-action":{"Basic":0},"modal":{"Basic":"1","Button":"2","Alert":"3","Confrim":"3"},"loading":{"Basic":0,"Spinner":0}}

packages/mini-demo/src/app.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export default defineAppConfig({
99
'pages/input/index',
1010
'pages/swipe-action/index',
1111
'pages/modal/index',
12+
'pages/loading/index',
1213
],
1314
window: {
1415
backgroundTextStyle: 'light',

packages/mini-demo/src/app.scss

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
page {
22
height: 100%;
33
}
4+
5+
View {
6+
box-sizing: border-box;
7+
}

packages/mini-demo/src/pages/checkbox/component/custom-icon.tsx

-37
This file was deleted.

packages/mini-demo/src/pages/checkbox/component/custom.tsx

-73
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from 'react';
2+
import { List, Loading } from 'zarm/mini';
3+
4+
const Demo =() => {
5+
return (
6+
<List>
7+
<List.Item title="普通" suffix={<Loading />} />
8+
<List.Item title="大号" suffix={<Loading size="lg" />} />
9+
</List>
10+
);
11+
}
12+
13+
export default Demo;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from 'react';
2+
import { List, Loading } from 'zarm/mini';
3+
4+
const Demo =() => {
5+
return (
6+
<List>
7+
<List.Item title="普通" suffix={<Loading type="spinner" />} />
8+
<List.Item title="大号" suffix={<Loading size="lg" type="spinner" />} />
9+
</List>
10+
);
11+
}
12+
13+
export default Demo;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default definePageConfig({
2+
navigationBarTitleText: 'Loading'
3+
})

packages/mini-demo/src/pages/loading/index.scss

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
import * as React from 'react';
3+
import Basic from './component/basic';
4+
import Spinner from './component/spinner';
5+
6+
import './index.scss';
7+
8+
export default () => {
9+
return (
10+
<>
11+
<Basic />
12+
<Spinner />
13+
</>
14+
)
15+
}

packages/mini-demo/src/pages/modal/component/alert.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React from 'react';
22
import { List, Button, Modal, Panel } from 'zarm/mini';
3-
import { View } from '@tarojs/components';
43

5-
/* order: 1 */
4+
/* order: 3 */
65

76
const Demo = () => {
87
return (
@@ -15,6 +14,7 @@ const Demo = () => {
1514
size="xs"
1615
onClick={() => {
1716
Modal.alert({
17+
id: 'alert',
1818
className: 'test',
1919
title: '警告框标题',
2020
content: '这里是警告框的内容部分',
@@ -35,6 +35,7 @@ const Demo = () => {
3535
size="xs"
3636
onClick={() => {
3737
Modal.alert({
38+
id: 'alert',
3839
title: '警告框标题',
3940
content: '这里是警告框的内容部分,点击关闭按钮,将触发 Promise 关闭警告框',
4041
onConfirm: async () => {
@@ -49,7 +50,7 @@ const Demo = () => {
4950
}
5051
/>
5152
</List>
52-
<View id="modal-alert" />
53+
<Modal id="alert" />
5354
</Panel>
5455
);
5556
};

packages/mini-demo/src/pages/modal/component/basic.tsx

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useRef, useReducer } from 'react';
1+
import React, { useReducer } from 'react';
22
import { Modal, List, Button, Panel } from 'zarm/mini';
33
import { View } from '@tarojs/components';
44

@@ -56,7 +56,6 @@ const reducer = (state, action) => {
5656
};
5757

5858
const Demo = () => {
59-
const myRef = useRef();
6059
const [state, dispatch] = useReducer(reducer, initState);
6160

6261
const toggle = (key) => dispatch({ type: 'visible', key });
@@ -152,8 +151,6 @@ const Demo = () => {
152151
</List.Item>
153152
</List>
154153

155-
<div id="test-div" style={{ position: 'relative', zIndex: 1 }} ref={myRef} />
156-
157154
<Modal visible={state.normal.visible} title="标题" closable onClose={() => toggle('normal')}>
158155
模态框内容
159156
</Modal>
@@ -194,14 +191,14 @@ const Demo = () => {
194191
</View>
195192
</Modal>
196193

197-
<Modal
194+
{/* <Modal
198195
visible={state.customContainer.visible}
199196
maskClosable
200197
onClose={() => toggle('customContainer')}
201198
mountContainer={() => myRef.current}
202199
>
203200
挂载到指定dom节点
204-
</Modal>
201+
</Modal> */}
205202

206203
<Modal
207204
visible={state.overlength.visible}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import React from 'react';
2+
import { List, Button, Modal, Panel } from 'zarm/mini';
3+
4+
/* order: 3 */
5+
6+
const Demo = () => {
7+
return (
8+
<Panel title="确认框 Confirm">
9+
<List>
10+
<List.Item
11+
title="静态方法关闭"
12+
suffix={
13+
<Button
14+
size="xs"
15+
onClick={() => {
16+
Modal.confirm({
17+
id: 'confirm',
18+
title: '确认信息',
19+
content: '这里是确认框的内容部分',
20+
onCancel: () => {
21+
console.log('点击cancel');
22+
},
23+
onConfirm: () => {
24+
console.log('点击ok');
25+
},
26+
});
27+
}}
28+
>
29+
开启
30+
</Button>
31+
}
32+
/>
33+
<List.Item
34+
title="使用 Promise 关闭"
35+
suffix={
36+
<Button
37+
size="xs"
38+
onClick={() => {
39+
Modal.confirm({
40+
id: 'confirm',
41+
title: '确定要删除吗?',
42+
content: '这里是确认框的内容部分,点击确定按钮,将触发 Promise 关闭确认框',
43+
onConfirm: async () => {
44+
await new Promise((resolve) => setTimeout(resolve, 3000));
45+
// Toast.show({ content: '提交成功' });
46+
},
47+
});
48+
}}
49+
>
50+
开启
51+
</Button>
52+
}
53+
/>
54+
</List>
55+
<Modal id="confirm" />
56+
</Panel>
57+
);
58+
};
59+
60+
export default Demo;

packages/mini-demo/src/pages/modal/index.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@ import * as React from 'react';
33
import Alert from './component/alert';
44
import Basic from './component/basic';
55
import Button from './component/button';
6+
import Confrim from './component/confrim';
67

78
import './index.scss';
89

910
export default () => {
1011
return (
1112
<>
12-
<Alert />
1313
<Basic />
1414
<Button />
15+
<Alert />
16+
<Confrim />
1517
</>
1618
)
1719
}

packages/mini-demo/src/site.ts

+5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ const siteMap = {
7272
// name: '动作面板',
7373
// page: '/pages/action-sheet/index',
7474
// },
75+
{
76+
key: 'Loading',
77+
name: '加载中',
78+
page: '/pages/loading/index',
79+
},
7580
{
7681
key: 'Popup',
7782
name: '动作面板',

packages/zarm/src/checkbox/demo/custom-icon.mini.tsx

-37
This file was deleted.

0 commit comments

Comments
 (0)