This repository has been archived by the owner on Mar 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
iconStyles.ts
136 lines (108 loc) · 3.23 KB
/
iconStyles.ts
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
import fontAwesomeIcons from './fontAwesomeIconStyles'
import { disabledStyle, fittedStyle } from '../../../../styles/customCSS'
import { ICSSInJSStyle } from '../../../../../types/theme'
import { IconXSpacing } from '../../../../components/Icon/Icon'
const sizes = new Map([
['micro', 0.3],
['mini', 0.4],
['tiny', 0.5],
['small', 0.75],
['normal', 1],
['large', 1.5],
['big', 2],
['huge', 4],
['massive', 8],
])
const getFontIcon = (font, name) => {
let content = ''
let fontFamily = 'Icons'
switch (font) {
case 'FontAwesome':
default: {
fontFamily = name && name.includes('outline') ? 'outline-icons' : 'Icons'
content = (name && `'\\${fontAwesomeIcons(name)}'`) || '?'
break
}
}
return { content, fontFamily }
}
const getSize = size => `${sizes.get(size)}em`
const getFontStyles = (font, name, size): ICSSInJSStyle => {
const { fontFamily, content } = getFontIcon(font, name)
return {
fontFamily,
width: '1.18em',
fontStyle: 'normal',
fontWeight: 400,
textDecoration: 'inherit',
textAlign: 'center',
'-webkit-font-smoothing': 'antialiased',
'-moz-osx-font-smoothing': 'grayscale',
backfaceVisibility: 'hidden',
lineHeight: 1,
'::before': {
content,
boxSizing: 'inherit',
background: '0 0',
},
}
}
const getXSpacingStyles = (xSpacing: IconXSpacing, horizontalSpace: string): ICSSInJSStyle => {
switch (xSpacing) {
case 'none':
return fittedStyle
case 'before':
return { ...fittedStyle, marginLeft: horizontalSpace }
case 'after':
return { ...fittedStyle, marginRight: horizontalSpace }
case 'both':
return { ...fittedStyle, margin: `0 ${horizontalSpace}` }
}
}
const getBorderedStyles = (isFontBased, circular, borderColor, color): ICSSInJSStyle => {
return {
...getPaddedStyle(isFontBased),
// TODO: "black" here should actually match the Icon's fill or text color
boxShadow: `0 0 0 0.05em ${borderColor || color || 'black'} inset`,
...(circular ? { borderRadius: '50%' } : {}),
}
}
const getPaddedStyle = (isFontBased): ICSSInJSStyle => ({
padding: `0.5em ${isFontBased ? 0 : '0.5em'}`,
width: '2em',
height: '2em',
})
const iconStyles = {
root: ({
props: { disabled, font, svg, name, size, bordered, circular, xSpacing },
variables: v,
}): ICSSInJSStyle => {
const isFontBased = !svg
return {
display: 'inline-block',
fontSize: getSize(size),
width: '1em',
height: '1em',
...(isFontBased ? getFontStyles(font, name, size) : {}),
...(isFontBased && { color: v.color }),
backgroundColor: v.backgroundColor,
opacity: 1,
margin: v.margin,
speak: 'none',
verticalAlign: 'middle',
overflow: 'hidden',
...getXSpacingStyles(xSpacing, v.horizontalSpace),
...((bordered || v.borderColor || circular) &&
getBorderedStyles(isFontBased, circular, v.borderColor, v.color)),
...(v.backgroundColor && {
...getPaddedStyle(isFontBased),
...(bordered || v.borderColor || { boxShadow: 'none' }),
}),
...(disabled && disabledStyle),
}
},
svg: ({ variables: v }): ICSSInJSStyle => ({
fill: v.color,
}),
}
export default iconStyles