added targetdetail
infra host
This commit is contained in:
parent
60f212aeee
commit
5851e86ce0
|
@ -66,7 +66,7 @@ export class InfraDetail extends React.Component<Props, State> {
|
|||
public ConvertInfra = () => {
|
||||
// let type = this.props.infra.type.name;
|
||||
let NewTableDatas: Array<TableData>;
|
||||
let type = this.state.testInfra.type.name;
|
||||
let type = this.state.testInfra.infraType.name;
|
||||
switch (type) {
|
||||
case 'MACHINE':
|
||||
break;
|
||||
|
@ -176,7 +176,7 @@ export class InfraTable extends React.Component<InfraTableProps, any> {
|
|||
|
||||
const InfraJson: any = {
|
||||
'id': 3,
|
||||
'type': {
|
||||
'infraType': {
|
||||
'id': 2,
|
||||
'name': 'HOST',
|
||||
'createDate': 1498379502894,
|
||||
|
@ -216,7 +216,7 @@ const InfraJson: any = {
|
|||
'name': 'NORMAL',
|
||||
},
|
||||
},
|
||||
'infraHost': {
|
||||
'host': {
|
||||
'id': 1,
|
||||
'os': {
|
||||
'id': 1,
|
||||
|
@ -231,7 +231,7 @@ const InfraJson: any = {
|
|||
'id': 26,
|
||||
'name': 'Windows',
|
||||
'createDate': 1501136812985,
|
||||
'metaInfraType': {
|
||||
'infraType': {
|
||||
'id': 3,
|
||||
'name': 'OS',
|
||||
'createDate': 1498379502906,
|
||||
|
@ -241,7 +241,7 @@ const InfraJson: any = {
|
|||
'ip': 3232235980,
|
||||
'mac': 8796753988883,
|
||||
'createDate': 1501153030607,
|
||||
},
|
||||
}
|
||||
},
|
||||
'target': {
|
||||
'id': 1,
|
||||
|
@ -267,7 +267,7 @@ const InfraHostJson: any = {
|
|||
'id': 26,
|
||||
'name': 'Windows',
|
||||
'createDate': 1501136812985,
|
||||
'metaInfraType': {
|
||||
'infraType': {
|
||||
'id': 3,
|
||||
'name': 'OS',
|
||||
'createDate': 1498379502906,
|
||||
|
|
|
@ -2,6 +2,7 @@ import * as React from 'react';
|
|||
import { Button, Table, Header, Container } from 'semantic-ui-react';
|
||||
import { DetailContainer } from '@overflow/commons/react/component/DetailContainer';
|
||||
import { TargetDetailInfra } from './TargetDetailInfra';
|
||||
import InfraDetailContainer from '@overflow/infra/react/InfraDetail';
|
||||
import Target from '@overflow/target/api/model/Target';
|
||||
|
||||
|
||||
|
@ -59,7 +60,7 @@ export class TargetDetail extends React.Component<Props, State> {
|
|||
<Container fluid>
|
||||
<TargetBasicInfo target={this.state.target} infra={this.state.infra} />
|
||||
<br />
|
||||
<TargetDetailInfra target={this.state.target} infra={this.state.infra} />
|
||||
<InfraDetailContainer target={this.state.target} infra={this.state.infra} />
|
||||
<br />
|
||||
<Button primary floated={'right'} negative onClick={this.handleRemoveTarget}>Remove</Button>
|
||||
</Container>
|
||||
|
|
Loading…
Reference in New Issue
Block a user