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
|
import React from 'react';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import { SourceReader, PapperBlock } from 'ba-components';
import { Grid } from '@material-ui/core';
import {
ModalDemo,
AlertDialog,
SelectDialog,
SelectRadioDialog,
FormDialog,
FullScreenDialog,
ImagePopup,
ScrollDialog
} from './demos';
class DialogModal extends React.Component {
render() {
const title = brand.name + ' - UI Elements';
const description = brand.desc;
const docSrc = 'containers/UiElements/demos/DialogModal/';
return (
<div>
<Helmet>
<title>{title}</title>
<meta name="description" content={description} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
</Helmet>
<PapperBlock title="Modals" desc="The modal component provides a solid foundation for creating dialogs, popovers, lightboxes, or whatever else.">
<div>
<ModalDemo />
<SourceReader componentName={docSrc + 'ModalDemo.js'} />
</div>
</PapperBlock>
<PapperBlock title="Image Popup" desc="A flexible lightbox component for displaying images. It's also can handle zoom and panning of images. Mobile friendly, with pinch to zoom and swipe">
<div>
<ImagePopup />
<SourceReader componentName={docSrc + 'ImagePopup.js'} />
</div>
</PapperBlock>
<PapperBlock title="Alerts" desc="Alerts are urgent interruptions, requiring acknowledgement, that inform the user about a situation.">
<div>
<AlertDialog />
<SourceReader componentName={docSrc + 'AlertDialog.js'} />
</div>
</PapperBlock>
<Grid container spacing={2}>
<Grid item md={6}>
<PapperBlock title="Selection Dialog" desc="Choosing an option immediately commits the option and closes the menu">
<div>
<SelectDialog />
<SourceReader componentName={docSrc + 'SelectDialog.js'} />
</div>
</PapperBlock>
</Grid>
<Grid item md={6}>
<PapperBlock title="Selection Radio Dialog" desc="In this example, users can listen to multiple ringtones but only make a final selection upon touching “OK.”">
<div>
<SelectRadioDialog />
<SourceReader componentName={docSrc + 'SelectRadioDialog.js'} />
</div>
</PapperBlock>
</Grid>
</Grid>
<PapperBlock title="Form dialogs" desc="Form dialogs allow users to fill out form fields within a dialog.">
<div>
<FormDialog />
<SourceReader componentName={docSrc + 'FormDialog.js'} />
</div>
</PapperBlock>
<Grid container spacing={2}>
<Grid item md={6} xs={12}>
<PapperBlock title="Full Screen (Responsive)" desc="You may make a Dialog responsively full screen the dialog using withMobileDialog. By default, withMobileDialog()(Dialog) responsively full screens at or below the sm screen size.">
<div>
<FullScreenDialog />
<SourceReader componentName={docSrc + 'FullScreenDialog.js'} />
</div>
</PapperBlock>
</Grid>
<Grid item md={6} xs={12}>
<PapperBlock title="Scrolling dialog" desc="When dialogs become too long for the user’s viewport or device, they scroll.">
<div>
<ScrollDialog />
<SourceReader componentName={docSrc + 'ScrollDialog.js'} />
</div>
</PapperBlock>
</Grid>
</Grid>
</div>
);
}
}
export default DialogModal;
|