Files
weave-scope/client/app/scripts/components/node-details/node-details-info.js
2018-03-21 10:41:38 -07:00

84 lines
2.4 KiB
JavaScript

import React from 'react';
import { connect } from 'react-redux';
import { Map as makeMap } from 'immutable';
import MatchedText from '../matched-text';
import ShowMore from '../show-more';
import { formatDataType } from '../../utils/string-utils';
class NodeDetailsInfo extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
expanded: false
};
this.handleClickMore = this.handleClickMore.bind(this);
}
handleClickMore() {
const expanded = !this.state.expanded;
this.setState({expanded});
}
render() {
const { timestamp, matches = makeMap() } = this.props;
let rows = (this.props.rows || []);
let notShown = 0;
const prime = rows.filter(row => row.priority < 10);
if (!this.state.expanded && prime.length < rows.length) {
// check if there is a search match in non-prime fields
const hasNonPrimeMatch = matches && rows.filter(row => row.priority >= 10
&& matches.has(row.id)).length > 0;
if (!hasNonPrimeMatch) {
notShown = rows.length - prime.length;
rows = prime;
}
}
return (
<div className="node-details-info">
{rows.map((field) => {
const { value, title } = formatDataType(field, timestamp);
return (
<div className="node-details-info-field" key={field.id}>
<div className="node-details-info-field-label truncate" title={field.label}>
{field.label}
</div>
<div className="node-details-info-field-value truncate" title={title}>
{field.dataType === 'link' ?
<a
rel="noopener noreferrer"
target="_blank"
className="truncate node-details-table-node-link"
href={value}>
{value}
</a> :
<MatchedText
text={value}
truncate={field.truncate}
match={matches.get(field.id)} />
}
</div>
</div>
);
})}
<ShowMore
handleClick={this.handleClickMore}
collection={this.props.rows}
expanded={this.state.expanded}
notShown={notShown} />
</div>
);
}
}
function mapStateToProps(state) {
return {
timestamp: state.get('pausedAt'),
};
}
export default connect(mapStateToProps)(NodeDetailsInfo);