blob: ddfdabc7daf593052b0428399383238e8868036f (
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
|
import PropTypes from 'prop-types';
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
export default class Suggestion extends React.Component {
static get propTypes() {
return {
item: PropTypes.object.isRequired,
term: PropTypes.string.isRequired,
matchedPretext: PropTypes.string.isRequired,
isSelection: PropTypes.bool,
onClick: PropTypes.func
};
}
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
handleClick(e) {
e.preventDefault();
this.props.onClick(this.props.term, this.props.matchedPretext);
}
}
|