blob: 3eff0baa12c63f5ff4d48c85fa87fac6b1d76cc3 (
plain)
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
|
import React from 'react';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import { withStyles } from '@material-ui/core/styles';
import { SourceReader, PapperBlock } from 'ba-components';
import { TextFields, TextFieldsLayout, InputAdornments, FormattedInputs } from './demos';
const styles = ({
root: {
flexGrow: 1,
}
});
class Textbox extends React.Component {
render() {
const title = brand.name + ' - Form';
const description = brand.desc;
const docSrc = 'containers/Forms/demos/';
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="Textfield Components" desc="Text fields allow users to input text and usually appear in forms. Users may enter text, numbers, or mixed-format types of input.">
<div>
<TextFields />
<SourceReader componentName={docSrc + 'TextFields.js'} />
</div>
</PapperBlock>
<PapperBlock title="Textfield Layout and Design" desc="">
<div>
<TextFieldsLayout />
<SourceReader componentName={docSrc + 'TextFieldsLayout.js'} />
</div>
</PapperBlock>
<PapperBlock title="Input with Additonal Icon" desc="Input allows the provision of InputAdornment. These can be used to add a prefix, a suffix or an action to an input.">
<div>
<InputAdornments />
<SourceReader componentName={docSrc + 'InputAdornments.js'} />
</div>
</PapperBlock>
<PapperBlock title="Formatted inputs" desc="We demonstrate how you could be using third-party libraries to format your input. In the following demo, we are using react-text-mask and react-number-format libraries. ">
<div>
<FormattedInputs />
<SourceReader componentName={docSrc + 'FormattedInputs.js'} />
</div>
</PapperBlock>
</div>
);
}
}
export default withStyles(styles)(Textbox);
|