2017-12-24 06:16:45 +00:00
|
|
|
// Package imports.
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
|
|
|
// Components.
|
|
|
|
import ComposerTextareaSuggestionsItem from './item';
|
|
|
|
|
|
|
|
// The component.
|
|
|
|
export default function ComposerTextareaSuggestions ({
|
|
|
|
hidden,
|
|
|
|
onSuggestionClick,
|
|
|
|
suggestions,
|
|
|
|
value,
|
|
|
|
}) {
|
|
|
|
|
2017-12-29 22:55:06 +00:00
|
|
|
// The result.
|
2017-12-24 06:16:45 +00:00
|
|
|
return (
|
2017-12-29 22:55:06 +00:00
|
|
|
<div
|
|
|
|
className='composer--textarea--suggestions'
|
|
|
|
hidden={hidden || suggestions.isEmpty()}
|
|
|
|
>
|
2017-12-24 06:16:45 +00:00
|
|
|
{!hidden ? suggestions.map(
|
|
|
|
(suggestion, index) => (
|
|
|
|
<ComposerTextareaSuggestionsItem
|
|
|
|
index={index}
|
|
|
|
key={typeof suggestion === 'object' ? suggestion.id : suggestion}
|
|
|
|
onClick={onSuggestionClick}
|
|
|
|
selected={index === value}
|
|
|
|
suggestion={suggestion}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ComposerTextareaSuggestions.propTypes = {
|
|
|
|
hidden: PropTypes.bool,
|
|
|
|
onSuggestionClick: PropTypes.func,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
value: PropTypes.string,
|
|
|
|
};
|