mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-11 01:31:31 +03:00
100 lines
2.3 KiB
JavaScript
100 lines
2.3 KiB
JavaScript
import * as React from 'react';
|
|
import * as System from '~/components/system';
|
|
|
|
import SystemPage from '~/components/system/SystemPage';
|
|
import ViewSourceLink from '~/components/system/ViewSourceLink';
|
|
|
|
export default class SystemPageToggles extends React.Component {
|
|
state = {
|
|
three: true,
|
|
four: false,
|
|
};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<SystemPage title="SDS: Toggles" description="..." url="https://fps.onrender.com/toggles">
|
|
<System.H1>
|
|
Toggles <ViewSourceLink file="system/toggles.js" />
|
|
</System.H1>
|
|
<br />
|
|
<br />
|
|
<System.P>The Toggle component is used to switch between two states.</System.P>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Imports</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.P>
|
|
Import React and the Toggle Component.
|
|
</System.P>
|
|
<br />
|
|
<br />
|
|
<System.CodeBlock>
|
|
{`import * as React from 'react';
|
|
import { Toggle } from 'slate-react-system';`}
|
|
</System.CodeBlock>
|
|
<br />
|
|
<br />
|
|
<System.H2>Usage</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.P>Declare the Toggle component.</System.P>
|
|
<br />
|
|
<System.CodeBlock>
|
|
{`class ExampleOne extends React.Component {
|
|
state = { exampleOne: true }
|
|
|
|
_handleChange = e => this.setState(
|
|
{ [e.target.name]: e.target.value }
|
|
);
|
|
|
|
render() {
|
|
return(
|
|
<Toggle
|
|
active={this.state.exampleOne}
|
|
name="exampleOne"
|
|
onChange={this._handleChange}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|
|
|
|
class ExampleTwo extends React.Component {
|
|
state = { exampleTwo: false }
|
|
|
|
_handleChange = e => this.setState(
|
|
{ [e.target.name]: e.target.value }
|
|
);
|
|
|
|
render() {
|
|
return(
|
|
<Toggle
|
|
active={this.state.exampleTwo}
|
|
name="exampleTwo"
|
|
onChange={this._handleChange}
|
|
/>
|
|
)
|
|
}
|
|
}`}
|
|
</System.CodeBlock>
|
|
|
|
<br />
|
|
<br />
|
|
<System.H2>Output</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.Toggle active={this.state.three} name="three" onChange={this._handleChange} />
|
|
<br />
|
|
<br />
|
|
<System.Toggle active={this.state.four} name="four" onChange={this._handleChange} />
|
|
</SystemPage>
|
|
);
|
|
}
|
|
}
|