2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-04-25 11:37:51 -04:00
|
|
|
import { length } from 'stringz';
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class CharacterCounter extends React.PureComponent {
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
text: PropTypes.string.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
max: PropTypes.number.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-04-17 04:34:33 -04:00
|
|
|
checkRemainingText (diff) {
|
2017-04-30 08:58:33 -04:00
|
|
|
if (diff < 0) {
|
2017-04-22 22:26:55 -04:00
|
|
|
return <span className='character-counter character-counter--over'>{diff}</span>;
|
2017-04-17 04:34:33 -04:00
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
return <span className='character-counter'>{diff}</span>;
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-17 04:34:33 -04:00
|
|
|
|
2016-08-25 13:52:55 -04:00
|
|
|
render () {
|
2017-04-25 11:37:51 -04:00
|
|
|
const diff = this.props.max - length(this.props.text);
|
2016-09-25 09:26:56 -04:00
|
|
|
|
2017-04-17 04:34:33 -04:00
|
|
|
return this.checkRemainingText(diff);
|
2016-08-25 13:52:55 -04:00
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|