summaryrefslogtreecommitdiffstats
path: root/webapp/components/suggestion/suggestion_list.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/suggestion/suggestion_list.jsx')
-rw-r--r--webapp/components/suggestion/suggestion_list.jsx21
1 files changed, 21 insertions, 0 deletions
diff --git a/webapp/components/suggestion/suggestion_list.jsx b/webapp/components/suggestion/suggestion_list.jsx
index 52b85b2f5..7c746ac2a 100644
--- a/webapp/components/suggestion/suggestion_list.jsx
+++ b/webapp/components/suggestion/suggestion_list.jsx
@@ -5,6 +5,7 @@ import $ from 'jquery';
import ReactDOM from 'react-dom';
import * as GlobalActions from 'actions/global_actions.jsx';
import SuggestionStore from 'stores/suggestion_store.jsx';
+import {FormattedMessage} from 'react-intl';
import React from 'react';
@@ -92,19 +93,39 @@ export default class SuggestionList extends React.Component {
}
}
+ renderDivider(type) {
+ return (
+ <div
+ key={type + '-divider'}
+ className='suggestion-list__divider'
+ >
+ <span>
+ <FormattedMessage id={'suggestion.' + type}/>
+ </span>
+ </div>
+ );
+ }
+
render() {
if (this.state.items.length === 0) {
return null;
}
const items = [];
+ let lastType;
for (let i = 0; i < this.state.items.length; i++) {
+ const item = this.state.items[i];
const term = this.state.terms[i];
const isSelection = term === this.state.selection;
// ReactComponent names need to be upper case when used in JSX
const Component = this.state.components[i];
+ if (item.type !== lastType) {
+ items.push(this.renderDivider(item.type));
+ lastType = item.type;
+ }
+
items.push(
<Component
key={term}