Skip to content

Commit ea7551d

Browse files
authored
fixed "Warning: FontAwesomeIcon: Support for defaultProps will be removed from memo components in a future major release. Use JavaScript default parameters instead." (#171)
1 parent af36b13 commit ea7551d

File tree

2 files changed

+45
-43
lines changed

2 files changed

+45
-43
lines changed

dist/components/FontAwesomeIcon.js

+24-23
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,29 @@ function normalizeIconArgs(icon) {
7474
}
7575

7676
function FontAwesomeIcon(props) {
77-
var iconArgs = props.icon,
78-
maskArgs = props.mask,
79-
maskId = props.maskId,
80-
height = props.height,
81-
width = props.width,
82-
size = props.size;
83-
84-
var style = _reactNative.StyleSheet.flatten(props.style);
77+
var _props = _objectSpread({
78+
icon: null,
79+
mask: null,
80+
maskId: null,
81+
transform: null,
82+
style: {},
83+
color: null,
84+
secondaryColor: null,
85+
secondaryOpacity: null,
86+
size: DEFAULT_SIZE
87+
}, props);
88+
89+
var iconArgs = _props.icon,
90+
maskArgs = _props.mask,
91+
maskId = _props.maskId,
92+
height = _props.height,
93+
width = _props.width,
94+
size = _props.size;
95+
96+
var style = _reactNative.StyleSheet.flatten(_props.style);
8597

8698
var iconLookup = normalizeIconArgs(iconArgs);
87-
var transform = objectWithKey('transform', typeof props.transform === 'string' ? _fontawesomeSvgCore.parse.transform(props.transform) : props.transform);
99+
var transform = objectWithKey('transform', typeof _props.transform === 'string' ? _fontawesomeSvgCore.parse.transform(_props.transform) : _props.transform);
88100
var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
89101
var renderedIcon = (0, _fontawesomeSvgCore.icon)(iconLookup, _objectSpread(_objectSpread(_objectSpread({}, transform), mask), {}, {
90102
maskId: maskId
@@ -97,12 +109,12 @@ function FontAwesomeIcon(props) {
97109

98110
var _abstract = renderedIcon["abstract"]; // This is the color that will be passed to the "fill" prop of the Svg element
99111

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)
112+
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)
101113
// `null` value will result in using the primary color, at 40% opacity
102114

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
115+
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
104116

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
117+
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
106118
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
107119
// In other words, we don't want color (for example) to be specified via two different inputs.
108120

@@ -141,17 +153,6 @@ FontAwesomeIcon.propTypes = {
141153
maskId: _propTypes["default"].string,
142154
transform: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].object])
143155
};
144-
FontAwesomeIcon.defaultProps = {
145-
icon: null,
146-
mask: null,
147-
maskId: null,
148-
transform: null,
149-
style: {},
150-
color: null,
151-
secondaryColor: null,
152-
secondaryOpacity: null,
153-
size: DEFAULT_SIZE
154-
};
155156

156157
var convertCurry = _converter["default"].bind(null, _react["default"].createElement);
157158

src/components/FontAwesomeIcon.js

+21-20
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,28 @@ function normalizeIconArgs (icon) {
3939
}
4040

4141
export default function FontAwesomeIcon (props) {
42-
const { icon: iconArgs, mask: maskArgs, maskId, height, width, size } = props
43-
const style = StyleSheet.flatten(props.style)
42+
const _props = {
43+
icon: null,
44+
mask: null,
45+
maskId: null,
46+
transform: null,
47+
style: {},
48+
color: null,
49+
secondaryColor: null,
50+
secondaryOpacity: null,
51+
size: DEFAULT_SIZE,
52+
...props
53+
};
54+
55+
const { icon: iconArgs, mask: maskArgs, maskId, height, width, size } = _props
56+
const style = StyleSheet.flatten(_props.style)
4457

4558
const iconLookup = normalizeIconArgs(iconArgs)
4659
const transform = objectWithKey(
4760
'transform',
48-
typeof props.transform === 'string'
49-
? parse.transform(props.transform)
50-
: props.transform
61+
typeof _props.transform === 'string'
62+
? parse.transform(_props.transform)
63+
: _props.transform
5164
)
5265
const mask = objectWithKey('mask', normalizeIconArgs(maskArgs))
5366

@@ -65,14 +78,14 @@ export default function FontAwesomeIcon (props) {
6578
const { abstract } = renderedIcon
6679

6780
// This is the color that will be passed to the "fill" prop of the Svg element
68-
const color = props.color || style.color || DEFAULT_COLOR
81+
const color = _props.color || style.color || DEFAULT_COLOR
6982

7083
// This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
7184
// `null` value will result in using the primary color, at 40% opacity
72-
const secondaryColor = props.secondaryColor || color
85+
const secondaryColor = _props.secondaryColor || color
7386

7487
// Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
75-
const secondaryOpacity = props.secondaryOpacity || DEFAULT_SECONDARY_OPACITY
88+
const secondaryOpacity = _props.secondaryOpacity || DEFAULT_SECONDARY_OPACITY
7689

7790
// To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
7891
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
@@ -137,18 +150,6 @@ FontAwesomeIcon.propTypes = {
137150
transform: PropTypes.oneOfType([PropTypes.string, PropTypes.object])
138151
}
139152

140-
FontAwesomeIcon.defaultProps = {
141-
icon: null,
142-
mask: null,
143-
maskId: null,
144-
transform: null,
145-
style: {},
146-
color: null,
147-
secondaryColor: null,
148-
secondaryOpacity: null,
149-
size: DEFAULT_SIZE
150-
}
151-
152153
const convertCurry = convert.bind(null, React.createElement)
153154

154155
function replaceCurrentColor (obj, primaryColor, secondaryColor, secondaryOpacity) {

0 commit comments

Comments
 (0)