Commit bcb56af6 authored by zhengjiangtao's avatar zhengjiangtao

更改自建系统样式

parent 024c1a16
...@@ -340,6 +340,7 @@ ...@@ -340,6 +340,7 @@
.ant-table-pagination { .ant-table-pagination {
float: right; float: right;
display: inline; display: inline;
width: 100%;
} }
} }
.ant-table-title { .ant-table-title {
...@@ -454,7 +455,8 @@ ...@@ -454,7 +455,8 @@
} }
.ant-pagination-options { .ant-pagination-options {
margin-top: 5px; margin-top: -12%;
margin-left: 88%;
.ant-select-selection { .ant-select-selection {
height: 25px; height: 25px;
...@@ -462,6 +464,7 @@ ...@@ -462,6 +464,7 @@
background: $biz-title-color; background: $biz-title-color;
border-color: $core-border-color; border-color: $core-border-color;
.ant-select-arrow { .ant-select-arrow {
color: $biz-table-font-color; color: $biz-table-font-color;
} }
......
...@@ -9,7 +9,6 @@ const goObj = go.GraphObject.make; ...@@ -9,7 +9,6 @@ const goObj = go.GraphObject.make;
const deviceSource = '/src/assets/bizView/selfsupport'; const deviceSource = '/src/assets/bizView/selfsupport';
class TopologyComponent extends Component { class TopologyComponent extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = {
...@@ -27,7 +26,7 @@ class TopologyComponent extends Component { ...@@ -27,7 +26,7 @@ class TopologyComponent extends Component {
componentDidUpdate(prevProps, prevState) { componentDidUpdate(prevProps, prevState) {
const { topologyData } = this.props; const { topologyData } = this.props;
const { nodeData, linkData } = topologyData; const { nodeData, linkData } = topologyData;
if (!deepEqual(prevProps.topologyData,this.props.topologyData)) { if (!deepEqual(prevProps.topologyData, this.props.topologyData)) {
this.diagram.model = new go.GraphLinksModel(nodeData, linkData); this.diagram.model = new go.GraphLinksModel(nodeData, linkData);
this.initTop = 0; this.initTop = 0;
this.initLeft = 0; this.initLeft = 0;
...@@ -37,7 +36,9 @@ class TopologyComponent extends Component { ...@@ -37,7 +36,9 @@ class TopologyComponent extends Component {
// this function is the Node.dragComputation, to limit the movement of the parts // this function is the Node.dragComputation, to limit the movement of the parts
stayInFixedArea = (part, pt, gridpt) => { stayInFixedArea = (part, pt, gridpt) => {
let diagram = part.diagram; let diagram = part.diagram;
if (diagram === null) {return pt;} if (diagram === null) {
return pt;
}
// compute the document area without padding // compute the document area without padding
let v = diagram.documentBounds.copy(); let v = diagram.documentBounds.copy();
v.subtractMargin(diagram.padding); v.subtractMargin(diagram.padding);
...@@ -48,41 +49,41 @@ class TopologyComponent extends Component { ...@@ -48,41 +49,41 @@ class TopologyComponent extends Component {
let x = Math.max(v.x, Math.min(pt.x, v.right - b.width)) + (loc.x - b.x); let x = Math.max(v.x, Math.min(pt.x, v.right - b.width)) + (loc.x - b.x);
let y = Math.max(v.y, Math.min(pt.y, v.bottom - b.height)) + (loc.y - b.y); let y = Math.max(v.y, Math.min(pt.y, v.bottom - b.height)) + (loc.y - b.y);
return new go.Point(x, y); return new go.Point(x, y);
} };
// 选择节点 // 选择节点
nodeSelectionChanged = (node) => { nodeSelectionChanged = node => {
this.props.nodeSelectionChanged(node); this.props.nodeSelectionChanged(node);
} };
// 设备资源图片 // 设备资源图片
getDeviceSource = (v) => { getDeviceSource = v => {
return `${deviceSource}/${v}.png`; return `${deviceSource}/${v}.png`;
} };
// 告警图片 // 告警图片
getWarnPic = (v) => { getWarnPic = v => {
if (v) { if (v) {
return '/src/assets/bizView/netTopology/alarm.png'; return '/src/assets/bizView/netTopology/alarm.png';
} }
} };
// 告警高亮 // 告警高亮
warnHighlights = (d,v) => { warnHighlights = (d, v) => {
if (d.warnState) { if (d.warnState) {
this.showWarnHighlights(d, v); this.showWarnHighlights(d, v);
return d.text; return d.text;
} }
return d.text; return d.text;
} };
// 获取线颜色 // 获取线颜色
getLinkColor = (v) => { getLinkColor = v => {
if (v) { if (v) {
return '#FF0000'; return '#FF0000';
} }
return '#00FFFF'; return '#00FFFF';
} };
showWarnHighlights = (d, v) => { showWarnHighlights = (d, v) => {
const oldDom = this[d.key]; const oldDom = this[d.key];
...@@ -104,7 +105,7 @@ class TopologyComponent extends Component { ...@@ -104,7 +105,7 @@ class TopologyComponent extends Component {
customBox.style.height = '100px'; customBox.style.height = '100px';
customBox.style.backgroundPosition = 'center'; customBox.style.backgroundPosition = 'center';
customBox.id = d.key; customBox.id = d.key;
customBox.setAttribute('class','amos-help-tip-pulse-second'); customBox.setAttribute('class', 'amos-help-tip-pulse-second');
this.diagram.div.appendChild(customBox); this.diagram.div.appendChild(customBox);
} }
}; };
...@@ -113,32 +114,38 @@ class TopologyComponent extends Component { ...@@ -113,32 +114,38 @@ class TopologyComponent extends Component {
updateTopo = () => { updateTopo = () => {
const { nodeDataArray } = this.updateTopologyData; const { nodeDataArray } = this.updateTopologyData;
let pos; let pos;
nodeDataArray.filter(item => item.warnState).map(item => { nodeDataArray
.filter(item => item.warnState)
.map(item => {
pos = this.diagram.transformDocToView(go.Point.parse(item.loc)); pos = this.diagram.transformDocToView(go.Point.parse(item.loc));
this[item.key].style.left = `${pos.x + 18}px`; this[item.key].style.left = `${pos.x + 18}px`;
this[item.key].style.top = `${pos.y + 20}px`; this[item.key].style.top = `${pos.y + 20}px`;
}); });
} };
getNodeDetail = (id) => { getNodeDetail = id => {
nodeDetailTopoAction(id).then(data => { nodeDetailTopoAction(id).then(data => {
this.setState({ this.setState({
detailData: data detailData: data
}); });
}); });
} };
renderDetail = () => { renderDetail = () => {
const { detailData } = this.state; const { detailData } = this.state;
return (<div id="toolTipDIV" className="tooltip-content" style={{ position: 'absolute', zIndex: 1000, display: 'none' }}> return (
<div id="toolTipDIV" className="tooltip-content" style={{ position: 'absolute', zIndex: 1000, display: 'none' }}>
{detailData.map(item => { {detailData.map(item => {
return (<div key={item.name} className="tooltip-item"> return (
<div key={item.name} className="tooltip-item">
<div className="item-name">{item.name}: </div> <div className="item-name">{item.name}: </div>
<div className="item-value">{item.value}</div> <div className="item-value">{item.value}</div>
</div>); </div>
);
})} })}
</div>); </div>
} );
};
// 提示框 // 提示框
showToolTip = (obj, diagram, tool) => { showToolTip = (obj, diagram, tool) => {
...@@ -148,12 +155,18 @@ class TopologyComponent extends Component { ...@@ -148,12 +155,18 @@ class TopologyComponent extends Component {
toolTipDIV.style.top = `${pt.y}px`; toolTipDIV.style.top = `${pt.y}px`;
toolTipDIV.style.display = 'block'; toolTipDIV.style.display = 'block';
this.getNodeDetail(obj.data.id); this.getNodeDetail(obj.data.id);
} };
//设置椭圆宽度
setEllipseWidth = v => {
let width = v === '西安中心' ? 500 : 300;
return width;
};
hideToolTip = (diagram, tool) => { hideToolTip = (diagram, tool) => {
let toolTipDIV = document.getElementById('toolTipDIV'); let toolTipDIV = document.getElementById('toolTipDIV');
toolTipDIV.style.display = 'none'; toolTipDIV.style.display = 'none';
} };
renderCanvas = () => { renderCanvas = () => {
const { topologyData } = this.props; const { topologyData } = this.props;
...@@ -162,7 +175,7 @@ class TopologyComponent extends Component { ...@@ -162,7 +175,7 @@ class TopologyComponent extends Component {
show: this.showToolTip, show: this.showToolTip,
hide: this.hideToolTip hide: this.hideToolTip
}); });
this.customEditor = goObj(go.HTMLInfo,{ this.customEditor = goObj(go.HTMLInfo, {
show: this.showWarnHighlights show: this.showWarnHighlights
}); });
this.diagram = goObj(go.Diagram, this.refs.goJsDiv, { this.diagram = goObj(go.Diagram, this.refs.goJsDiv, {
...@@ -175,53 +188,78 @@ class TopologyComponent extends Component { ...@@ -175,53 +188,78 @@ class TopologyComponent extends Component {
'animationManager.isEnabled': false, // 过渡动画 'animationManager.isEnabled': false, // 过渡动画
'textEditingTool.defaultTextEditor': this.customEditor, 'textEditingTool.defaultTextEditor': this.customEditor,
// fixedBounds: new go.Rect(0, 0, this.refs.goJsDiv.clientWidth, this.refs.goJsDiv.clientHeight), // fixedBounds: new go.Rect(0, 0, this.refs.goJsDiv.clientWidth, this.refs.goJsDiv.clientHeight),
ModelChanged: (e) => { // just for demonstration purposes, ModelChanged: e => {
if (e.isTransactionFinished) { // show the model data in the page's TextArea // just for demonstration purposes,
if (e.isTransactionFinished) {
// show the model data in the page's TextArea
// console.log(e.model.toJson(), 'model'); // console.log(e.model.toJson(), 'model');
this.updateTopologyData = JSON.parse(e.model.toJson()); this.updateTopologyData = JSON.parse(e.model.toJson());
this.props.nodeChange(e); this.props.nodeChange(e);
} }
}, },
SelectionMoved: (e) => { SelectionMoved: e => {
setTimeout(()=> { setTimeout(() => {
this.updateTopo(); this.updateTopo();
},0); }, 0);
}, },
ViewportBoundsChanged: () => { ViewportBoundsChanged: () => {
setTimeout(()=> { setTimeout(() => {
this.updateTopo(); this.updateTopo();
},0); }, 0);
} }
}); });
this.diagram.nodeTemplateMap.add(
this.diagram.nodeTemplateMap.add('Circle', 'Circle',
goObj(go.Node, 'Vertical', goObj(
go.Node,
'Vertical',
{ {
selectionObjectName: 'ICON', selectionObjectName: 'ICON',
locationObjectName: 'ICON' locationObjectName: 'ICON'
}, },
new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify), new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify),
goObj(go.Panel, 'Auto', goObj(go.Panel, 'Auto', goObj(go.Shape, 'Circle', { name: 'ICON', portId: '', width: 22, height: 22, strokeWidth: 0, fill: '#009dd9' })),
goObj(go.Shape, 'Circle', { name: 'ICON',portId: '', goObj(go.TextBlock, { margin: 15, cursor: 'pointer', font: '15px sans-serif' }, new go.Binding('text', 'text')),
width: 22, height: 22, strokeWidth: 0,fill: '#009dd9' },
),
),
goObj(go.TextBlock,
{ margin: 15,cursor: 'pointer',font: '15px sans-serif' },
new go.Binding('text', 'text' )),
{ {
selectionAdornmentTemplate: selectionAdornmentTemplate: goObj(
goObj(go.Adornment, 'Auto', go.Adornment,
goObj(go.Shape, 'Circle', 'Auto',
{ fill: null, stroke: '#fbfb7b', strokeWidth: 3 }), goObj(go.Shape, 'Circle', { fill: null, stroke: '#fbfb7b', strokeWidth: 3 }),
goObj(go.Placeholder) goObj(go.Placeholder)
) // end Adornment ) // end Adornment
}
)
);
this.diagram.nodeTemplateMap.add(
'Shape',
goObj(
go.Node,
'Vertical',
new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify),
goObj(
go.Shape,
'Rectangle',
{
name: 'SHAPE',
fill: '#5BE3FF',
stroke: '#5BE3FF',
strokeWidth: 1,
width: 500,
height: 24
}, },
)); new go.Binding('width', 'text', v => this.setEllipseWidth(v))
),
goObj(go.TextBlock, '无', { textAlign: 'left', margin: -25, stroke: '#fff', font: 'bold 18px Microsoft YaHei UI' }, new go.Binding('text'))
)
);
this.diagram.nodeTemplateMap.add('Picture', this.diagram.nodeTemplateMap.add(
goObj(go.Node, 'Vertical', 'Picture',
goObj(
go.Node,
'Vertical',
{ {
locationSpot: go.Spot.Center, locationSpot: go.Spot.Center,
locationObjectName: 'ICON', locationObjectName: 'ICON',
...@@ -231,27 +269,31 @@ class TopologyComponent extends Component { ...@@ -231,27 +269,31 @@ class TopologyComponent extends Component {
toolTip: myToolTip toolTip: myToolTip
}, },
new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify), new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify),
goObj(go.Panel,'Spot', goObj(
goObj(go.Shape, 'Rectangle', go.Panel,
{ fill: 'lightgreen', stroke: null, width: 1, height: 1 }), 'Spot',
goObj(go.Picture, goObj(go.Shape, 'Rectangle', { fill: 'lightgreen', stroke: null, width: 1, height: 1 }),
goObj(
go.Picture,
{ {
width: 65, width: 65,
height: 45, height: 45,
alignment: new go.Spot(1, 0, 100 ,0 ) alignment: new go.Spot(1, 0, 100, 0)
}, },
new go.Binding('source','warnState',(v) => this.getWarnPic(v)) new go.Binding('source', 'warnState', v => this.getWarnPic(v))
), ),
goObj(go.TextBlock, goObj(
go.TextBlock,
{ {
alignment: new go.Spot(1, 0, 100 ,-1), alignment: new go.Spot(1, 0, 100, -1),
stroke: 'white', stroke: 'white',
font: '15px sans-serif' font: '15px sans-serif'
}, },
new go.Binding('text', 'warnMessage') new go.Binding('text', 'warnMessage')
)
), ),
), goObj(
goObj(go.Picture, go.Picture,
{ {
margin: 0, margin: 0,
name: 'ICON', name: 'ICON',
...@@ -260,24 +302,23 @@ class TopologyComponent extends Component { ...@@ -260,24 +302,23 @@ class TopologyComponent extends Component {
cursor: 'pointer', cursor: 'pointer',
portId: '' portId: ''
}, },
new go.Binding('source','source',(v) => this.getDeviceSource(v)) new go.Binding('source', 'source', v => this.getDeviceSource(v))
), ),
goObj(go.TextBlock, '无', goObj(
go.TextBlock,
'无',
{ margin: 3, stroke: 'rgba(63,63,63,1)', font: '14px sans-serif' }, { margin: 3, stroke: 'rgba(63,63,63,1)', font: '14px sans-serif' },
new go.Binding('text','', (v,d) => this.warnHighlights(v,d)), new go.Binding('text', '', (v, d) => this.warnHighlights(v, d))
), ),
{ {
selectionAdornmentTemplate: selectionAdornmentTemplate: goObj(go.Adornment, 'Auto', goObj(go.Shape, { fill: null, stroke: '#fbfb7b', strokeWidth: 3 }), goObj(go.Placeholder)) // end Adornment
goObj(go.Adornment, 'Auto',
goObj(go.Shape,
{ fill: null, stroke: '#fbfb7b', strokeWidth: 3 }),
goObj(go.Placeholder)
) // end Adornment
} }
) )
); );
this.diagram.groupTemplate = goObj(go.Group, 'Vertical', this.diagram.groupTemplate = goObj(
go.Group,
'Vertical',
{ {
resizable: true, resizable: true,
locationObjectName: 'SHAPE', locationObjectName: 'SHAPE',
...@@ -287,7 +328,8 @@ class TopologyComponent extends Component { ...@@ -287,7 +328,8 @@ class TopologyComponent extends Component {
// selectionChanged: this.nodeSelectionChanged // selectionChanged: this.nodeSelectionChanged
}, },
new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify), new go.Binding('position', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify),
goObj(go.TextBlock, // group title goObj(
go.TextBlock, // group title
{ {
width: 100, width: 100,
height: 24, height: 24,
...@@ -298,8 +340,11 @@ class TopologyComponent extends Component { ...@@ -298,8 +340,11 @@ class TopologyComponent extends Component {
textAlign: 'center', textAlign: 'center',
verticalAlignment: go.Spot.Center verticalAlignment: go.Spot.Center
}, },
new go.Binding('text')), new go.Binding('text')
goObj(go.Shape, 'Rectangle', ),
goObj(
go.Shape,
'Rectangle',
{ {
name: 'SHAPE', name: 'SHAPE',
parameter1: 14, parameter1: 14,
...@@ -307,27 +352,24 @@ class TopologyComponent extends Component { ...@@ -307,27 +352,24 @@ class TopologyComponent extends Component {
stroke: 'rgba(28,154,210,1)', stroke: 'rgba(28,154,210,1)',
strokeWidth: 1 strokeWidth: 1
}, },
new go.Binding('desiredSize', 'size', go.Size.parse).makeTwoWay(go.Size.stringify), new go.Binding('desiredSize', 'size', go.Size.parse).makeTwoWay(go.Size.stringify)
) )
); );
this.diagram.linkTemplate = this.diagram.linkTemplate = goObj(go.Link, goObj(go.Shape, { strokeWidth: 3 }, new go.Binding('stroke', 'warnState', v => this.getLinkColor(v))));
goObj(go.Link,
goObj(go.Shape, { strokeWidth: 3 },
new go.Binding('stroke', 'warnState', (v) => this.getLinkColor(v))
)
);
this.diagram.model = new go.GraphLinksModel(nodeData, linkData); this.diagram.model = new go.GraphLinksModel(nodeData, linkData);
} };
render() { render() {
const { className,style, topologyData } = this.props; const { className, style, topologyData } = this.props;
const { nodeData = [] } = topologyData || {}; const { nodeData = [] } = topologyData || {};
return ( return (
<div ref="goJsDiv" style={style} className={classnames('topology-net', className)}> <div ref="goJsDiv" style={style} className={classnames('topology-net', className)}>
{ {nodeData
nodeData.filter(e => e.warnState).map(e => <div className="amos-help-tip-pulse-second warn-node" ref={node => this[e.key] = node} key={e.key} id={e.key} />) .filter(e => e.warnState)
} .map(e => (
<div className="amos-help-tip-pulse-second warn-node" ref={node => (this[e.key] = node)} key={e.key} id={e.key} />
))}
{nodeData.length > 0 && this.renderDetail()} {nodeData.length > 0 && this.renderDetail()}
</div> </div>
); );
......
...@@ -11,7 +11,7 @@ import AmosGridTable from './../../component/table/table/AmosGridTable'; ...@@ -11,7 +11,7 @@ import AmosGridTable from './../../component/table/table/AmosGridTable';
import SysWsURL from './../../../consts/wsUrlConsts'; import SysWsURL from './../../../consts/wsUrlConsts';
import { getTypeBySystem } from './../../bank/financialCityLan/conf'; import { getTypeBySystem } from './../../bank/financialCityLan/conf';
const checkListColumns = (self) => { const checkListColumns = self => {
return [ return [
{ {
title: '时间', title: '时间',
...@@ -26,9 +26,10 @@ const checkListColumns = (self) => { ...@@ -26,9 +26,10 @@ const checkListColumns = (self) => {
} else { } else {
font.innerText = text; font.innerText = text;
} }
return <div dangerouslySetInnerHTML={{ __html: font.outerHTML }} ></div> return <div dangerouslySetInnerHTML={{ __html: font.outerHTML }}></div>;
} }
}, { },
{
title: '设备名称', title: '设备名称',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name',
...@@ -41,9 +42,10 @@ const checkListColumns = (self) => { ...@@ -41,9 +42,10 @@ const checkListColumns = (self) => {
} else { } else {
font.innerText = text; font.innerText = text;
} }
return <div dangerouslySetInnerHTML={{ __html: font.outerHTML }} ></div> return <div dangerouslySetInnerHTML={{ __html: font.outerHTML }}></div>;
} }
}, { },
{
title: 'ping结果', title: 'ping结果',
dataIndex: 'deviceStatus', dataIndex: 'deviceStatus',
key: 'deviceStatus', key: 'deviceStatus',
...@@ -61,20 +63,18 @@ const checkListColumns = (self) => { ...@@ -61,20 +63,18 @@ const checkListColumns = (self) => {
font.style.color = 'red'; font.style.color = 'red';
p.append(font); p.append(font);
} }
return <div dangerouslySetInnerHTML={{ __html: p.outerHTML }} ></div> return <div dangerouslySetInnerHTML={{ __html: p.outerHTML }}></div>;
} }
} }
]; ];
}; };
//偏移 //偏移
const offsetHeight = 110; const offsetHeight = 110;
const defaultHeight = 450; const defaultHeight = 450;
const type = getTypeBySystem('SelfSupport'); const type = getTypeBySystem('SelfSupport');
class SelfSupport extends Component { class SelfSupport extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.pageConfig = { this.pageConfig = {
...@@ -112,16 +112,14 @@ class SelfSupport extends Component { ...@@ -112,16 +112,14 @@ class SelfSupport extends Component {
this.updateTopologyData = {}; this.updateTopologyData = {};
this.mapView = true; this.mapView = true;
} }
componentWillMount() { componentWillMount() {}
}
// 数据初始化 // 数据初始化
// eslint-disable-next-line react/sort-comp // eslint-disable-next-line react/sort-comp
initData = () => { initData = () => {
let expandedKeysData = []; let expandedKeysData = [];
getTopoTreeByTypeAction(type).then(data => { getTopoTreeByTypeAction(type).then(data => {
if(data.length > 0){ if (data.length > 0) {
data.map(item => { data.map(item => {
expandedKeysData.push(item.id); expandedKeysData.push(item.id);
}); });
...@@ -142,9 +140,8 @@ class SelfSupport extends Component { ...@@ -142,9 +140,8 @@ class SelfSupport extends Component {
pHeight: this.getPanelHeight() pHeight: this.getPanelHeight()
}); });
} }
}); });
} };
componentDidMount() { componentDidMount() {
this.initData(); this.initData();
...@@ -156,11 +153,9 @@ class SelfSupport extends Component { ...@@ -156,11 +153,9 @@ class SelfSupport extends Component {
return (tableLocation !== undefined ? tableLocation.height - offsetHeight : defaultHeight) - 30; return (tableLocation !== undefined ? tableLocation.height - offsetHeight : defaultHeight) - 30;
}; };
// 拓扑图数据初始化 // 拓扑图数据初始化
initTopologyData = (id, value = '') => { initTopologyData = (id, value = '') => {
getNodesByTypeAndTreeIdAction(type,id).then(data => { getNodesByTypeAndTreeIdAction(type, id).then(data => {
if (value === 'refresh') { if (value === 'refresh') {
message.success('拓扑图刷新成功!'); message.success('拓扑图刷新成功!');
} }
...@@ -171,25 +166,22 @@ class SelfSupport extends Component { ...@@ -171,25 +166,22 @@ class SelfSupport extends Component {
}); });
}); });
let tatableDataXianshi =this.state.tableDataXianshi; let tatableDataXianshi = this.state.tableDataXianshi;
if(true === tatableDataXianshi){ if (true === tatableDataXianshi) {
getDeivceListAction(0, 10, null).then(data => { getDeivceListAction(0, 10, null).then(data => {
// console.log('表格刷新成功!'); // console.log('表格刷新成功!');
this.setState({ tableData: data.content, totalCount: data.totalElements }); this.setState({ tableData: data.content, totalCount: data.totalElements });
}); });
} }
};
}
/** /**
* 获取表格所选则的行数据 * 获取表格所选则的行数据
*/ */
getSelectedRows = (selectedRows, selectedRowKeys) => { getSelectedRows = (selectedRows, selectedRowKeys) => {
this.setState({ selectedRows, selectedRowKeys }); this.setState({ selectedRows, selectedRowKeys });
}; };
// 树选择 // 树选择
onSelect = (selectedKeys, e) => { onSelect = (selectedKeys, e) => {
if (selectedKeys.length && !e.node.props.parent) { if (selectedKeys.length && !e.node.props.parent) {
...@@ -199,45 +191,42 @@ class SelfSupport extends Component { ...@@ -199,45 +191,42 @@ class SelfSupport extends Component {
selectedKeys selectedKeys
}); });
} }
} };
// 树展开 // 树展开
onExpand = (expandedKeys) => { onExpand = expandedKeys => {
this.setState({ this.setState({
expandedKeys, expandedKeys,
autoExpandParent: false autoExpandParent: false
}); });
}; };
queryEquipPage = () => { queryEquipPage = () => {
let tableDataXianshi = this.state.tableDataXianshi; let tableDataXianshi = this.state.tableDataXianshi;
if (true === tableDataXianshi ){ if (true === tableDataXianshi) {
let pageConfig = this.pageConfig; let pageConfig = this.pageConfig;
let pageNumber = pageConfig.pageNumber - 1; let pageNumber = pageConfig.pageNumber - 1;
let pageSize = pageConfig.pageSize; let pageSize = pageConfig.pageSize;
getDeivceListAction(pageNumber, pageSize, null).then(data => { getDeivceListAction(pageNumber, pageSize, null).then(data => {
this.setState({ tableData: data.content, totalCount: data.totalElements }); this.setState({ tableData: data.content, totalCount: data.totalElements });
}); });
} else { } else {
this.setState({ tableData:[], totalCount: 0 }); this.setState({ tableData: [], totalCount: 0 });
}
} }
};
// 选择节点 // 选择节点
nodeSelectionChanged = (e) => { nodeSelectionChanged = e => {
// console.log('e',e); // console.log('e',e);
if (e.isSelected) { } if (e.isSelected) {
} }
};
// 节点数据改变 // 节点数据改变
nodeChange = (e) => { nodeChange = e => {
// console.log(e.model.toJson()); // console.log(e.model.toJson());
this.updateTopologyData = JSON.parse(e.model.toJson()); this.updateTopologyData = JSON.parse(e.model.toJson());
} };
// 保存节点数据 // 保存节点数据
saveTopologyData = () => { saveTopologyData = () => {
...@@ -248,10 +237,10 @@ class SelfSupport extends Component { ...@@ -248,10 +237,10 @@ class SelfSupport extends Component {
nodeData: nodeDataArray, nodeData: nodeDataArray,
linkData: linkDataArray linkData: linkDataArray
}; };
saveNodesByTypeUrlAction(type,params).then(data => { saveNodesByTypeUrlAction(type, params).then(data => {
message.success('拓扑图保存成功!'); message.success('拓扑图保存成功!');
}); });
} };
/** /**
* 分页设置参数 * 分页设置参数
...@@ -265,8 +254,8 @@ class SelfSupport extends Component { ...@@ -265,8 +254,8 @@ class SelfSupport extends Component {
}; };
/** /**
* 获取表格刷新方法 * 获取表格刷新方法
*/ */
reload = r => { reload = r => {
this.setState( this.setState(
{ {
...@@ -283,10 +272,10 @@ class SelfSupport extends Component { ...@@ -283,10 +272,10 @@ class SelfSupport extends Component {
refreshTopologyData = () => { refreshTopologyData = () => {
const { selectedKeys } = this.state; const { selectedKeys } = this.state;
this.initTopologyData(selectedKeys[0], 'refresh'); this.initTopologyData(selectedKeys[0], 'refresh');
} };
// 视图切换 // 视图切换
toggleView = (value) => { toggleView = value => {
if (value === 'left') { if (value === 'left') {
this.setState({ this.setState({
isTreeDisplay: true, isTreeDisplay: true,
...@@ -304,14 +293,13 @@ class SelfSupport extends Component { ...@@ -304,14 +293,13 @@ class SelfSupport extends Component {
//拓扑图刷新 //拓扑图刷新
const { selectedKeys } = this.state; const { selectedKeys } = this.state;
this.initTopologyData(selectedKeys[0], ''); this.initTopologyData(selectedKeys[0], '');
} };
//webSocket 接收消息 //webSocket 接收消息
handleData = (data) => { handleData = data => {
const { selectedKeys } = this.state; const { selectedKeys } = this.state;
this.initTopologyData(selectedKeys[0], ''); this.initTopologyData(selectedKeys[0], '');
} };
render() { render() {
const { treeData, selectedKeys, expandedKeys, isTreeDisplay, totalCount, selectedRowKeys, pagination, isChecked } = this.state; const { treeData, selectedKeys, expandedKeys, isTreeDisplay, totalCount, selectedRowKeys, pagination, isChecked } = this.state;
...@@ -331,13 +319,7 @@ class SelfSupport extends Component { ...@@ -331,13 +319,7 @@ class SelfSupport extends Component {
console.log(topologyData); console.log(topologyData);
return ( return (
<div className="self-wrapper"> <div className="self-wrapper">
<AmosWebSocket <AmosWebSocket ref={node => (this.aws = node)} url={SysWsURL.selfURI} onMessage={this.handleData} reconnect debug />
ref={node => this.aws = node}
url={SysWsURL.selfURI}
onMessage={this.handleData}
reconnect
debug
/>
<div className="self-header"> <div className="self-header">
<div className="self-view"> <div className="self-view">
<div className={classnames('left-view', { 'left-active-view': activeView === 'left' })}> <div className={classnames('left-view', { 'left-active-view': activeView === 'left' })}>
...@@ -357,8 +339,8 @@ class SelfSupport extends Component { ...@@ -357,8 +339,8 @@ class SelfSupport extends Component {
</div> </div>
</div> </div>
<div className="self-content"> <div className="self-content">
{<div className={classnames({ 'left-content': isTreeDisplay, 'left-content-close': !isTreeDisplay })} > {
<div className={classnames({ 'left-content': isTreeDisplay, 'left-content-close': !isTreeDisplay })}>
<TreeComponent <TreeComponent
treeData={treeData} treeData={treeData}
//treeData={moniTreeData} //treeData={moniTreeData}
...@@ -367,17 +349,10 @@ class SelfSupport extends Component { ...@@ -367,17 +349,10 @@ class SelfSupport extends Component {
// onSelect={this.onSelect} // onSelect={this.onSelect}
onExpand={this.onExpand} onExpand={this.onExpand}
/> />
</div>} </div>
}
<div className={`middle-content ${isTreeDisplay && isTableDisplay ? '' : 'only-middle'}`}> <div className={`middle-content ${isTreeDisplay && isTableDisplay ? '' : 'only-middle'}`}>
<div className="paslogy-content"> <div className="paslogy-content">
<div className="middle-content-div">
<div className="content-left">
<div className="box">西安中心</div>
</div>
<div className="content-right">
<div className="box">咸阳中心</div>
</div>
</div>
<div className="net-topo-content"> <div className="net-topo-content">
<TopologyComponent <TopologyComponent
topologyData={topologyData} topologyData={topologyData}
...@@ -389,13 +364,9 @@ class SelfSupport extends Component { ...@@ -389,13 +364,9 @@ class SelfSupport extends Component {
</div> </div>
</div> </div>
<div className={classnames({ 'right-content': isTableDisplay, 'right-content-close': !isTableDisplay })}> <div className={classnames({ 'right-content': isTableDisplay, 'right-content-close': !isTableDisplay })}>
<div className="devive-title"> <div className="devive-title">日志</div>
日志 <div className="device-lists" ref={node => (this.tableNode = node)}>
</div>
<div className="device-lists" ref={node => this.tableNode = node}>
<AmosGridTable <AmosGridTable
columns={checkListColumns(this)} columns={checkListColumns(this)}
callBack={this.reload} callBack={this.reload}
...@@ -421,8 +392,6 @@ class SelfSupport extends Component { ...@@ -421,8 +392,6 @@ class SelfSupport extends Component {
} }
} }
SelfSupport.propTypes = { SelfSupport.propTypes = {};
};
export default SelfSupport; export default SelfSupport;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment