-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Expand file tree
/
Copy pathStandardModal.tsx
More file actions
155 lines (142 loc) · 3.95 KB
/
StandardModal.tsx
File metadata and controls
155 lines (142 loc) · 3.95 KB
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
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { ReactNode } from 'react';
import { t } from '@apache-superset/core/translation';
import { styled } from '@apache-superset/core/theme';
import { Modal, Loading, Flex } from '@superset-ui/core/components';
import { ModalTitleWithIcon } from 'src/components/ModalTitleWithIcon';
interface StandardModalProps {
width?: number;
title: string;
icon?: ReactNode;
show: boolean;
onHide: () => void;
onSave: () => void;
saveDisabled?: boolean;
saveLoading?: boolean;
saveText?: string;
cancelText?: string;
errorTooltip?: ReactNode;
children: ReactNode;
isEditMode?: boolean;
centered?: boolean;
destroyOnClose?: boolean;
maskClosable?: boolean;
wrapProps?: object;
contentLoading?: boolean;
}
// Standard modal widths
export const MODAL_STANDARD_WIDTH = 500;
export const MODAL_MEDIUM_WIDTH = 600;
export const MODAL_LARGE_WIDTH = 900;
const StyledModal = styled(Modal)`
.ant-modal-body {
max-height: 80vh;
height: auto;
overflow-y: auto;
padding: 0;
}
.ant-modal-header {
padding: ${({ theme }) => theme.sizeUnit * 3}px
${({ theme }) => theme.sizeUnit * 4}px
${({ theme }) => theme.sizeUnit * 3}px;
margin-bottom: 0;
border-bottom: 1px solid ${({ theme }) => theme.colorBorder};
}
.ant-modal-footer {
height: ${({ theme }) => theme.sizeUnit * 16.25}px;
}
.control-label {
margin-top: ${({ theme }) => theme.sizeUnit}px;
}
/* Remove top margin from collapse component */
.ant-collapse {
border: none;
> .ant-collapse-item:first-child {
border-top: none;
}
/* Remove margin from collapse headers */
.ant-collapse-header {
padding-bottom: 0 !important;
/* Remove margin from the CollapseLabelInModal component */
> div {
margin-bottom: 0;
}
}
}
/* Ensure collapse sections have proper padding */
.ant-collapse-content-box {
padding: ${({ theme }) => theme.sizeUnit * 4}px;
}
`;
export function StandardModal({
width = MODAL_STANDARD_WIDTH,
title,
icon,
show,
onHide,
onSave,
saveDisabled = false,
saveLoading = false,
saveText,
cancelText,
errorTooltip,
children,
isEditMode = false,
centered = true,
destroyOnClose = true,
maskClosable = false,
wrapProps,
contentLoading = false,
}: StandardModalProps) {
const primaryButtonName = saveText || (isEditMode ? t('Save') : t('Add'));
return (
<StyledModal
disablePrimaryButton={saveDisabled || saveLoading || contentLoading}
primaryButtonLoading={saveLoading}
primaryTooltipMessage={errorTooltip}
onHandledPrimaryAction={onSave}
onHide={onHide}
primaryButtonName={primaryButtonName}
show={show}
width={`${width}px`}
wrapProps={wrapProps}
centered={centered}
title={
icon ? (
<ModalTitleWithIcon
isEditMode={isEditMode}
title={title}
data-test="standard-modal-title"
/>
) : (
title
)
}
>
{contentLoading ? (
<Flex justify="center" align="center" style={{ minHeight: 200 }}>
<Loading />
</Flex>
) : (
children
)}
</StyledModal>
);
}