-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
styles.js
168 lines (150 loc) · 3.84 KB
/
styles.js
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
/**
* External dependencies
*/
import { css } from '@emotion/react';
/**
* Internal dependencies
*/
import { CONFIG, COLORS } from '../utils';
export const Surface = css`
background-color: ${ CONFIG.surfaceColor };
color: ${ COLORS.black };
position: relative;
`;
export const background = css`
background-color: ${ CONFIG.surfaceBackgroundColor };
`;
/**
* @param {Object} props
* @param {boolean} [props.borderBottom]
* @param {boolean} [props.borderLeft]
* @param {boolean} [props.borderRight]
* @param {boolean} [props.borderTop]
*/
export function getBorders( {
borderBottom,
borderLeft,
borderRight,
borderTop,
} ) {
const borderStyle = `1px solid ${ CONFIG.surfaceBorderColor }`;
return css( {
borderBottom: borderBottom ? borderStyle : undefined,
borderLeft: borderLeft ? borderStyle : undefined,
borderRight: borderRight ? borderStyle : undefined,
borderTop: borderTop ? borderStyle : undefined,
} );
}
export const primary = css``;
export const secondary = css`
background: ${ CONFIG.surfaceBackgroundTintColor };
`;
export const tertiary = css`
background: ${ CONFIG.surfaceBackgroundTertiaryColor };
`;
/**
* @param {string} surfaceBackgroundSize
*/
const customBackgroundSize = ( surfaceBackgroundSize ) =>
[ surfaceBackgroundSize, surfaceBackgroundSize ].join( ' ' );
/**
* @param {string} surfaceBackgroundSizeDotted
*/
const dottedBackground1 = ( surfaceBackgroundSizeDotted ) =>
[
'90deg',
[ CONFIG.surfaceBackgroundColor, surfaceBackgroundSizeDotted ].join(
' '
),
'transparent 1%',
].join( ',' );
/**
* @param {string} surfaceBackgroundSizeDotted
*/
const dottedBackground2 = ( surfaceBackgroundSizeDotted ) =>
[
[ CONFIG.surfaceBackgroundColor, surfaceBackgroundSizeDotted ].join(
' '
),
'transparent 1%',
].join( ',' );
/**
* @param {string} surfaceBackgroundSizeDotted
*/
const dottedBackgroundCombined = ( surfaceBackgroundSizeDotted ) =>
[
`linear-gradient( ${ dottedBackground1(
surfaceBackgroundSizeDotted
) } ) center`,
`linear-gradient( ${ dottedBackground2(
surfaceBackgroundSizeDotted
) } ) center`,
CONFIG.surfaceBorderBoldColor,
].join( ',' );
/**
*
* @param {string} surfaceBackgroundSize
* @param {string} surfaceBackgroundSizeDotted
*/
export const getDotted = (
surfaceBackgroundSize,
surfaceBackgroundSizeDotted
) => css`
background: ${ dottedBackgroundCombined( surfaceBackgroundSizeDotted ) };
background-size: ${ customBackgroundSize( surfaceBackgroundSize ) };
`;
const gridBackground1 = [
`${ CONFIG.surfaceBorderSubtleColor } 1px`,
'transparent 1px',
].join( ',' );
const gridBackground2 = [
'90deg',
`${ CONFIG.surfaceBorderSubtleColor } 1px`,
'transparent 1px',
].join( ',' );
const gridBackgroundCombined = [
`linear-gradient( ${ gridBackground1 } )`,
`linear-gradient( ${ gridBackground2 } )`,
].join( ',' );
/**
* @param {string} surfaceBackgroundSize
* @return {import('@emotion/react').SerializedStyles} CSS.
*/
export const getGrid = ( surfaceBackgroundSize ) => {
return css`
background: ${ CONFIG.surfaceBackgroundColor };
background-image: ${ gridBackgroundCombined };
background-size: ${ customBackgroundSize( surfaceBackgroundSize ) };
`;
};
/**
* @param {'dotted' | 'grid' | 'primary' | 'secondary' | 'tertiary'} variant
* @param {string} surfaceBackgroundSize
* @param {string} surfaceBackgroundSizeDotted
*/
export const getVariant = (
variant,
surfaceBackgroundSize,
surfaceBackgroundSizeDotted
) => {
switch ( variant ) {
case 'dotted': {
return getDotted(
surfaceBackgroundSize,
surfaceBackgroundSizeDotted
);
}
case 'grid': {
return getGrid( surfaceBackgroundSize );
}
case 'primary': {
return primary;
}
case 'secondary': {
return secondary;
}
case 'tertiary': {
return tertiary;
}
}
};