3
3
Object . defineProperty ( exports , "__esModule" , {
4
4
value : true
5
5
} ) ;
6
+ exports . DEFAULT_SIZE = exports . DEFAULT_SECONDARY_OPACITY = exports . DEFAULT_COLOR = void 0 ;
6
7
exports [ "default" ] = FontAwesomeIcon ;
7
- exports . DEFAULT_SECONDARY_OPACITY = exports . DEFAULT_COLOR = exports . DEFAULT_SIZE = void 0 ;
8
8
9
9
var _react = _interopRequireDefault ( require ( "react" ) ) ;
10
10
@@ -18,45 +18,44 @@ var _fontawesomeSvgCore = require("@fortawesome/fontawesome-svg-core");
18
18
19
19
var _logger = _interopRequireDefault ( require ( "../logger" ) ) ;
20
20
21
+ var _excluded = [ "color" ] ;
22
+
21
23
function _interopRequireDefault ( obj ) { return obj && obj . __esModule ? obj : { "default" : obj } ; }
22
24
23
25
function _objectWithoutProperties ( source , excluded ) { if ( source == null ) return { } ; var target = _objectWithoutPropertiesLoose ( source , excluded ) ; var key , i ; if ( Object . getOwnPropertySymbols ) { var sourceSymbolKeys = Object . getOwnPropertySymbols ( source ) ; for ( i = 0 ; i < sourceSymbolKeys . length ; i ++ ) { key = sourceSymbolKeys [ i ] ; if ( excluded . indexOf ( key ) >= 0 ) continue ; if ( ! Object . prototype . propertyIsEnumerable . call ( source , key ) ) continue ; target [ key ] = source [ key ] ; } } return target ; }
24
26
25
27
function _objectWithoutPropertiesLoose ( source , excluded ) { if ( source == null ) return { } ; var target = { } ; var sourceKeys = Object . keys ( source ) ; var key , i ; for ( i = 0 ; i < sourceKeys . length ; i ++ ) { key = sourceKeys [ i ] ; if ( excluded . indexOf ( key ) >= 0 ) continue ; target [ key ] = source [ key ] ; } return target ; }
26
28
27
- function ownKeys ( object , enumerableOnly ) { var keys = Object . keys ( object ) ; if ( Object . getOwnPropertySymbols ) { var symbols = Object . getOwnPropertySymbols ( object ) ; if ( enumerableOnly ) symbols = symbols . filter ( function ( sym ) { return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ; } ) ; keys . push . apply ( keys , symbols ) ; } return keys ; }
29
+ function ownKeys ( object , enumerableOnly ) { var keys = Object . keys ( object ) ; if ( Object . getOwnPropertySymbols ) { var symbols = Object . getOwnPropertySymbols ( object ) ; enumerableOnly && ( symbols = symbols . filter ( function ( sym ) { return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ; } ) ) , keys . push . apply ( keys , symbols ) ; } return keys ; }
28
30
29
- function _objectSpread ( target ) { for ( var i = 1 ; i < arguments . length ; i ++ ) { var source = arguments [ i ] != null ? arguments [ i ] : { } ; if ( i % 2 ) { ownKeys ( Object ( source ) , true ) . forEach ( function ( key ) { _defineProperty ( target , key , source [ key ] ) ; } ) ; } else if ( Object . getOwnPropertyDescriptors ) { Object . defineProperties ( target , Object . getOwnPropertyDescriptors ( source ) ) ; } else { ownKeys ( Object ( source ) ) . forEach ( function ( key ) { Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ; } ) ; } } return target ; }
31
+ function _objectSpread ( target ) { for ( var i = 1 ; i < arguments . length ; i ++ ) { var source = null != arguments [ i ] ? arguments [ i ] : { } ; i % 2 ? ownKeys ( Object ( source ) , ! 0 ) . forEach ( function ( key ) { _defineProperty ( target , key , source [ key ] ) ; } ) : Object . getOwnPropertyDescriptors ? Object . defineProperties ( target , Object . getOwnPropertyDescriptors ( source ) ) : ownKeys ( Object ( source ) ) . forEach ( function ( key ) { Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ; } ) ; } return target ; }
30
32
31
- function _typeof ( obj ) { "@babel/helpers - typeof" ; if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof = function _typeof ( obj ) { return typeof obj ; } ; } else { _typeof = function _typeof ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof ( obj ) ; }
33
+ function _typeof ( obj ) { "@babel/helpers - typeof" ; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol . iterator ? function ( obj ) { return typeof obj ; } : function ( obj ) { return obj && "function" == typeof Symbol && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } , _typeof ( obj ) ; }
32
34
33
35
function _defineProperty ( obj , key , value ) { if ( key in obj ) { Object . defineProperty ( obj , key , { value : value , enumerable : true , configurable : true , writable : true } ) ; } else { obj [ key ] = value ; } return obj ; }
34
36
35
- var _Dimensions$get = _reactNative . Dimensions . get ( 'window' ) ,
36
- windowWidth = _Dimensions$get . width ,
37
- windowHeight = _Dimensions$get . height ;
38
-
39
37
var DEFAULT_SIZE = 16 ;
40
38
exports . DEFAULT_SIZE = DEFAULT_SIZE ;
41
39
var DEFAULT_COLOR = '#000' ;
42
40
exports . DEFAULT_COLOR = DEFAULT_COLOR ;
43
- var DEFAULT_SECONDARY_OPACITY = 0.4 ; // Deprecated height and width defaults
44
-
41
+ var DEFAULT_SECONDARY_OPACITY = 0.4 ;
45
42
exports . DEFAULT_SECONDARY_OPACITY = DEFAULT_SECONDARY_OPACITY ;
46
- var DEFAULT_HEIGHT = windowHeight * 0.1 ;
47
- var DEFAULT_WIDTH = windowWidth * 0.1 ;
48
43
49
44
function objectWithKey ( key , value ) {
50
45
return Array . isArray ( value ) && value . length > 0 || ! Array . isArray ( value ) && value ? _defineProperty ( { } , key , value ) : { } ;
51
46
}
52
47
53
48
function normalizeIconArgs ( icon ) {
54
- if ( icon === null ) {
55
- return null ;
49
+ if ( icon && _typeof ( icon ) === 'object' && icon . prefix && icon . iconName && icon . icon ) {
50
+ return icon ;
56
51
}
57
52
58
- if ( _typeof ( icon ) === 'object' && icon . prefix && icon . iconName ) {
59
- return icon ;
53
+ if ( _fontawesomeSvgCore . parse . icon ) {
54
+ return _fontawesomeSvgCore . parse . icon ( icon ) ;
55
+ }
56
+
57
+ if ( icon === null ) {
58
+ return null ;
60
59
}
61
60
62
61
if ( Array . isArray ( icon ) && icon . length === 2 ) {
@@ -77,6 +76,7 @@ function normalizeIconArgs(icon) {
77
76
function FontAwesomeIcon ( props ) {
78
77
var iconArgs = props . icon ,
79
78
maskArgs = props . mask ,
79
+ maskId = props . maskId ,
80
80
height = props . height ,
81
81
width = props . width ,
82
82
size = props . size ;
@@ -86,10 +86,12 @@ function FontAwesomeIcon(props) {
86
86
var iconLookup = normalizeIconArgs ( iconArgs ) ;
87
87
var transform = objectWithKey ( 'transform' , typeof props . transform === 'string' ? _fontawesomeSvgCore . parse . transform ( props . transform ) : props . transform ) ;
88
88
var mask = objectWithKey ( 'mask' , normalizeIconArgs ( maskArgs ) ) ;
89
- var renderedIcon = ( 0 , _fontawesomeSvgCore . icon ) ( iconLookup , _objectSpread ( _objectSpread ( { } , transform ) , mask ) ) ;
89
+ var renderedIcon = ( 0 , _fontawesomeSvgCore . icon ) ( iconLookup , _objectSpread ( _objectSpread ( _objectSpread ( { } , transform ) , mask ) , { } , {
90
+ maskId : maskId
91
+ } ) ) ;
90
92
91
93
if ( ! renderedIcon ) {
92
- ( 0 , _logger [ "default" ] ) ( " ERROR: icon not found for icon = " , iconArgs ) ;
94
+ ( 0 , _logger [ "default" ] ) ( ' ERROR: icon not found for icon = ' , iconArgs ) ;
93
95
return null ;
94
96
}
95
97
@@ -98,44 +100,29 @@ function FontAwesomeIcon(props) {
98
100
var color = props . color || style . color || DEFAULT_COLOR ; // This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
99
101
// `null` value will result in using the primary color, at 40% opacity
100
102
101
- var secondaryColor = props . secondaryColor || null ; // Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
103
+ var secondaryColor = props . secondaryColor || color ; // Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
102
104
103
- var secondaryOpacity = props . secondaryOpacity || ( secondaryColor ? 1 : DEFAULT_SECONDARY_OPACITY ) ; // To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
105
+ var secondaryOpacity = props . secondaryOpacity || DEFAULT_SECONDARY_OPACITY ; // To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
104
106
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
105
107
// In other words, we don't want color (for example) to be specified via two different inputs.
106
108
107
109
var styleColor = style . color ,
108
- modifiedStyle = _objectWithoutProperties ( style , [ "color" ] ) ;
110
+ modifiedStyle = _objectWithoutProperties ( style , _excluded ) ;
109
111
110
112
var resolvedHeight , resolvedWidth ;
111
113
112
114
if ( height || width ) {
113
- if ( size ) {
114
- console . warn ( "DEPRECATION: height and width props on " . concat ( FontAwesomeIcon . displayName , " have been deprecated. " ) + "Since you've also provided a size prop, we'll use it to override the height and width props given. " + "You should probably go ahead and remove the height and width props to avoid confusion and resolve this warning." ) ;
115
- resolvedHeight = resolvedWidth = size ;
116
- } else {
117
- console . warn ( "DEPRECATION: height and width props on " . concat ( FontAwesomeIcon . displayName , " have been deprecated. " ) + "Use the size prop instead." ) ;
118
- resolvedHeight = height || DEFAULT_HEIGHT ;
119
- resolvedWidth = width || DEFAULT_WIDTH ;
120
- }
115
+ throw new Error ( "Prop height and width for component " . concat ( FontAwesomeIcon . displayName , " have been deprecated. " ) + "Use the size prop instead like <" . concat ( FontAwesomeIcon . displayName , " size={" ) . concat ( width , "} />." ) ) ;
121
116
} else {
122
117
resolvedHeight = resolvedWidth = size || DEFAULT_SIZE ;
123
118
}
124
119
125
- var extraProps = {
126
- height : resolvedHeight ,
127
- width : resolvedWidth ,
128
- fill : color ,
129
- secondaryFill : secondaryColor ,
130
- secondaryOpacity : secondaryOpacity ,
131
- style : modifiedStyle
132
- } ;
133
- Object . keys ( props ) . forEach ( function ( key ) {
134
- if ( ! FontAwesomeIcon . defaultProps . hasOwnProperty ( key ) ) {
135
- extraProps [ key ] = props [ key ] ;
136
- }
137
- } ) ;
138
- return convertCurry ( _abstract [ 0 ] , extraProps ) ;
120
+ var rootAttributes = _abstract [ 0 ] . attributes ;
121
+ rootAttributes . height = resolvedHeight ;
122
+ rootAttributes . width = resolvedWidth ;
123
+ rootAttributes . style = modifiedStyle ;
124
+ replaceCurrentColor ( _abstract [ 0 ] , color , secondaryColor , secondaryOpacity ) ;
125
+ return convertCurry ( _abstract [ 0 ] ) ;
139
126
}
140
127
141
128
FontAwesomeIcon . displayName = 'FontAwesomeIcon' ;
@@ -151,20 +138,50 @@ FontAwesomeIcon.propTypes = {
151
138
} ) , _propTypes [ "default" ] . array ] ) ,
152
139
icon : _propTypes [ "default" ] . oneOfType ( [ _propTypes [ "default" ] . object , _propTypes [ "default" ] . array , _propTypes [ "default" ] . string ] ) ,
153
140
mask : _propTypes [ "default" ] . oneOfType ( [ _propTypes [ "default" ] . object , _propTypes [ "default" ] . array , _propTypes [ "default" ] . string ] ) ,
141
+ maskId : _propTypes [ "default" ] . string ,
154
142
transform : _propTypes [ "default" ] . oneOfType ( [ _propTypes [ "default" ] . string , _propTypes [ "default" ] . object ] )
155
143
} ;
156
144
FontAwesomeIcon . defaultProps = {
157
145
icon : null ,
158
146
mask : null ,
147
+ maskId : null ,
159
148
transform : null ,
160
149
style : { } ,
161
150
color : null ,
162
151
secondaryColor : null ,
163
152
secondaryOpacity : null ,
164
- height : undefined ,
165
- width : undefined // Once the deprecation of height and width props is complete, let's put the real default prop value for size here.
166
- // For now, adding it breaks the default/override logic for height/width/size.
167
-
153
+ size : DEFAULT_SIZE
168
154
} ;
169
155
170
- var convertCurry = _converter [ "default" ] . bind ( null , _react [ "default" ] . createElement ) ;
156
+ var convertCurry = _converter [ "default" ] . bind ( null , _react [ "default" ] . createElement ) ;
157
+
158
+ function replaceCurrentColor ( obj , primaryColor , secondaryColor , secondaryOpacity ) {
159
+ obj . children . forEach ( function ( child , childIndex ) {
160
+ replaceFill ( child , primaryColor , secondaryColor , secondaryOpacity ) ;
161
+
162
+ if ( Object . prototype . hasOwnProperty . call ( child , 'attributes' ) ) {
163
+ replaceFill ( child . attributes , primaryColor , secondaryColor , secondaryOpacity ) ;
164
+ }
165
+
166
+ if ( Array . isArray ( child . children ) && child . children . length > 0 ) {
167
+ replaceCurrentColor ( child , primaryColor , secondaryColor , secondaryOpacity ) ;
168
+ }
169
+ } ) ;
170
+ }
171
+
172
+ function replaceFill ( obj , primaryColor , secondaryColor , secondaryOpacity ) {
173
+ if ( hasPropertySetToValue ( obj , 'fill' , 'currentColor' ) ) {
174
+ if ( hasPropertySetToValue ( obj , 'class' , 'fa-primary' ) ) {
175
+ obj . fill = primaryColor ;
176
+ } else if ( hasPropertySetToValue ( obj , 'class' , 'fa-secondary' ) ) {
177
+ obj . fill = secondaryColor ;
178
+ obj . fillOpacity = secondaryOpacity ;
179
+ } else {
180
+ obj . fill = primaryColor ;
181
+ }
182
+ }
183
+ }
184
+
185
+ function hasPropertySetToValue ( obj , property , value ) {
186
+ return Object . prototype . hasOwnProperty . call ( obj , property ) && obj [ property ] === value ;
187
+ }
0 commit comments