mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
* Fix node-details-test for search * Label spacing and matched text truncation * Delete pinned search on backspace, add hint for metrics, escape % in URL * Fix text-bg on node highlight * Added tests for search-utils * Fix matching of other topologies, added comment re quick clear * s/cx/classnames/ * Ignore MoC keys when search in focus, blur on Esc * Fixes search term highlighting on-hover * Fix SVG exports * Fine-tuned search item rendering * Fixed search highlighting in the details panel * Dont throb node on hover * Hotkey for search: '/' * Keep focus on search when tabbing away from the browser * bring hovered node to top * background for search results on hover * fixed height for foreign object to prevent layout glitches * Dont blur focused nodes on search * More robust metric matchers * More meaningful search hints
98 lines
3.0 KiB
JavaScript
98 lines
3.0 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import classnames from 'classnames';
|
|
|
|
import { clickTopology } from '../actions/app-actions';
|
|
|
|
class Topologies extends React.Component {
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.onTopologyClick = this.onTopologyClick.bind(this);
|
|
}
|
|
|
|
onTopologyClick(ev) {
|
|
ev.preventDefault();
|
|
this.props.clickTopology(ev.currentTarget.getAttribute('rel'));
|
|
}
|
|
|
|
renderSubTopology(subTopology) {
|
|
const isActive = subTopology === this.props.currentTopology;
|
|
const topologyId = subTopology.get('id');
|
|
const searchMatches = this.props.searchNodeMatches.get(subTopology.get('id'));
|
|
const searchMatchCount = searchMatches ? searchMatches.size : 0;
|
|
const title = this.renderTitle(subTopology, searchMatchCount);
|
|
const className = classnames('topologies-sub-item', {
|
|
'topologies-sub-item-active': isActive,
|
|
'topologies-sub-item-matched': searchMatchCount
|
|
});
|
|
|
|
return (
|
|
<div className={className} title={title} key={topologyId} rel={topologyId}
|
|
onClick={this.onTopologyClick}>
|
|
<div className="topologies-sub-item-label">
|
|
{subTopology.get('name')}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderTitle(topology, searchMatchCount) {
|
|
let title = `Nodes: ${topology.getIn(['stats', 'node_count'])}\n`
|
|
+ `Connections: ${topology.getIn(['stats', 'node_count'])}`;
|
|
if (searchMatchCount) {
|
|
title = `${title}\nSearch Matches: ${searchMatchCount}`;
|
|
}
|
|
return title;
|
|
}
|
|
|
|
renderTopology(topology) {
|
|
const isActive = topology === this.props.currentTopology;
|
|
const searchMatches = this.props.searchNodeMatches.get(topology.get('id'));
|
|
const searchMatchCount = searchMatches ? searchMatches.size : 0;
|
|
const className = classnames('topologies-item-main', {
|
|
'topologies-item-main-active': isActive,
|
|
'topologies-item-main-matched': searchMatchCount
|
|
});
|
|
const topologyId = topology.get('id');
|
|
const title = this.renderTitle(topology, searchMatchCount);
|
|
|
|
return (
|
|
<div className="topologies-item" key={topologyId}>
|
|
<div className={className} title={title} rel={topologyId} onClick={this.onTopologyClick}>
|
|
<div className="topologies-item-label">
|
|
{topology.get('name')}
|
|
</div>
|
|
</div>
|
|
<div className="topologies-sub">
|
|
{topology.has('sub_topologies')
|
|
&& topology.get('sub_topologies').map(subTop => this.renderSubTopology(subTop))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="topologies">
|
|
{this.props.currentTopology && this.props.topologies.map(
|
|
topology => this.renderTopology(topology)
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
topologies: state.get('topologies'),
|
|
searchNodeMatches: state.get('searchNodeMatches'),
|
|
currentTopology: state.get('currentTopology')
|
|
};
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
{ clickTopology }
|
|
)(Topologies);
|