forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-implemented autosuggestions component for the compose form
Fix mastodon#205, fix mastodon#156, fix mastodon#124
- Loading branch information
Showing
16 changed files
with
787 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
app/assets/javascripts/components/components/autosuggest_textarea.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
import AutosuggestAccountContainer from '../features/compose/containers/autosuggest_account_container'; | ||
import ImmutablePropTypes from 'react-immutable-proptypes'; | ||
|
||
const textAtCursorMatchesToken = (str, caretPosition) => { | ||
let word; | ||
|
||
let left = str.slice(0, caretPosition).search(/\S+$/); | ||
let right = str.slice(caretPosition).search(/\s/); | ||
|
||
if (right < 0) { | ||
word = str.slice(left); | ||
} else { | ||
word = str.slice(left, right + caretPosition); | ||
} | ||
|
||
if (!word || word.trim().length < 2 || word[0] !== '@') { | ||
return [null, null]; | ||
} | ||
|
||
word = word.trim().toLowerCase().slice(1); | ||
|
||
if (word.length > 0) { | ||
return [left + 1, word]; | ||
} else { | ||
return [null, null]; | ||
} | ||
}; | ||
|
||
const AutosuggestTextarea = React.createClass({ | ||
|
||
propTypes: { | ||
value: React.PropTypes.string, | ||
suggestions: ImmutablePropTypes.list, | ||
disabled: React.PropTypes.bool, | ||
placeholder: React.PropTypes.string, | ||
onSuggestionSelected: React.PropTypes.func.isRequired, | ||
onSuggestionsClearRequested: React.PropTypes.func.isRequired, | ||
onSuggestionsFetchRequested: React.PropTypes.func.isRequired, | ||
onChange: React.PropTypes.func.isRequired | ||
}, | ||
|
||
getInitialState () { | ||
return { | ||
suggestionsHidden: false, | ||
selectedSuggestion: 0, | ||
lastToken: null, | ||
tokenStart: 0 | ||
}; | ||
}, | ||
|
||
onChange (e) { | ||
const [ tokenStart, token ] = textAtCursorMatchesToken(e.target.value, e.target.selectionStart); | ||
|
||
if (token != null && this.state.lastToken !== token) { | ||
this.setState({ lastToken: token, selectedSuggestion: 0, tokenStart }); | ||
this.props.onSuggestionsFetchRequested(token); | ||
} else if (token === null && this.state.lastToken != null) { | ||
this.setState({ lastToken: null }); | ||
this.props.onSuggestionsClearRequested(); | ||
} | ||
|
||
this.props.onChange(e); | ||
}, | ||
|
||
onKeyDown (e) { | ||
const { suggestions, disabled } = this.props; | ||
const { selectedSuggestion, suggestionsHidden } = this.state; | ||
|
||
if (disabled) { | ||
e.preventDefault(); | ||
return; | ||
} | ||
|
||
switch(e.key) { | ||
case 'Escape': | ||
if (!suggestionsHidden) { | ||
e.preventDefault(); | ||
this.setState({ suggestionsHidden: true }); | ||
} | ||
|
||
break; | ||
case 'ArrowDown': | ||
if (suggestions.size > 0 && !suggestionsHidden) { | ||
e.preventDefault(); | ||
this.setState({ selectedSuggestion: Math.min(selectedSuggestion + 1, suggestions.size - 1) }); | ||
} | ||
|
||
break; | ||
case 'ArrowUp': | ||
if (suggestions.size > 0 && !suggestionsHidden) { | ||
e.preventDefault(); | ||
this.setState({ selectedSuggestion: Math.max(selectedSuggestion - 1, 0) }); | ||
} | ||
|
||
break; | ||
case 'Enter': | ||
case 'Tab': | ||
// Select suggestion | ||
if (this.state.lastToken != null && suggestions.size > 0 && !suggestionsHidden) { | ||
e.preventDefault(); | ||
e.stopPropagation(); | ||
this.props.onSuggestionSelected(this.state.tokenStart, this.state.lastToken, suggestions.get(selectedSuggestion)); | ||
} | ||
|
||
break; | ||
} | ||
}, | ||
|
||
onSuggestionClick (suggestion, e) { | ||
e.preventDefault(); | ||
this.props.onSuggestionSelected(this.state.tokenStart, this.state.lastToken, suggestion); | ||
}, | ||
|
||
componentWillReceiveProps (nextProps) { | ||
if (nextProps.suggestions !== this.props.suggestions && nextProps.suggestions.size > 0 && this.state.suggestionsHidden) { | ||
this.setState({ suggestionsHidden: false }); | ||
} | ||
}, | ||
|
||
setTextarea (c) { | ||
this.textarea = c; | ||
}, | ||
|
||
render () { | ||
const { value, suggestions, disabled, placeholder } = this.props; | ||
const { suggestionsHidden, selectedSuggestion } = this.state; | ||
|
||
return ( | ||
<div className='autosuggest-textarea'> | ||
<textarea | ||
ref={this.setTextarea} | ||
className='autosuggest-textarea__textarea' | ||
disabled={disabled} | ||
placeholder={placeholder} | ||
value={value} | ||
onChange={this.onChange} | ||
onKeyDown={this.onKeyDown} | ||
/> | ||
|
||
<div style={{ display: (suggestions.size > 0 && !suggestionsHidden) ? 'block' : 'none' }} className='autosuggest-textarea__suggestions'> | ||
{suggestions.map((suggestion, i) => ( | ||
<div key={suggestion} className={`autosuggest-textarea__suggestions__item ${i === selectedSuggestion ? 'selected' : ''}`} onClick={this.onSuggestionClick.bind(this, suggestion)}> | ||
<AutosuggestAccountContainer id={suggestion} /> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
}); | ||
|
||
export default AutosuggestTextarea; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.