Skip to content

Commit 68c75a0

Browse files
committed
pregenerated contivmodel files
1 parent d69faeb commit 68c75a0

6 files changed

+1607
-59
lines changed

client/contivModel.js

+59
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,65 @@ var GlobalModalView = React.createClass({
198198

199199
module.exports.GlobalSummaryView = GlobalSummaryView
200200
module.exports.GlobalModalView = GlobalModalView
201+
var BgpSummaryView = React.createClass({
202+
render: function() {
203+
var self = this
204+
205+
// Walk thru all objects
206+
var BgpListView = self.props.Bgps.map(function(Bgp){
207+
return (
208+
<ModalTrigger modal={<BgpModalView Bgp={ Bgp }/>}>
209+
<tr key={ Bgp.key } className="info">
210+
211+
212+
</tr>
213+
</ModalTrigger>
214+
);
215+
});
216+
217+
return (
218+
<div>
219+
<Table hover>
220+
<thead>
221+
<tr>
222+
223+
224+
</tr>
225+
</thead>
226+
<tbody>
227+
{ BgpListView }
228+
</tbody>
229+
</Table>
230+
</div>
231+
);
232+
}
233+
});
234+
235+
var BgpModalView = React.createClass({
236+
render() {
237+
var obj = this.props.Bgp
238+
return (
239+
<Modal {...this.props} bsStyle='primary' bsSize='large' title='Bgp' animation={false}>
240+
<div className='modal-body' style={ {margin: '5%',} }>
241+
242+
243+
<Input type='text' label='AS id' ref='AS' defaultValue={obj.AS} placeholder='AS id' />
244+
245+
<Input type='text' label='host name' ref='hostname' defaultValue={obj.hostname} placeholder='host name' />
246+
247+
<Input type='text' label='Bgp neighbor' ref='neighbor' defaultValue={obj.neighbor} placeholder='Bgp neighbor' />
248+
249+
</div>
250+
<div className='modal-footer'>
251+
<Button onClick={this.props.onRequestHide}>Close</Button>
252+
</div>
253+
</Modal>
254+
);
255+
}
256+
});
257+
258+
module.exports.BgpSummaryView = BgpSummaryView
259+
module.exports.BgpModalView = BgpModalView
201260
var NetworkSummaryView = React.createClass({
202261
render: function() {
203262
var self = this

0 commit comments

Comments
 (0)