bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/text-input/component.jsx

86 lines
1.8 KiB
React
Raw Normal View History

import React, { PureComponent } from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import PropTypes from 'prop-types';
import logger from '/imports/startup/client/logger';
2021-10-27 03:50:59 +08:00
import Styled from './styles';
const propTypes = {
placeholder: PropTypes.string,
send: PropTypes.func.isRequired,
};
const defaultProps = {
placeholder: '',
send: () => logger.warn({ logCode: 'text_input_send_function' }, `Missing`),
};
const messages = defineMessages({
sendLabel: {
id: 'app.textInput.sendLabel',
description: 'Text input send button label',
},
});
class TextInput extends PureComponent {
constructor(props) {
super(props);
this.state = { message: '' };
}
handleOnChange(e) {
const message = e.target.value;
this.setState({ message });
}
handleOnKeyDown(e) {
if (e.keyCode === 13 && e.shiftKey === false) {
e.preventDefault();
this.handleOnClick();
}
}
handleOnClick() {
const { send } = this.props;
const { message } = this.state;
send(message);
this.setState({ message: '' });
}
render() {
const {
intl,
maxLength,
placeholder,
} = this.props;
const { message } = this.state;
return (
2021-10-27 03:50:59 +08:00
<Styled.Wrapper>
<Styled.TextArea
maxLength={maxLength}
onChange={(e) => this.handleOnChange(e)}
onKeyDown={(e) => this.handleOnKeyDown(e)}
placeholder={placeholder}
value={message}
/>
2021-10-27 03:50:59 +08:00
<Styled.TextInputButton
circle
color="primary"
hideLabel
icon="send"
label={intl.formatMessage(messages.sendLabel)}
onClick={() => this.handleOnClick()}
/>
2021-10-27 03:50:59 +08:00
</Styled.Wrapper>
);
}
}
TextInput.propTypes = propTypes;
TextInput.defaultProps = defaultProps;
export default injectIntl(TextInput);