By: Brandon Him - brh55
Contributors: N/A
react: *
react-native: *
This problem rised mainly from the issue of developing open-source components, where vast users have different preferred components.
The result is the typical "duck" problem -- numerous types and variations available, but they are simply ducks (π¦π¦) at the end of the day.
The only obvious caveat is ensuring that the third-party component utilizes the same interface, otherwise you'll have unexpected behaviors.
- Create a conditional to determine if a component has been injected. In this example, we shall assume that a custom image component will be passed through a
customComponent
prop
// ... omit standard code above
render() {
const imageProps = {
uri: this.props.uri
};
if (this.props.customComponent) {
const CustomImageComponent = this.props.customComponent;
// Assign it to a variable to make it easier for referencing
return (
<CustomImageComponent {...imageProps}>
);
}
// Image becomes the default rendered
return (
<Image {...imageProps}/>
)
}
- In order to handle additional custom properties, we will assume that we are using
customComponentProps
to pass along properties.
// ... omit standard code above
render() {
const imageProps = {
uri: this.props.uri
};
if (this.props.customComponent) {
const CustomImageComponent = this.props.customComponent;
const customProps = this.props.customComponentProps;
// Assign it to a variable to make it easier for referencing,
// Note: Ensure the defaultProps are assigned first, before customComponentProps
return (
<CustomImageComponent
{...imageProps}
{...customComponentProps}>
);
}
return (
<Image {...imageProps}/>
)
}
- Now your component should render a default component, but also accept a custom component as well as props.
<YourComponent
customComponent={AwesomeImage}
customComponentProps={AwesomeImageProps}
/>
βοΈ Pro-Tip
Useprop-types
to provide some basic type-checking for your component.func
for the third-party component and.object
for the propertiesYourComponent.propTypes = { customComponent: PropTypes.func, customComponentProps: PropTypes.object }
Feel free to use react-native-injectable-component
. The module can easily be plugged into an existing project. The module also accounts for any nested children, checks for accurate types, as well as ensure default properties are assigned prior to custom component props.
Sample usage
<Injector
defaultComponent={Image}
defaultProps={imageProps}
injectant={props.customComponent}
injectantProps={props.customComponentProps}
/>
- prop-types - Runtime type checking for React props and similar objects