Merge pull request #401 from mistydemeo/new_toot_cursor_position
Automatically position cursor when writing a reply toot
This commit is contained in:
commit
26ec24fa1d
1 changed files with 7 additions and 0 deletions
|
@ -86,6 +86,13 @@ const ComposeForm = React.createClass({
|
||||||
|
|
||||||
componentDidUpdate (prevProps) {
|
componentDidUpdate (prevProps) {
|
||||||
if (prevProps.in_reply_to !== this.props.in_reply_to) {
|
if (prevProps.in_reply_to !== this.props.in_reply_to) {
|
||||||
|
// If replying to zero or one users, places the cursor at the end of the textbox.
|
||||||
|
// If 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 selectionStart = this.props.text.search(/\s/) + 1;
|
||||||
|
let selectionEnd = this.props.text.length;
|
||||||
|
this.autosuggestTextarea.textarea.setSelectionRange(selectionStart, selectionEnd);
|
||||||
|
|
||||||
this.autosuggestTextarea.textarea.focus();
|
this.autosuggestTextarea.textarea.focus();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue