slate/pages/_/system/toggles.js

182 lines
4.6 KiB
JavaScript

import * as React from "react";
import * as System from "~/components/system";
import * as Constants from "~/common/constants";
import Group from "~/components/system/Group";
import SystemPage from "~/components/system/SystemPage";
import ViewSourceLink from "~/components/system/ViewSourceLink";
import CodeBlock from "~/components/system/CodeBlock";
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://slate.host/_/system/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 />
<CodeBlock>
{`import * as React from "react";
import { Toggle } from "slate-react-system";`}
</CodeBlock>
<br />
<br />
<System.H2>Usage</System.H2>
<hr />
<br />
<System.P>Declare the Toggle component.</System.P>
<br />
<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}
/>
);
}
}
`}
</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}
/>
<br />
<br />
<br />
<System.H2>Accepted React Properties</System.H2>
<hr />
<br />
<Group title="Toggles">
<System.Table
data={{
columns: [
{ key: "a", name: "Name", width: "128px" },
{ key: "b", name: "Type", width: "88px", type: "OBJECT_TYPE" },
{ key: "c", name: "Default", width: "88px" },
{ key: "d", name: "Description", width: "100%" },
],
rows: [
{
id: 1,
a: (
<span style={{ fontFamily: Constants.font.semiBold }}>
onChange
</span>
),
b: "function",
c: "null",
d: "Function called upon an onChange event",
},
{
id: 2,
a: (
<span style={{ fontFamily: Constants.font.semiBold }}>
active
</span>
),
b: "boolean",
c: "false",
d:
"The value that the dropdown takes. Can be used to assign default values as well.",
},
{
id: 3,
a: "name",
b: "string",
c: "null",
d: "Input name",
},
{
id: 4,
a: "label",
b: "string",
c: "null",
d: "Label text",
},
{
id: 5,
a: "description",
b: "string",
c: "null",
d: "Description text",
},
{
id: 6,
a: "tooltip",
b: "string",
c: "null",
d: "Tooltip text",
},
],
}}
/>
</Group>
</SystemPage>
);
}
}