2018-04-26 15:19:19 +00:00
|
|
|
```js
|
|
|
|
const noop = () => {};
|
|
|
|
|
2018-05-05 01:24:33 +00:00
|
|
|
const messages = [
|
|
|
|
{
|
2018-07-09 21:29:13 +00:00
|
|
|
objectURL: 'https://placekitten.com/799/600',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/900/600',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
|
|
|
},
|
2018-07-09 21:29:13 +00:00
|
|
|
// Unsupported image type
|
2018-05-08 01:34:44 +00:00
|
|
|
{
|
|
|
|
objectURL: 'foo.tif',
|
|
|
|
attachments: [{ contentType: 'image/tiff' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
2018-07-09 21:29:13 +00:00
|
|
|
// Video
|
|
|
|
{
|
|
|
|
objectURL: util.mp4ObjectUrl,
|
|
|
|
attachments: [{ contentType: 'video/mp4' }],
|
|
|
|
},
|
2018-05-05 01:24:33 +00:00
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/980/800',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/656/540',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/762/400',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
objectURL: 'https://placekitten.com/920/620',
|
2018-05-08 01:34:44 +00:00
|
|
|
attachments: [{ contentType: 'image/jpeg' }],
|
2018-05-05 01:24:33 +00:00
|
|
|
},
|
2018-04-26 15:19:19 +00:00
|
|
|
];
|
|
|
|
|
2018-05-01 22:37:21 +00:00
|
|
|
<div style={{ position: 'relative', width: '100%', height: 500 }}>
|
2018-05-22 19:31:43 +00:00
|
|
|
<LightboxGallery messages={messages} onSave={noop} i18n={util.i18n} />
|
2018-05-01 22:37:21 +00:00
|
|
|
</div>;
|
2018-04-26 15:19:19 +00:00
|
|
|
```
|