-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathedge-popup.tsx
121 lines (112 loc) · 2.5 KB
/
edge-popup.tsx
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* iframe: true
*/
import React from 'react';
import type { CSSMotionProps } from 'rc-motion';
import type { BuildInPlacements, TriggerProps } from 'rc-trigger';
import Trigger from 'rc-trigger';
import './case.less';
const builtinPlacements: BuildInPlacements = {
left: {
points: ['cr', 'cl'],
},
right: {
points: ['cl', 'cr'],
},
top: {
points: ['bc', 'tc'],
},
bottom: {
points: ['tc', 'bc'],
},
topLeft: {
points: ['bl', 'tl'],
},
topRight: {
points: ['br', 'tr'],
},
bottomRight: {
points: ['tr', 'br'],
},
bottomLeft: {
points: ['tl', 'bl'],
},
};
const Motion: CSSMotionProps = {
motionName: 'case-motion',
};
const MaskMotion: CSSMotionProps = {
motionName: 'mask-motion',
};
function useControl<T>(valuePropName: string, defaultValue: T): [T, any] {
const [value, setValue] = React.useState<T>(defaultValue);
return [
value,
{
value,
checked: value,
onChange({ target }) {
setValue(target[valuePropName]);
},
},
];
}
const Demo = () => {
const renderNode = (params: { placement?: TriggerProps['popupPlacement'] }) => {
const { placement = 'top' } = params;
return (
<Trigger
popupAlign={{
offset: [0, 0],
overflow: {
adjustX: 1,
adjustY: 1,
},
}}
arrow={false}
popupPlacement={placement}
destroyPopupOnHide={true}
mask={false}
maskMotion={MaskMotion}
maskClosable={false}
stretch={''}
builtinPlacements={builtinPlacements}
forceRender={false}
popupStyle={{
border: '1px solid red',
background: 'white',
boxSizing: 'border-box',
}}
popup={<div>3000</div>}
popupMotion={null}
onPopupAlign={() => {
console.warn('Aligned!');
}}
>
<span
tabIndex={0}
role="button"
>
T
</span>
</Trigger>
)
}
return (
<React.StrictMode>
<div>
{renderNode({ placement: 'top' })}
</div>
<div style={{position: 'absolute', bottom: 0, right: 0}}>
{renderNode({ placement: 'right' })}
</div>
<div style={{position: 'absolute', bottom: 0, left: 0}}>
{renderNode({ placement: 'top' })}
</div>
<div style={{position: 'absolute', top: 0, right: 0}}>
{renderNode({ placement: 'left' })}
</div>
</React.StrictMode>
);
};
export default Demo;