File tree 5 files changed +759
-432
lines changed
5 files changed +759
-432
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,59 @@ var BgpModalView = React.createClass({
124
124
125
125
module . exports . BgpSummaryView = BgpSummaryView
126
126
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
127
180
var EndpointGroupSummaryView = React . createClass ( {
128
181
render : function ( ) {
129
182
var self = this
You can’t perform that action at this time.
0 commit comments