Skip to content

Commit

Permalink
Use forwardRef rather than custom forwardedRef prop (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmsmith committed Jun 17, 2022
1 parent 6e1663b commit e32a0cb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 27 deletions.
5 changes: 2 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference types="react" />
import { CSSProperties, SVGAttributes } from 'react'
import { CSSProperties, SVGAttributes, RefAttributes } from 'react'
import {
Transform,
IconProp,
Expand All @@ -20,8 +20,7 @@ export type Props = FontAwesomeIconProps
// This is identical to the version of Omit in Typescript 3.5. It is included for compatibility with older versions of Typescript.
type BackwardCompatibleOmit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;

export interface FontAwesomeIconProps extends BackwardCompatibleOmit<SVGAttributes<SVGSVGElement>, 'children' | 'mask' | 'transform'> {
forwardedRef?: ((e: any) => void) | React.MutableRefObject<any> | null
export interface FontAwesomeIconProps extends BackwardCompatibleOmit<SVGAttributes<SVGSVGElement>, 'children' | 'mask' | 'transform'>, RefAttributes<SVGSVGElement> {
icon: IconProp
mask?: IconProp
maskId?: string
Expand Down
14 changes: 5 additions & 9 deletions index.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function camelize(string) {
return string.substr(0, 1).toLowerCase() + string.substr(1);
}

var _excluded$1 = ["style"];
var _excluded = ["style"];

function capitalize(val) {
return val.charAt(0).toUpperCase() + val.slice(1);
Expand Down Expand Up @@ -256,7 +256,7 @@ function convert(createElement, element) {

var _extraProps$style = extraProps.style,
existingStyle = _extraProps$style === void 0 ? {} : _extraProps$style,
remaining = _objectWithoutProperties(extraProps, _excluded$1);
remaining = _objectWithoutProperties(extraProps, _excluded);

mixins.attrs['style'] = _objectSpread2(_objectSpread2({}, mixins.attrs['style']), existingStyle);
/* eslint-enable */
Expand Down Expand Up @@ -328,11 +328,7 @@ function objectWithKey(key, value) {
return Array.isArray(value) && value.length > 0 || !Array.isArray(value) && value ? _defineProperty({}, key, value) : {};
}

var _excluded = ["forwardedRef"];
function FontAwesomeIcon(_ref) {
var forwardedRef = _ref.forwardedRef,
props = _objectWithoutProperties(_ref, _excluded);

var FontAwesomeIcon = /*#__PURE__*/React.forwardRef(function (props, ref) {
var iconArgs = props.icon,
maskArgs = props.mask,
symbol = props.symbol,
Expand All @@ -358,7 +354,7 @@ function FontAwesomeIcon(_ref) {

var abstract = renderedIcon.abstract;
var extraProps = {
ref: forwardedRef
ref: ref
};
Object.keys(props).forEach(function (key) {
// eslint-disable-next-line no-prototype-builtins
Expand All @@ -367,7 +363,7 @@ function FontAwesomeIcon(_ref) {
}
});
return convertCurry(abstract[0], extraProps);
}
});
FontAwesomeIcon.displayName = 'FontAwesomeIcon';
FontAwesomeIcon.propTypes = {
beat: PropTypes.bool,
Expand Down
14 changes: 5 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
return string.substr(0, 1).toLowerCase() + string.substr(1);
}

var _excluded$1 = ["style"];
var _excluded = ["style"];

function capitalize(val) {
return val.charAt(0).toUpperCase() + val.slice(1);
Expand Down Expand Up @@ -263,7 +263,7 @@

var _extraProps$style = extraProps.style,
existingStyle = _extraProps$style === void 0 ? {} : _extraProps$style,
remaining = _objectWithoutProperties(extraProps, _excluded$1);
remaining = _objectWithoutProperties(extraProps, _excluded);

mixins.attrs['style'] = _objectSpread2(_objectSpread2({}, mixins.attrs['style']), existingStyle);
/* eslint-enable */
Expand Down Expand Up @@ -335,11 +335,7 @@
return Array.isArray(value) && value.length > 0 || !Array.isArray(value) && value ? _defineProperty({}, key, value) : {};
}

var _excluded = ["forwardedRef"];
function FontAwesomeIcon(_ref) {
var forwardedRef = _ref.forwardedRef,
props = _objectWithoutProperties(_ref, _excluded);

var FontAwesomeIcon = /*#__PURE__*/React__default["default"].forwardRef(function (props, ref) {
var iconArgs = props.icon,
maskArgs = props.mask,
symbol = props.symbol,
Expand All @@ -365,7 +361,7 @@

var abstract = renderedIcon.abstract;
var extraProps = {
ref: forwardedRef
ref: ref
};
Object.keys(props).forEach(function (key) {
// eslint-disable-next-line no-prototype-builtins
Expand All @@ -374,7 +370,7 @@
}
});
return convertCurry(abstract[0], extraProps);
}
});
FontAwesomeIcon.displayName = 'FontAwesomeIcon';
FontAwesomeIcon.propTypes = {
beat: PropTypes__default["default"].bool,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "~1 || ~6",
"react": ">=16.x"
"react": ">=16.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
Expand Down
8 changes: 5 additions & 3 deletions src/components/FontAwesomeIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import objectWithKey from '../utils/object-with-key'
import PropTypes from 'prop-types'
import React from 'react'

export default function FontAwesomeIcon({ forwardedRef, ...props }) {
const FontAwesomeIcon = React.forwardRef((props, ref) => {
const {
icon: iconArgs,
mask: maskArgs,
Expand Down Expand Up @@ -48,7 +48,7 @@ export default function FontAwesomeIcon({ forwardedRef, ...props }) {
}

const { abstract } = renderedIcon
const extraProps = { ref: forwardedRef }
const extraProps = { ref }

Object.keys(props).forEach(key => {
// eslint-disable-next-line no-prototype-builtins
Expand All @@ -58,7 +58,7 @@ export default function FontAwesomeIcon({ forwardedRef, ...props }) {
})

return convertCurry(abstract[0], extraProps)
}
})

FontAwesomeIcon.displayName = 'FontAwesomeIcon'

Expand Down Expand Up @@ -172,4 +172,6 @@ FontAwesomeIcon.defaultProps = {
swapOpacity: false
}

export default FontAwesomeIcon

const convertCurry = convert.bind(null, React.createElement)
4 changes: 2 additions & 2 deletions src/components/__tests__/FontAwesomeIcon.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ describe('using ref', () => {
const spy = jest.fn(element => element)

mount(
{ icon: faCoffee, forwardedRef: spy },
{ icon: faCoffee, ref: spy },
{
createNodeMock: () => node
}
Expand All @@ -486,7 +486,7 @@ describe('using ref', () => {
const setForwardedRef = element => (forwardedRef = element)

mount(
{ icon: faCoffee, forwardedRef: setForwardedRef },
{ icon: faCoffee, ref: setForwardedRef },
{
createNodeMock: () => node
}
Expand Down

0 comments on commit e32a0cb

Please sign in to comment.