2020-07-02 00:56:32 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as System from "~/components/system";
|
2020-06-22 14:00:51 +03:00
|
|
|
|
2020-07-02 00:56:32 +03:00
|
|
|
import Group from "~/components/system/Group";
|
|
|
|
import SystemPage from "~/components/system/SystemPage";
|
|
|
|
import ViewSourceLink from "~/components/system/ViewSourceLink";
|
2020-06-22 14:00:51 +03:00
|
|
|
|
|
|
|
export default class SystemPageInputs extends React.Component {
|
|
|
|
state = {
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
exampleOne: 'Example text',
|
|
|
|
exampleTwo: '',
|
|
|
|
exampleThree: '',
|
|
|
|
exampleFour: 'aaaaa-bbbbb-ccccc-ddddd-eeee',
|
|
|
|
exampleFive: '',
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
twelve: "Replace me friend.",
|
2020-07-04 05:59:28 +03:00
|
|
|
thirteen: ["t0001", "t0002", "t0003", "t0004"],
|
2020-07-02 00:56:32 +03:00
|
|
|
fourteen: "",
|
2020-07-04 05:59:28 +03:00
|
|
|
fifteen: "aaaaa-bbbbb-ccccc-ddddd",
|
2020-07-02 00:56:32 +03:00
|
|
|
sixteen: "",
|
|
|
|
seventeen: `Example text`,
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-22 14:00:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleChange = (e) => {
|
|
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-01 10:31:55 +03:00
|
|
|
<SystemPage title="SDS: Inputs" description="..." url="https://fps.onrender.com/system/inputs">
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
<SystemPage
|
|
|
|
title="FCDS: Inputs"
|
|
|
|
description="Lorem Ipsum."
|
|
|
|
url="https://fps.onrender.com/system/inputs"
|
|
|
|
>
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-22 14:15:04 +03:00
|
|
|
<System.H1>
|
2020-07-01 10:31:55 +03:00
|
|
|
Inputs <ViewSourceLink file="system/inputs.js" />
|
2020-06-22 14:15:04 +03:00
|
|
|
</System.H1>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.P>
|
|
|
|
The Input component is used to get a users input in a text field or a
|
|
|
|
textbox.
|
|
|
|
</System.P>
|
2020-06-24 05:02:55 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-07-03 19:38:44 +03:00
|
|
|
<br />
|
|
|
|
<System.H2>Imports</System.H2>
|
|
|
|
<hr />
|
|
|
|
<br />
|
|
|
|
<System.P>
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-03 19:38:44 +03:00
|
|
|
Import React and the Input and/or the Textarea Components.
|
|
|
|
</System.P>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<System.CodeBlock>
|
|
|
|
{`import * as React from 'react';
|
|
|
|
import { Input, Textarea } from 'slate-react-system';`}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
Define the Input value states and handle the state change the when a
|
|
|
|
change is made.
|
|
|
|
</System.P>
|
|
|
|
<br />
|
|
|
|
<System.CodeBlock>
|
|
|
|
{`state = {
|
|
|
|
twelve: 'Replace me friend.',
|
|
|
|
thirteen: '',
|
|
|
|
fourteen: '',
|
|
|
|
fifteen: 'aaaaa-bbbbb-ccccc-ddddd-eeee',
|
|
|
|
sixteen: '',
|
|
|
|
seventeen: 'Example text',
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleChange = (e) => {
|
|
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
|
|
};`}
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-07-03 19:38:44 +03:00
|
|
|
</System.CodeBlock>
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.H2>Textarea</System.H2>
|
|
|
|
<hr />
|
|
|
|
<br />
|
|
|
|
<System.P>Declare the Textarea component.</System.P>
|
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
<System.Textarea name="exampleOne" value={this.state.exampleOne} onChange={this._handleChange} />
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.CodeBlock>
|
2020-07-04 08:05:39 +03:00
|
|
|
{`class ExampleTextarea extends React.Component {
|
|
|
|
state = { exampleOne: 'Example text' }
|
|
|
|
|
2020-07-04 08:34:20 +03:00
|
|
|
_handleChange = e => this.setState(
|
2020-07-04 08:05:39 +03:00
|
|
|
{ [e.target.name]: e.target.value }
|
2020-07-04 08:34:20 +03:00
|
|
|
);
|
2020-07-04 08:05:39 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Textarea
|
|
|
|
name="exampleOne"
|
|
|
|
value={this.state.exampleOne}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}`}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
<System.Textarea
|
|
|
|
name="seventeen"
|
|
|
|
value={this.state.seventeen}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
<br />
|
|
|
|
<System.CodeBlock>
|
|
|
|
{`<System.Textarea name="seventeen" value={this.state.seventeen} onChange={this._handleChange} />`}
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-24 05:02:55 +03:00
|
|
|
</System.CodeBlock>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.H2>Input with label and description</System.H2>
|
|
|
|
<hr />
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.P>
|
|
|
|
Declare the Input component with a label and description value.
|
|
|
|
</System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<System.Input
|
|
|
|
label="Location of your pastries"
|
2020-07-03 19:38:44 +03:00
|
|
|
description="We need to know the location of your pastries."
|
2020-06-22 14:00:51 +03:00
|
|
|
tooltip="Hey friends."
|
2020-07-04 08:05:39 +03:00
|
|
|
name="exampleTwo"
|
|
|
|
value={this.state.exampleTwo}
|
2020-06-22 14:00:51 +03:00
|
|
|
placeholder="Pastry Location"
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.CodeBlock>
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
{`class ExampleLabel extends React.Component {
|
|
|
|
state = { exampleTwo: null }
|
|
|
|
|
2020-07-04 08:34:20 +03:00
|
|
|
_handleChange = e => this.setState(
|
2020-07-04 08:05:39 +03:00
|
|
|
{ [e.target.name]: e.target.value }
|
2020-07-04 08:34:20 +03:00
|
|
|
);
|
2020-07-04 08:05:39 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Location of your pastries"
|
|
|
|
description="We need to know the location of your pastries."
|
|
|
|
tooltip="Hey friends."
|
|
|
|
name="exampleTwo"
|
|
|
|
value={this.state.exampleTwo}
|
|
|
|
placeholder="Pastry Location"
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}`}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
{`<System.Input
|
|
|
|
label="Location of your pastries"
|
|
|
|
description="We need to know the location of your pastries to sell them to other people."
|
|
|
|
tooltip="Hey friends."
|
|
|
|
name="fourteen"
|
|
|
|
value={this.state.fourteen}
|
|
|
|
placeholder="Pastry Location"
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>`}
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-24 05:02:55 +03:00
|
|
|
</System.CodeBlock>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<System.H2>Input with max length</System.H2>
|
|
|
|
<hr />
|
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.P>
|
|
|
|
Declare the Input component with the maximum number of characters
|
|
|
|
allowed.
|
|
|
|
</System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<System.Input
|
|
|
|
label="Max length is 14"
|
|
|
|
max={14}
|
2020-07-04 08:05:39 +03:00
|
|
|
name="exampleThree"
|
|
|
|
value={this.state.exampleThree}
|
2020-06-22 14:00:51 +03:00
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.CodeBlock>
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
{`class ExampleMax extends React.Component {
|
|
|
|
state = { exampleThree: null }
|
|
|
|
|
2020-07-04 08:34:20 +03:00
|
|
|
_handleChange = e => this.setState(
|
2020-07-04 08:05:39 +03:00
|
|
|
{ [e.target.name]: e.target.value }
|
2020-07-04 08:34:20 +03:00
|
|
|
);
|
2020-07-04 08:05:39 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Max length is 14"
|
|
|
|
max={14}
|
|
|
|
name="exampleThree"
|
|
|
|
value={this.state.exampleThree}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}`}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
{`<System.Input
|
|
|
|
label="Max length is 14"
|
|
|
|
max={14}
|
|
|
|
name="sixteen"
|
|
|
|
value={this.state.sixteen}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>`}
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-24 05:02:55 +03:00
|
|
|
</System.CodeBlock>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-30 21:44:12 +03:00
|
|
|
<System.H2>Input with copy and paste</System.H2>
|
2020-06-24 05:02:55 +03:00
|
|
|
<hr />
|
|
|
|
<br />
|
|
|
|
<System.P>Declare the Input component with copyable.</System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<System.Input
|
|
|
|
label="Copy and paste (read only)"
|
|
|
|
readOnly
|
2020-07-04 08:05:39 +03:00
|
|
|
name="exampleFour"
|
2020-06-22 14:00:51 +03:00
|
|
|
copyable
|
2020-07-04 08:05:39 +03:00
|
|
|
value={this.state.exampleFour}
|
2020-06-22 14:00:51 +03:00
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
<br />
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.CodeBlock>
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
{`class ExampleCopyPaste extends React.Component {
|
|
|
|
state = { exampleFour: 'aaaaa-bbbbb-ccccc-ddddd-eeee' }
|
|
|
|
|
2020-07-04 08:34:20 +03:00
|
|
|
_handleChange = e => this.setState(
|
2020-07-04 08:05:39 +03:00
|
|
|
{ [e.target.name]: e.target.value }
|
2020-07-04 08:34:20 +03:00
|
|
|
);
|
2020-07-04 08:05:39 +03:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Copy and paste (read only)"
|
|
|
|
readOnly
|
|
|
|
name="exampleFour"
|
|
|
|
copyable
|
|
|
|
value={this.state.exampleFour}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}`}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
{`<System.Input
|
|
|
|
label="Copy and paste (read only)"
|
|
|
|
readOnly
|
|
|
|
name="fifteen"
|
|
|
|
copyable
|
|
|
|
value={this.state.fifteen}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>`}
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-24 05:02:55 +03:00
|
|
|
</System.CodeBlock>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<System.H2>Input with validation</System.H2>
|
|
|
|
<hr />
|
|
|
|
<br />
|
|
|
|
<System.P>Declare the Input component with validation.</System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.Input
|
|
|
|
label="Success"
|
|
|
|
placeholder="This is an uncontrolled input for success."
|
|
|
|
validation="SUCCESS"
|
|
|
|
/>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.Input
|
|
|
|
label="Warning"
|
|
|
|
placeholder="This is an uncontrolled input for warning."
|
|
|
|
validation="WARNING"
|
|
|
|
/>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-07-02 00:56:32 +03:00
|
|
|
<System.Input
|
|
|
|
label="Error"
|
|
|
|
placeholder="This is an uncontrolled input for error."
|
|
|
|
validation="ERROR"
|
|
|
|
/>
|
2020-06-24 05:02:55 +03:00
|
|
|
<br />
|
|
|
|
<System.CodeBlock>
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-07-04 08:05:39 +03:00
|
|
|
{`class ExampleSuccess extends React.Component {
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Success"
|
|
|
|
placeholder="This is an uncontrolled input for success."
|
|
|
|
validation="SUCCESS"
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
{`<System.Input label="Success" placeholder="This is an uncontrolled input for success." validation="SUCCESS" />
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-06-24 05:02:55 +03:00
|
|
|
|
2020-07-04 08:05:39 +03:00
|
|
|
class ExampleWarning extends React.Component {
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Warning"
|
|
|
|
placeholder="This is an uncontrolled input for warning."
|
|
|
|
validation="WARNING"
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}
|
2020-06-24 05:02:55 +03:00
|
|
|
|
2020-07-04 08:05:39 +03:00
|
|
|
class ExampleError extends React.Component {
|
|
|
|
render() {
|
|
|
|
return(
|
|
|
|
<Input
|
|
|
|
label="Error"
|
|
|
|
placeholder="This is an uncontrolled input for error."
|
|
|
|
validation="ERROR"
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2020-07-03 19:38:44 +03:00
|
|
|
}`}
|
2020-06-24 05:02:55 +03:00
|
|
|
</System.CodeBlock>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-07-04 08:05:39 +03:00
|
|
|
<System.H2>Accepted React Properties</System.H2>
|
2020-06-24 05:02:55 +03:00
|
|
|
<hr />
|
|
|
|
<br />
|
2020-07-01 10:31:55 +03:00
|
|
|
<Group title="Inputs">
|
2020-06-24 05:02:55 +03:00
|
|
|
<System.Table
|
|
|
|
data={{
|
|
|
|
columns: [
|
2020-07-02 00:56:32 +03:00
|
|
|
<<<<<<< HEAD
|
2020-06-24 05:02:55 +03:00
|
|
|
{ key: 'a', name: 'Name', width: '128px' },
|
|
|
|
{ key: 'b', name: 'Type', width: '88px' },
|
|
|
|
{ key: 'c', name: 'Default', width: '88px' },
|
|
|
|
{ key: 'd', name: 'Description', width: '100%' },
|
|
|
|
],
|
|
|
|
rows: [
|
2020-07-01 10:31:55 +03:00
|
|
|
{ id: 1, a: 'name', b: 'string', c: 'null', d: 'Radio Group name' },
|
2020-06-24 05:02:55 +03:00
|
|
|
{ id: 2, a: 'label', b: 'string', c: 'null', d: 'Label text' },
|
|
|
|
{ id: 3, a: 'max', b: 'number', c: 'null', d: 'Max number of input characters' },
|
|
|
|
{ id: 4, a: 'tooltip', b: 'string', c: 'null', d: 'Tooltip text' },
|
2020-07-01 10:31:55 +03:00
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
a: 'validation',
|
|
|
|
b: 'string',
|
|
|
|
c: 'null',
|
|
|
|
d: 'Validation style. Use: SUCCESS, WARNING or ERROR',
|
2020-07-02 00:56:32 +03:00
|
|
|
=======
|
|
|
|
{ key: "a", name: "Name", width: "128px" },
|
|
|
|
{ key: "b", name: "Type", width: "88px" },
|
|
|
|
{ key: "c", name: "Default", width: "88px" },
|
|
|
|
{ key: "d", name: "Description", width: "100%" },
|
|
|
|
],
|
|
|
|
rows: [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
a: "name",
|
|
|
|
b: "string",
|
|
|
|
c: "null",
|
|
|
|
d: "Radio Group name",
|
|
|
|
},
|
|
|
|
{ id: 2, a: "label", b: "string", c: "null", d: "Label text" },
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
a: "max",
|
|
|
|
b: "number",
|
|
|
|
c: "null",
|
|
|
|
d: "Max number of input characters",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
a: "tooltip",
|
|
|
|
b: "string",
|
|
|
|
c: "null",
|
|
|
|
d: "Tooltip text",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
a: "validation",
|
|
|
|
b: "string",
|
|
|
|
c: "null",
|
|
|
|
d: "Validation style. Use: SUCCESS, WARNING or ERROR",
|
|
|
|
>>>>>>> added country dropdown and refactored dropdown options
|
2020-07-01 10:31:55 +03:00
|
|
|
},
|
2020-06-24 05:02:55 +03:00
|
|
|
],
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Group>
|
2020-06-22 14:00:51 +03:00
|
|
|
</SystemPage>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|