-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
208 lines (194 loc) · 5.27 KB
/
Copy pathindex.js
File metadata and controls
208 lines (194 loc) · 5.27 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
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
import React from 'react';
import { Info, CheckCircle, Warning, Error, Close } from '@material-ui/icons';
import Header from './components/Header';
import Message from './components/Message';
import Body from './components/Body';
import BodyWrapper from './components/BodyWrapper';
import AdornmentWrapper from './components/AdornmentWrapper';
import ActionWrapper from './components/ActionWrapper';
import ActionButton from './components/ActionButton';
import CloseWrapper from './components/CloseWrapper';
import CloseButton from './components/CloseButton';
import ProgressBar from './components/ProgressBar';
import ProgressWrapper from './components/ProgressWrapper';
import colors from '../utils/colors';
const createHeader = (text, style = {}) => (
<Header text={text} style={style} />
);
const createMessage = (text, style = {}) => (
<Message text={text} style={style} />
);
const createBodyContent = (header, message, style = {}) => (
<Body header={header} message={message} style={style} />
);
const createBodyWrapper = (child, style = {}) => (
<BodyWrapper child={child} style={style} />
);
const createAdornmentWrapper = (child, style = {}) => (
<AdornmentWrapper child={child} style={style} />
);
const createActionWrapper = (child, style = {}) => (
<ActionWrapper child={child} style={style} />
);
const createActionButton = (text, onClick, style = {}) => (
<ActionButton text={text} onClick={onClick} style={style} />
);
const createCloseWrapper = (child, style = {}) => (
<CloseWrapper child={child} style={style} />
);
const createCloseButton = (icon, onClick, style = {}) => (
<CloseButton icon={icon} onClick={onClick} style={style} />
);
const createProgressBar = (progressColor, timeout, style = {}) => (
<ProgressBar progressColor={progressColor} timeout={timeout} style={style} />
);
const createProgressWrapper = (containerColor, child, style = {}) => (
<ProgressWrapper containerColor={containerColor} child={child} style={style} />
);
const baseElements = {
body: {
wrapper: createBodyWrapper,
content: createBodyContent,
header: createHeader,
message: createMessage,
},
adornment: {
wrapper: createAdornmentWrapper,
},
action: {
wrapper: createActionWrapper,
button: createActionButton,
},
close: {
wrapper: createCloseWrapper,
button: createCloseButton,
icon: <Close style={{ width: 15, height: 15 }} />,
},
progress: {
wrapper: createProgressWrapper,
bar: createProgressBar,
},
};
const closePalette = {
background: colors.body.background,
color: colors.body.color,
};
export default {
info: {
body: {
background: colors.body.background,
color: colors.body.color,
headerColor: null,
messageColor: null,
...baseElements.body,
},
adornment: {
background: colors.info.primary,
color: colors.adornment.color,
icon: <Info />,
...baseElements.adornment,
},
action: {
background: colors.body.background,
color: colors.info.primary,
...baseElements.action,
},
close: {
...closePalette,
...baseElements.close,
},
progress: {
containerColor: colors.info.light,
barColor: colors.info.primary,
...baseElements.progress,
},
},
success: {
body: {
background: colors.body.background,
color: colors.body.color,
headerColor: null,
messageColor: null,
...baseElements.body,
},
adornment: {
background: colors.success.primary,
color: colors.adornment.color,
icon: <CheckCircle />,
...baseElements.adornment,
},
action: {
background: colors.body.background,
color: colors.success.primary,
...baseElements.action,
},
close: {
...closePalette,
...baseElements.close,
},
progress: {
containerColor: colors.success.light,
barColor: colors.success.primary,
...baseElements.progress,
},
},
warning: {
body: {
background: colors.body.background,
color: colors.body.color,
headerColor: null,
messageColor: null,
...baseElements.body,
},
adornment: {
background: colors.warning.primary,
color: colors.adornment.color,
icon: <Warning />,
...baseElements.adornment,
},
action: {
background: colors.body.background,
color: colors.warning.primary,
...baseElements.action,
},
close: {
...closePalette,
...baseElements.close,
},
progress: {
containerColor: colors.warning.light,
barColor: colors.warning.primary,
...baseElements.progress,
},
},
error: {
body: {
background: colors.body.background,
color: colors.body.color,
headerColor: null,
messageColor: null,
...baseElements.body,
},
adornment: {
background: colors.error.primary,
color: colors.adornment.color,
icon: <Error />,
...baseElements.adornment,
},
action: {
background: colors.body.background,
color: colors.error.primary,
fontWeight: 'bold',
...baseElements.action,
},
close: {
...closePalette,
...baseElements.close,
},
progress: {
containerColor: colors.error.light,
barColor: colors.error.primary,
...baseElements.progress,
},
},
};