lbry-desktop/src/ui/component/common/icon.jsx

81 lines
1.9 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2018-11-26 02:21:25 +01:00
import * as ICONS from 'constants/icons';
import * as FEATHER_ICONS from 'react-feather';
2018-03-26 23:32:43 +02:00
import React from 'react';
import Tooltip from 'component/common/tooltip';
2019-04-01 01:04:01 +02:00
import classnames from 'classnames';
import { customIcons } from './icon-custom';
2018-03-26 23:32:43 +02:00
// It would be nice to standardize this somehow
// These are copied from `scss/vars`, can they both come from the same source?
2018-03-26 23:32:43 +02:00
const RED_COLOR = '#e2495e';
const GREEN_COLOR = '#44b098';
2018-09-12 18:42:15 +02:00
const BLUE_COLOR = '#49b2e2';
2018-03-26 23:32:43 +02:00
type Props = {
icon: string,
tooltip?: string, // tooltip direction
iconColor?: string,
2018-10-09 17:01:54 +02:00
size?: number,
2019-04-01 01:04:01 +02:00
className?: string,
2018-03-26 23:32:43 +02:00
};
class IconComponent extends React.PureComponent<Props> {
getTooltip = (icon: string) => {
switch (icon) {
2018-11-26 02:21:25 +01:00
case ICONS.FEATURED:
return __('Featured content. Earn rewards for watching.');
2018-11-26 02:21:25 +01:00
case ICONS.LOCAL:
return __('This file is downloaded.');
default:
return null;
}
};
getIconColor = (color: string) => {
switch (color) {
case 'red':
return RED_COLOR;
case 'green':
return GREEN_COLOR;
2018-09-12 18:42:15 +02:00
case 'blue':
return BLUE_COLOR;
default:
return undefined;
}
};
2018-03-26 23:32:43 +02:00
render() {
2019-04-01 01:04:01 +02:00
const { icon, tooltip, iconColor, size, className } = this.props;
const Icon = customIcons[this.props.icon] || FEATHER_ICONS[this.props.icon];
2019-03-27 05:40:02 +01:00
if (!Icon) {
return null;
}
2018-03-26 23:32:43 +02:00
let color;
if (iconColor) {
color = this.getIconColor(iconColor);
2018-03-26 23:32:43 +02:00
}
const iconSize = size || 14;
2018-03-26 23:32:43 +02:00
let tooltipText;
if (tooltip) {
tooltipText = this.getTooltip(icon);
}
2019-05-07 23:38:29 +02:00
const inner = <Icon size={iconSize} className={classnames(`icon icon--${icon}`, className)} color={color} />;
2018-06-21 00:15:57 +02:00
return tooltipText ? (
<Tooltip icon body={tooltipText} direction={tooltip}>
{inner}
</Tooltip>
) : (
inner
);
2018-03-26 23:32:43 +02:00
}
}
export default IconComponent;