aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/presentational/Result.js
blob: a30cf528881d81f8b0ce705dcb7fb6e1cb41461f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import users from '../../users';

import IconFromUserType from './IconFromUserType';

class Result extends React.Component {
  static propTypes = {
    userId: PropTypes.string.isRequired,
    isSelected: PropTypes.bool.isRequired,
    onClick: PropTypes.func.isRequired,
  };

  render() {
    return (
      // eslint-disable-next-line
      <div
        className={classnames('search__result', {
          'search__result--selected': this.props.isSelected,
        })}
        onClick={this.props.onClick}
      >
        <div className="search__icon-wrapper">
          <IconFromUserType userType={users.byId[this.props.userId].type} />
        </div>
        <div className="search__result__text">{users.byId[this.props.userId].value}</div>
      </div>
    );
  }
}

export default Result;