2017-06-01 17:18:06 +03:00
|
|
|
/*
|
2017-06-01 19:29:40 +03:00
|
|
|
Copyright 2016 Aviral Dasgupta
|
2017-06-01 17:18:06 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-07-03 19:45:13 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2016-08-17 14:57:19 +03:00
|
|
|
import classNames from 'classnames';
|
2016-07-03 19:45:13 +03:00
|
|
|
|
2016-08-17 14:57:19 +03:00
|
|
|
/* These were earlier stateless functional components but had to be converted
|
|
|
|
since we need to use refs/findDOMNode to access the underlying DOM node to focus the correct completion,
|
|
|
|
something that is not entirely possible with stateless functional components. One could
|
|
|
|
presumably wrap them in a <div> before rendering but I think this is the better way to do it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export class TextualCompletion extends React.Component {
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
title,
|
|
|
|
subtitle,
|
|
|
|
description,
|
|
|
|
className,
|
2017-10-11 19:56:17 +03:00
|
|
|
...restProps
|
2016-08-17 14:57:19 +03:00
|
|
|
} = this.props;
|
|
|
|
return (
|
|
|
|
<div className={classNames('mx_Autocomplete_Completion_block', className)} {...restProps}>
|
2017-10-11 19:56:17 +03:00
|
|
|
<span className="mx_Autocomplete_Completion_title">{ title }</span>
|
|
|
|
<span className="mx_Autocomplete_Completion_subtitle">{ subtitle }</span>
|
|
|
|
<span className="mx_Autocomplete_Completion_description">{ description }</span>
|
2016-08-17 14:57:19 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TextualCompletion.propTypes = {
|
2017-12-26 04:03:18 +03:00
|
|
|
title: PropTypes.string,
|
|
|
|
subtitle: PropTypes.string,
|
|
|
|
description: PropTypes.string,
|
|
|
|
className: PropTypes.string,
|
2016-08-17 14:57:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export class PillCompletion extends React.Component {
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
title,
|
|
|
|
subtitle,
|
|
|
|
description,
|
|
|
|
initialComponent,
|
|
|
|
className,
|
2017-10-11 19:56:17 +03:00
|
|
|
...restProps
|
2016-08-17 14:57:19 +03:00
|
|
|
} = this.props;
|
|
|
|
return (
|
|
|
|
<div className={classNames('mx_Autocomplete_Completion_pill', className)} {...restProps}>
|
2017-10-11 19:56:17 +03:00
|
|
|
{ initialComponent }
|
|
|
|
<span className="mx_Autocomplete_Completion_title">{ title }</span>
|
|
|
|
<span className="mx_Autocomplete_Completion_subtitle">{ subtitle }</span>
|
|
|
|
<span className="mx_Autocomplete_Completion_description">{ description }</span>
|
2016-08-17 14:57:19 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|
2016-08-17 14:57:19 +03:00
|
|
|
PillCompletion.propTypes = {
|
2017-12-26 04:03:18 +03:00
|
|
|
title: PropTypes.string,
|
|
|
|
subtitle: PropTypes.string,
|
|
|
|
description: PropTypes.string,
|
|
|
|
initialComponent: PropTypes.element,
|
|
|
|
className: PropTypes.string,
|
2016-08-17 14:57:19 +03:00
|
|
|
};
|