1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-03 20:45:27 +02:00

Initial commit

This commit is contained in:
Maksim Eltyshev 2019-08-31 04:07:25 +05:00
commit 5ffef61fe7
613 changed files with 91659 additions and 0 deletions

View file

@ -0,0 +1,78 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import LabelColors from '../../constants/LabelColors';
import styles from './Label.module.css';
const SIZES = {
TINY: 'tiny',
SMALL: 'small',
MEDIUM: 'medium',
};
// TODO: move to styles
const STYLES = {
tiny: {
fontSize: '12px',
lineHeight: '20px',
maxWidth: '176px',
padding: '0px 6px',
},
small: {
fontSize: '12px',
lineHeight: '20px',
maxWidth: '176px',
padding: '2px 8px',
},
medium: {
fontSize: '14px',
lineHeight: '32px',
maxWidth: '230px',
padding: '0 12px',
},
};
const Label = React.memo(({
name, color, size, isDisabled, onClick,
}) => {
const style = {
...STYLES[size],
background: LabelColors.MAP[color],
};
const contentNode = (
<div
title={name}
className={classNames(styles.wrapper, onClick && styles.hoverable)}
style={style}
>
{name}
</div>
);
return onClick ? (
<button type="button" disabled={isDisabled} className={styles.button} onClick={onClick}>
{contentNode}
</button>
) : (
contentNode
);
});
Label.propTypes = {
name: PropTypes.string.isRequired,
color: PropTypes.oneOf(LabelColors.KEYS).isRequired, // TODO: without color
size: PropTypes.oneOf(Object.values(SIZES)),
isDisabled: PropTypes.bool,
onClick: PropTypes.func,
};
Label.defaultProps = {
size: SIZES.MEDIUM,
isDisabled: false,
onClick: undefined,
};
export default Label;