Revert "Merge branch 'compose_caret_to_end' into 'master'"
This reverts commit886e877996
, reversing changes made tob6a7404031
.
This commit is contained in:
parent
438d8009d4
commit
d9e6efbe79
3 changed files with 10 additions and 18 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,4 +6,3 @@
|
|||
/.eslintcache
|
||||
/.env
|
||||
/deploy.sh
|
||||
/.vs/
|
||||
|
|
|
@ -44,7 +44,6 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
|
||||
state = {
|
||||
composeFocused: false,
|
||||
caretPosition: 0,
|
||||
}
|
||||
|
||||
static contextTypes = {
|
||||
|
@ -87,9 +86,6 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
|
||||
handleChange = (e) => {
|
||||
this.props.onChange(e.target.value);
|
||||
this.setState({
|
||||
caretPosition: e.target.selectionStart,
|
||||
});
|
||||
}
|
||||
|
||||
handleComposeFocus = () => {
|
||||
|
@ -184,24 +180,22 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
// - Replying to zero or one users, places the cursor at the end of the textbox.
|
||||
// - Replying to more than one user, selects any usernames past the first;
|
||||
// this provides a convenient shortcut to drop everyone else from the conversation.
|
||||
let selectionEnd, selectionStart;
|
||||
if (this.props.focusDate !== prevProps.focusDate) {
|
||||
let selectionEnd, selectionStart;
|
||||
|
||||
if (this.props.preselectDate !== prevProps.preselectDate) {
|
||||
selectionEnd = this.props.text.length;
|
||||
selectionEnd = this.props.text.length;
|
||||
selectionStart = this.props.text.search(/\s/) + 1;
|
||||
} else if (typeof this.state.caretPosition === 'number') {
|
||||
selectionStart = this.state.caretPosition;
|
||||
selectionEnd = this.state.caretPosition;
|
||||
} else if (typeof this.props.caretPosition === 'number') {
|
||||
selectionStart = this.props.caretPosition;
|
||||
selectionEnd = this.props.caretPosition;
|
||||
} else {
|
||||
selectionEnd = this.props.text.length;
|
||||
selectionStart = selectionEnd;
|
||||
}
|
||||
|
||||
this.autosuggestTextarea.textarea.setSelectionRange(selectionStart, selectionEnd);
|
||||
this.autosuggestTextarea.textarea.focus();
|
||||
} else {
|
||||
if (this.props.preselectDate !== this.props.focusDate) {
|
||||
selectionStart = selectionEnd = this.props.text.length + 1;
|
||||
this.autosuggestTextarea.textarea.setSelectionRange(selectionStart, selectionEnd);
|
||||
this.autosuggestTextarea.textarea.focus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -237,8 +237,7 @@ export default function compose(state = initialState, action) {
|
|||
case COMPOSE_CHANGE:
|
||||
return state
|
||||
.set('text', action.text)
|
||||
.set('idempotencyKey', uuid())
|
||||
.set('focusDate', new Date());
|
||||
.set('idempotencyKey', uuid());
|
||||
case COMPOSE_COMPOSING_CHANGE:
|
||||
return state.set('is_composing', action.value);
|
||||
case COMPOSE_REPLY:
|
||||
|
|
Loading…
Reference in a new issue