1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-18 08:16:07 +00:00
Files
seahub/frontend/src/components/search/search-result-item.js
2024-11-29 14:42:08 +08:00

54 lines
1.6 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import { Utils } from '../../utils/utils';
const propTypes = {
item: PropTypes.object.isRequired,
onItemClickHandler: PropTypes.func.isRequired,
isHighlight: PropTypes.bool,
setRef: PropTypes.func,
};
class SearchResultItem extends React.Component {
static defaultProps = {
setRef: () => {},
};
onClickHandler = () => {
this.props.onItemClickHandler(this.props.item);
};
render() {
let item = this.props.item;
let folderIconUrl = item.link_content ? Utils.getFolderIconUrl(false, 192) : Utils.getDefaultLibIconUrl();
let fileIconUrl = item.is_dir ? folderIconUrl : Utils.getFileIconUrl(item.name);
let showName = item.repo_name + '/' + item.link_content;
showName = showName.endsWith('/') ? showName.slice(0, showName.length - 1) : showName;
if (item.thumbnail_url) {
fileIconUrl = item.thumbnail_url;
}
return (
<li
className={classnames('search-result-item', { 'search-result-item-highlight': this.props.isHighlight })}
onClick={this.onClickHandler}
ref={ref => this.props.setRef(ref)}
>
<img className={item.link_content ? 'item-img' : 'lib-item-img'} src={fileIconUrl} alt="" />
<div className="item-content">
<div className="item-name ellipsis">{item.name}</div>
<div className="item-link ellipsis">{showName}</div>
<div className="item-text ellipsis" dangerouslySetInnerHTML={{ __html: item.content }}></div>
</div>
</li>
);
}
}
SearchResultItem.propTypes = propTypes;
export default SearchResultItem;