-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpopover.tsx
267 lines (256 loc) · 6.21 KB
/
popover.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import { SuspensionBox } from "./SuspensionBox";
import { default as Popover, PopoverProps } from "antd/es/popover";
import { Children, cloneElement, MouseEvent, ReactNode, useState } from "react";
import styled from "styled-components";
import { ActiveTextColor, GreyTextColor } from "constants/style";
import { trans } from "i18n/design";
import { PointIcon } from "icons";
const Wedge = styled.div`
height: 8px;
/* width: 88px; */
min-width: 110px;
`;
const HandleText = styled.span<{ $color?: string }>`
font-size: 13px;
color: ${(props) => (props.$color ? props.$color : "#333333")};
line-height: 13px;
display: block;
`;
const Handle = styled.div`
min-width: 72px;
height: 29px;
margin: 0 8px;
background-color: #ffffff;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0 8px;
cursor: pointer;
&:hover {
background-color: #f2f7fc;
border-radius: 4px;
cursor: pointer;
}
`;
const StyledPointIcon = styled(PointIcon)`
cursor: pointer;
color: ${GreyTextColor};
&:hover {
color: ${ActiveTextColor};
}
`;
const SimplePopover = (props: {
title: string;
visible?: boolean;
setVisible?: (vis: boolean) => void;
children: JSX.Element | React.ReactNode;
content: JSX.Element | React.ReactNode;
scrollable?: boolean;
}) => {
const { visible, setVisible } = props;
const contentWithBox = (
<SuspensionBox
title={props.title}
onClose={() => setVisible?.(false)}
content={props.content}
scrollable={props.scrollable}
/>
);
return (
<Popover
align={{
offset: [-12, 0, 0, 0],
}}
// destroyTooltipOnHide
content={contentWithBox}
trigger="click"
open={visible}
onOpenChange={setVisible}
placement="left"
styles={{
root: { width: "310px" },
body: { padding: 0 }
}}
>
{props.children}
</Popover>
);
};
// popover with own state
const CustomPopover = (props: {
title: string;
type?: "query";
children: JSX.Element | React.ReactNode;
content: JSX.Element | React.ReactNode;
defaultVisible: boolean;
scrollable?: boolean;
}) => {
const [visible, setVisible] = useState(props.defaultVisible);
const contentWithBox = (
<SuspensionBox
title={props.title}
onClose={() => setVisible(false)}
content={props.content}
scrollable={props.scrollable}
/>
);
return (
<Popover
content={contentWithBox}
trigger="click"
open={visible}
onOpenChange={setVisible}
placement={props.type === "query" ? "top" : "left"}
align={{
offset: [-12, 0, 0, 0],
}}
styles={{
root: { width: "310px" },
body: { padding: 0 }
}}
>
{props.children}
</Popover>
);
};
export type EditPopoverItemType = { text: ReactNode; onClick: () => void; type?: "delete" };
export interface EditPopoverProps extends PopoverProps {
children?: React.ReactElement;
items?: EditPopoverItemType[]; // FIXME: refactor props below into this structure
addText?: string;
add?: () => void;
edit?: () => void;
rename?: () => void;
copy?: () => void;
del?: () => void;
}
// paste deleted popover
const EditPopover = (props: EditPopoverProps) => {
const {
children = <StyledPointIcon tabIndex={-1} />,
items,
addText,
add,
edit,
rename,
copy,
del,
...popoverProps
} = props;
const [visible, setVisible] = useState(false);
const hide = () => {
setVisible(false);
};
const onlyChildren = Children.only(children);
const { style, ...otherProps } = onlyChildren.props;
const newStyle = {
...style,
};
if (visible) {
newStyle.color = ActiveTextColor;
}
const newChildren = cloneElement(onlyChildren, {
...otherProps,
style: newStyle,
onClick: (e: MouseEvent) => {
e.stopPropagation();
},
});
return (
<Popover
arrow={false}
styles={{
root: { paddingTop: '15px' },
body: { padding: 0 }
}}
content={() => (
<>
<Wedge />
{items?.map((item, idx) => (
<Handle
key={idx}
onClick={(e) => {
e.stopPropagation();
item.onClick();
hide();
}}
>
<HandleText $color={item.type === "delete" ? "#F73131" : "#333333"}>
{item.text}
</HandleText>
</Handle>
))}
{add && (
<Handle
onClick={(e) => {
e.stopPropagation();
add?.();
hide();
}}
>
<HandleText>{addText || trans("addItem")}</HandleText>
</Handle>
)}
{edit && (
<Handle
onClick={(e) => {
e.stopPropagation();
edit?.();
hide();
}}
>
<HandleText>{trans("edit")}</HandleText>
</Handle>
)}
{copy && (
<Handle
onClick={(e) => {
e.stopPropagation();
copy!();
hide();
}}
>
<HandleText>{trans("duplicate")}</HandleText>
</Handle>
)}
{rename && (
<Handle
onClick={(e) => {
e.stopPropagation();
rename!();
hide();
}}
>
<HandleText>{trans("rename")}</HandleText>
</Handle>
)}
{del && (
<Handle
onClick={(e) => {
e.stopPropagation();
del!();
hide();
}}
>
<HandleText $color={"#F73131"}>{trans("delete")}</HandleText>
</Handle>
)}
<Wedge />
</>
)}
trigger="click"
open={visible}
onOpenChange={setVisible}
placement="bottomRight"
// overlayStyle={{ width: "88px" }}
align={{
offset: [8, -8, 0, 0],
}}
{...popoverProps}
>
{newChildren}
</Popover>
);
};
export { SimplePopover, CustomPopover, EditPopover };