Skip to content

Commit a9279c4

Browse files
author
Vipin Jain
committed
support for oper only objects
1 parent 2afd976 commit a9279c4

5 files changed

+759
-432
lines changed

client/contivModel.js

+53
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,59 @@ var BgpModalView = React.createClass({
124124

125125
module.exports.BgpSummaryView = BgpSummaryView
126126
module.exports.BgpModalView = BgpModalView
127+
var EndpointSummaryView = React.createClass({
128+
render: function() {
129+
var self = this
130+
131+
// Walk thru all objects
132+
var endpointListView = self.props.endpoints.map(function(endpoint){
133+
return (
134+
<ModalTrigger modal={<EndpointModalView endpoint={ endpoint }/>}>
135+
<tr key={ endpoint.key } className="info">
136+
137+
138+
</tr>
139+
</ModalTrigger>
140+
);
141+
});
142+
143+
return (
144+
<div>
145+
<Table hover>
146+
<thead>
147+
<tr>
148+
149+
150+
</tr>
151+
</thead>
152+
<tbody>
153+
{ endpointListView }
154+
</tbody>
155+
</Table>
156+
</div>
157+
);
158+
}
159+
});
160+
161+
var EndpointModalView = React.createClass({
162+
render() {
163+
var obj = this.props.endpoint
164+
return (
165+
<Modal {...this.props} bsStyle='primary' bsSize='large' title='Endpoint' animation={false}>
166+
<div className='modal-body' style={ {margin: '5%',} }>
167+
168+
169+
</div>
170+
<div className='modal-footer'>
171+
<Button onClick={this.props.onRequestHide}>Close</Button>
172+
</div>
173+
</Modal>
174+
);
175+
}
176+
});
177+
178+
module.exports.EndpointSummaryView = EndpointSummaryView
179+
module.exports.EndpointModalView = EndpointModalView
127180
var EndpointGroupSummaryView = React.createClass({
128181
render: function() {
129182
var self = this

0 commit comments

Comments
 (0)