forked from vergnet/application-amicale
61 lines
1.9 KiB
JavaScript
61 lines
1.9 KiB
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import {Icon} from "native-base";
|
|
import ThemeManager from '../utils/ThemeManager';
|
|
|
|
type Props = {
|
|
active: boolean,
|
|
icon: string,
|
|
color: ?string,
|
|
fontSize: number,
|
|
width: number | string,
|
|
}
|
|
|
|
/**
|
|
* Custom component defining a material icon using native base
|
|
*
|
|
* @prop active {boolean} Whether to set the icon color to active
|
|
* @prop icon {string} The icon string to use from MaterialCommunityIcons
|
|
* @prop color {string} The icon color. Use default theme color if unspecified
|
|
* @prop fontSize {number} The icon size. Use 26 if unspecified
|
|
* @prop width {number} The icon width. Use 30 if unspecified
|
|
*/
|
|
export default class CustomMaterialIcon extends React.Component<Props> {
|
|
|
|
static defaultProps = {
|
|
active: false,
|
|
color: undefined,
|
|
fontSize: 26,
|
|
width: 30,
|
|
};
|
|
|
|
shouldComponentUpdate(nextProps: Props): boolean {
|
|
return nextProps.icon !== this.props.icon ||
|
|
nextProps.active !== this.props.active ||
|
|
nextProps.width !== this.props.width ||
|
|
nextProps.fontSize !== this.props.fontSize ||
|
|
nextProps.color !== this.props.color;
|
|
}
|
|
|
|
render() {
|
|
// console.log("rendering icon " + this.props.icon);
|
|
return (
|
|
<Icon
|
|
active
|
|
name={this.props.icon}
|
|
type={'MaterialCommunityIcons'}
|
|
style={{
|
|
color:
|
|
this.props.color !== undefined ?
|
|
this.props.color :
|
|
this.props.active ?
|
|
ThemeManager.getCurrentThemeVariables().brandPrimary :
|
|
ThemeManager.getCurrentThemeVariables().customMaterialIconColor,
|
|
fontSize: this.props.fontSize,
|
|
width: this.props.width
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|