mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 03:01:11 +00:00
84 lines
2.4 KiB
JavaScript
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);
|