Grid.js
16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import React from 'react';
import {
Row,
Col,
Label,
Input,
Form,
FormGroup,
DropdownToggle,
DropdownMenu,
DropdownItem,
UncontrolledDropdown,
Button,
Modal,
ModalHeader,
ModalBody,
ModalFooter,
} from 'reactstrap';
import $ from 'jquery';
import 'imports-loader?window.jQuery=jquery,this=>window!jquery-ui/ui/widgets/sortable'; //eslint-disable-line
import Widget from '../../../components/Widget';
import './Grid.scss';
import peopleA1 from '../../../images/people/a1.jpg';
import peopleA2 from '../../../images/people/a2.jpg';
import peopleA3 from '../../../images/people/a3.jpg';
import peopleA4 from '../../../images/people/a4.jpg';
const sortOptions = {
connectWith: '.widget-container',
handle: 'header, .handle',
cursor: 'move',
iframeFix: false,
items: '.widget:not(.locked)',
opacity: 0.8,
helper: 'original',
revert: true,
forceHelperSize: true,
placeholder: 'widget widget-placeholder',
forcePlaceholderSize: true,
tolerance: 'pointer',
};
const tooltipPlacement = 'bottom';
class Grid extends React.Component {
constructor(props) {
super(props);
this.state = {
isOpen: false,
modal: false,
};
this.toggleModal = this.toggleModal.bind(this);
this.closePrompt = this.closePrompt.bind(this);
}
componentDidMount() {
$('.widget-container').sortable(sortOptions);
this.initSharesWidget();
this.initNewsWidget();
}
initSharesWidget() {
$(this.sharesWidget).widgster({
loaderTemplate: `<div class="loader animated fadeIn">
<span class="spinner"><i class="fa fa-spinner fa-spin"></i></span>
</div>`,
});
}
initNewsWidget() {
/**
* Make refresh button spin when loading
*/
$('#news-widget').bind('load.widgster', () => {
$(this).find('[data-widgster="load"] > i').addClass('fa-spin');
}).bind('loaded.widgster', () => {
$(this).find('[data-widgster="load"] > i').removeClass('fa-spin');
});
}
closePrompt(callback) {
this.setState({ modal: true });
$('#news-widget-remove').bind('click', () => {
this.setState({ modal: false });
callback();
});
}
toggleModal() {
this.setState({ modal: !this.state.modal });
}
render() {
return (
<div>
<ol className="breadcrumb">
<li className="breadcrumb-item">YOU ARE HERE</li>
<li className="breadcrumb-item active">Grid</li>
</ol>
<h1 className="page-title">Grid - <span className="fw-semi-bold">Options</span></h1>
<Row>
<Col xl={7}>
<Widget
title={<h5>Draggable Grid <span className="badge badge-danger fw-normal">since 2.1</span></h5>}
>
<div>
<p>
<strong>Widgster</strong> is a plugin that allows to easily implement basic widget functions that
lots of our customers have requested. For now it has the following essential
widget features:
</p>
<ul className="text-list">
<li><strong>Collapse/Expand</strong> - all widgets can be collapsed to fill only header's
vertical
space;
</li>
<li><strong>Close</strong> - closable. Any widget may be removed by clicking the close btn;</li>
<li><strong>Full Screen</strong> - an option to make widget fill the whole window (just like OS);</li>
<li><strong>Ajax Load</strong> - the hottest option allowing to load/reload widget content
asynchronously. You just
need to provide an url to fetch the data from. With loader delivered.
</li>
</ul>
<p>It's available under MIT license, check out
<a href="https://github.com/flatlogic/widgster" target="_blank" rel="noopener noreferrer"> github </a>
to find it.</p>
<p>
Test it out!
</p>
</div>
</Widget>
</Col>
</Row>
<Row className="grid-demo">
<Col className="widget-container" xl={6} xs={12}>
<Widget
title={<h6>Default <span className="fw-semi-bold">Widget</span></h6>}
refresh collapse fullscreen close
showTooltip tooltipPlacement={tooltipPlacement}
>
<div>
<p>A timestamp this widget was created: Apr 24, 19:07:07</p>
<p>A timestamp this widget was updated: Apr 24, 19:07:07</p>
</div>
</Widget>
<Widget
className="shares-widget"
ref={(r) => {
this.sharesWidget = r;
}}
data-post-processing
showTooltip tooltipPlacement={tooltipPlacement}
title={<h6>
<span className="badge badge-primary"><i className="fa fa-facebook" /></span>
Latest <span className="fw-semi-bold">Shares</span>
</h6>}
close="Close" refresh="Reload"
bodyClass={'p-0'}
>
<div className="list-group list-group-lg">
<button className="list-group-item text-left">
<span className="thumb-sm mr">
<img className="rounded-circle" src={peopleA1} alt="..." />
</span>
<div>
<h6 className="m-0">Maikel Basso</h6>
<small className="text-muted">about 2 mins ago</small>
</div>
<i className="fa fa-circle ml-auto text-danger" />
</button>
<button className="list-group-item text-left">
<span className="thumb-sm mr">
<img className="rounded-circle" src={peopleA2} alt="..." />
</span>
<div>
<h6 className="m-0">Ianus Arendse</h6>
<small className="text-muted">about 42 mins ago</small>
</div>
<i className="fa fa-circle ml-auto text-info" />
</button>
<button className="list-group-item text-left">
<span className="thumb-sm mr">
<img className="rounded-circle" src={peopleA3} alt="..." />
</span>
<div>
<h6 className="m-0">Valdemar Landau</h6>
<small className="text-muted">one hour ago</small>
</div>
<i className="fa fa-circle ml-auto text-success" />
</button>
<button className="list-group-item text-left mb-n-md">
<span className="thumb-sm mr">
<img className="rounded-circle" src={peopleA4} alt="..." />
</span>
<div>
<h6 className="m-0">Rick Teagan</h6>
<small className="text-muted">3 hours ago</small>
</div>
<i className="fa fa-circle ml-auto text-warning" />
</button>
</div>
</Widget>
<Widget
id="autoload-widget"
data-post-processing="true"
data-widgster-autoload="true"
data-widgster-show-loader="false"
title={<h6>Autoload <span className="fw-semi-bold">Widget</span></h6>}
customControls={
<UncontrolledDropdown>
<DropdownToggle
tag="span"
data-toggle="dropdown"
>
<i className="glyphicon glyphicon-cog" />
</DropdownToggle>
<DropdownMenu right>
<DropdownItem data-widgster="load" title="Reload">
Reload
<span className="badge badge-pill badge-success animated bounceIn">
<strong>9</strong>
</span>
</DropdownItem>
<DropdownItem data-widgster="fullscreen" title="Full Screen">Fullscreen</DropdownItem>
<DropdownItem data-widgster="restore" title="Restore">Restore</DropdownItem>
<DropdownItem divider />
<DropdownItem data-widgster="close" title="Close">Close</DropdownItem>
</DropdownMenu>
</UncontrolledDropdown>
}
>
<div>
<h3 className="text-center m-0">Sign up, it's <strong>free</strong></h3>
<p className="lead text-muted text-center">
Faith makes it possible to achieve that which man's mind can conceive and believe.
</p>
<Form>
<FormGroup>
<Label for="exampleInputEmail1"><i className="fa fa-circle text-warning" /> Email
address</Label>
<Input
type="email" id="exampleInputEmail1"
placeholder="Enter email"
/>
</FormGroup>
<FormGroup>
<Label for="pswd"><i className="fa fa-circle text-danger" /> Password</Label>
<Input id="pswd" type="text" placeholder="Min 8 characters" />
</FormGroup>
<p>
To make a widget automatically load it's content you just need to set
<strong>data-widgster-autoload</strong> attribute and provide an url.
</p>
<pre><code>data-widgster-load="server/ajax_widget.html"
data-widgster-autoload="true"</code></pre>
<p>
<strong>data-widgster-autoload</strong> may be set to an integer value. If set, for example, to
2000 will refresh widget every 2 seconds.
</p>
<div className="clearfix">
<div className="btn-toolbar float-right">
<button type="button" className="btn btn-transparent">Cancel</button>
<button type="button" className="btn btn-success"> Submit </button>
</div>
</div>
</Form>
</div>
</Widget>
<Widget>
<header>
<h6>Custom <span className="fw-semi-bold">Loader</span></h6>
</header>
<div className="widget-body" style={{ minHeight: '140px' }}>
<div className="loader animated fadeIn handle">
<span className="spinner">
<i className="fa fa-spinner fa-spin" />
</span>
</div>
</div>
</Widget>
</Col>
<Col xl={6} className="widget-container">
<Widget
id="news-widget"
data-post-processing="true"
title={<div><h6> News <span className="badge badge-pill badge-success">17</span></h6>
<span className="text-muted">spinning refresh button & close prompt</span>
</div>}
customControls={
<div>
<button data-widgster="expand" title="Expand"><i className="glyphicon glyphicon-chevron-up" /></button>
<button data-widgster="collapse" title="Collapse"><i
className="glyphicon glyphicon-chevron-down"
/></button>
<button data-widgster="load" title="I am spinning!"><i className="fa fa-refresh" /></button>
<button data-widgster="close" title="Close"><i className="glyphicon glyphicon-remove" /></button>
</div>
}
bodyClass={'p-0'}
options={{
showLoader: false,
closePrompt: this.closePrompt,
}}
>
<ul className={'news-list stretchable'}>
<li>
<span className="icon bg-danger text-white">
<i className="fa fa-star" />
</span>
<div className="news-item-info">
<h5 className="name m-0 mb-xs"><button className="btn-link">First Human Colony on Mars</button></h5>
<p className="fs-mini">
First 700 people will take part in building first human settlement outside of Earth.
That's awesome, right?
</p>
<time className="help-block">Mar 20, 18:46</time>
</div>
</li>
<li>
<span className="icon bg-info text-white">
<i className="fa fa-microphone" />
</span>
<div className="news-item-info">
<h5 className="name m-0 mb-xs"><button className="btn-link">Light Blue reached $300</button></h5>
<p className="fs-mini">
Light Blue Inc. shares just hit $300 price. "This was inevitable. It should
have happen sooner or later" - says NYSE expert.
</p>
<time className="help-block">Sep 25, 11:59</time>
</div>
</li>
<li>
<span className="icon bg-success text-white">
<i className="fa fa-eye" />
</span>
<div className="news-item-info">
<h5 className="name m-0 mb-xs"><button className="btn-link">No more spying</button></h5>
<p className="fs-mini">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.
</p>
<time className="help-block">Mar 20, 18:46</time>
</div>
</li>
</ul>
<Modal isOpen={this.state.modal} toggle={this.toggleModal} id="news-close-modal">
<ModalHeader toggle={this.toggleModal} id="news-close-modal-label">Sure?</ModalHeader>
<ModalBody className="bg-white">
Do you really want to unrevertably remove this super news widget?
</ModalBody>
<ModalFooter>
<Button color="default" onClick={this.toggleModal} data-dismiss="modal">No</Button>{' '}
<Button color="danger" data-widgster="close" id="news-widget-remove">Yes,
remove widget</Button>
</ModalFooter>
</Modal>
</Widget>
<Widget
className="locked" data-widgster-collapsed="true"
title={<h6>Collapsed by default & locked</h6>}
collapse close
>
<div className="widget-body">
<blockquote>
There are no limits. There are plateaus, but you must not stay there, you must go beyond
them. If it kills you, it kills you. A man must constantly exceed his level.
<footer>
Bruce Lee
</footer>
</blockquote>
<p>To make a widget initially collapsed just add
<code>data-widgster-collapsed="true"</code> attribute
to <code>.widget</code>.</p>
<p>To make it locked (prevent dragging) add <code>.locked</code> class.</p>
</div>
</Widget>
<Widget
className="bg-gray"
bodyClass={'p-0'}
>
<div className="jumbotron handle bg-gray text-white mb-0">
<div className="container">
<h1>Draggable story!</h1>
<p className="lead">
<em>Build</em> your own
interfaces! Sit back and relax.
</p>
<p className="text-center">
<button className="btn btn-danger btn-lg" data-widgster="fullscreen">
Fullscreen me!
<i className="fa fa-check" />
</button>
</p>
<button className="btn btn-danger btn-lg" data-widgster="restore">
Want to go back?
</button>
</div>
</div>
</Widget>
</Col>
</Row>
</div>
);
}
}
export default Grid;