summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorNick Frazier <nrflaw@gmail.com>2016-12-06 18:49:36 -0500
committerJoram Wilander <jwawilander@gmail.com>2016-12-06 18:49:36 -0500
commited15f10b7952e1143b49621dd978a2175435cbd0 (patch)
tree7a49b099de69f3257dbf548066884db8dc71ffb2 /webapp/components
parent3ea49822b3dce879e7ca4dd878d40a17f82f528c (diff)
downloadchat-ed15f10b7952e1143b49621dd978a2175435cbd0.tar.gz
chat-ed15f10b7952e1143b49621dd978a2175435cbd0.tar.bz2
chat-ed15f10b7952e1143b49621dd978a2175435cbd0.zip
[PLT-4318] Display a message when post is over 4000 characters (#4687)
* test changes * added functionality * css updates * additional css updates * i18n updates * textbox cleanup * var naming tweak * replaced jQuery with React-based UI changes
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/create_post.jsx29
-rw-r--r--webapp/components/textbox.jsx1
2 files changed, 24 insertions, 6 deletions
diff --git a/webapp/components/create_post.jsx b/webapp/components/create_post.jsx
index f2b0a7631..6bd5f0293 100644
--- a/webapp/components/create_post.jsx
+++ b/webapp/components/create_post.jsx
@@ -25,7 +25,7 @@ import PreferenceStore from 'stores/preference_store.jsx';
import Constants from 'utils/constants.jsx';
-import {FormattedHTMLMessage} from 'react-intl';
+import {FormattedHTMLMessage, FormattedMessage} from 'react-intl';
import {browserHistory} from 'react-router/es6';
const Preferences = Constants.Preferences;
@@ -95,8 +95,11 @@ export default class CreatePost extends React.Component {
return;
}
- if (post.message.length > Constants.CHARACTER_LIMIT) {
- this.setState({postError: `Post length must be less than ${Constants.CHARACTER_LIMIT} characters.`});
+ if (this.state.postError) {
+ this.setState({errorClass: 'animation--highlight'});
+ setTimeout(() => {
+ this.setState({errorClass: null});
+ }, 1000);
return;
}
@@ -216,6 +219,21 @@ export default class CreatePost extends React.Component {
const draft = PostStore.getCurrentDraft();
draft.message = message;
PostStore.storeCurrentDraft(draft);
+
+ if (message.length > Constants.CHARACTER_LIMIT) {
+ const errorMessage = (
+ <FormattedMessage
+ id='create_post.error_message'
+ defaultMessage='Your message is too long. Character count: {length}/{limit}'
+ values={{
+ length: message.length,
+ limit: Constants.CHARACTER_LIMIT
+ }}
+ />);
+ this.setState({postError: errorMessage});
+ } else {
+ this.setState({postError: null});
+ }
}
handleUploadClick() {
@@ -474,7 +492,8 @@ export default class CreatePost extends React.Component {
let postError = null;
if (this.state.postError) {
- postError = <label className='control-label'>{this.state.postError}</label>;
+ const postErrorClass = 'control-label post-error' + (this.state.errorClass ? (' ' + this.state.errorClass) : '');
+ postError = <label className={postErrorClass}>{this.state.postError}</label>;
}
let preview = null;
@@ -549,8 +568,8 @@ export default class CreatePost extends React.Component {
channelId={this.state.channelId}
parentId=''
/>
- {preview}
{postError}
+ {preview}
{serverError}
</div>
</div>
diff --git a/webapp/components/textbox.jsx b/webapp/components/textbox.jsx
index 6ba925ed7..b9b000282 100644
--- a/webapp/components/textbox.jsx
+++ b/webapp/components/textbox.jsx
@@ -205,7 +205,6 @@ export default class Textbox extends React.Component {
className={`form-control custom-textarea ${this.state.connection}`}
type='textarea'
spellCheck='true'
- maxLength={Constants.MAX_POST_LEN}
placeholder={this.props.createMessage}
onChange={this.props.onChange}
onKeyPress={this.handleKeyPress}