mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 10:52:41 +03:00
283 lines
7.9 KiB
JavaScript
283 lines
7.9 KiB
JavaScript
import * as React from "react";
|
|
import * as System from "~/components/system";
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import moment from "moment";
|
|
import Group from "~/components/system/Group";
|
|
import SystemPage from "~/components/system/SystemPage";
|
|
import ViewSourceLink from "~/components/system/ViewSourceLink";
|
|
import CodeBlock from "~/components/system/CodeBlock";
|
|
|
|
const weekdaysOnly = (date) => {
|
|
if (moment(date).day() === 0 || moment(date).day() === 6) return true;
|
|
return false;
|
|
};
|
|
|
|
export default class SystemPageDatepicker extends React.Component {
|
|
state = {
|
|
exampleOne: "",
|
|
exampleTwo: "",
|
|
exampleThree: "2020-07-13",
|
|
};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<SystemPage
|
|
title="SDS: Datepicker"
|
|
description="..."
|
|
url="https://slate.host/_/system/datepicker"
|
|
>
|
|
<System.H1>
|
|
Datepicker <ViewSourceLink file="system/datepicker.js" />
|
|
</System.H1>
|
|
<br />
|
|
<br />
|
|
<System.P>
|
|
The DatePicker component is used to allow the user to select a date.
|
|
It returns a string in the yyyy-mm-dd form.
|
|
</System.P>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Imports</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.P>Import React and the DatePicker Component.</System.P>
|
|
<br />
|
|
<br />
|
|
<CodeBlock>
|
|
{`import * as React from "react";
|
|
import { DatePicker } from "slate-react-system";`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<System.H2>Datepicker with disabled dates</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.DatePicker
|
|
label="Pick a date with weekends disabled"
|
|
name="exampleOne"
|
|
value={this.state.exampleOne}
|
|
isDisabled={weekdaysOnly}
|
|
onChange={this._handleChange}
|
|
/>
|
|
<br />
|
|
<br />
|
|
<System.P>
|
|
Define a function to specify disabled dates. This function accepts a
|
|
Date object and returns true for dates that are disabled (cannot be
|
|
selected), false otherwise.
|
|
</System.P>
|
|
<br />
|
|
<CodeBlock>
|
|
{`import moment from "moment";
|
|
|
|
const weekdaysOnly = (date) => {
|
|
if (moment(date).day() === 0 || moment(date).day() === 6) return true;
|
|
return false;
|
|
};`}
|
|
</CodeBlock>
|
|
<br />
|
|
<System.P>
|
|
Define the DatePicker component with the isDisabled function.
|
|
</System.P>
|
|
<br />
|
|
<CodeBlock>
|
|
{`class ExampleOne extends React.Component {
|
|
state = { exampleOne: "" };
|
|
|
|
_handleChange = (e) => this.setState({ [e.target.name]: e.target.value });
|
|
|
|
render() {
|
|
return (
|
|
<DatePicker
|
|
label="Pick a date with weekends disabled"
|
|
name="exampleOne"
|
|
value={this.state.exampleOne}
|
|
isDisabled={weekdaysOnly}
|
|
onChange={this._handleChange}
|
|
/>
|
|
);
|
|
}
|
|
}`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Datepicker with minimum value</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.DatePicker
|
|
label="Pick a date with a minimum value"
|
|
tooltip="Date must be today or after"
|
|
name="exampleTwo"
|
|
value={this.state.exampleTwo}
|
|
min={new Date()}
|
|
onChange={this._handleChange}
|
|
/>
|
|
<br />
|
|
<br />
|
|
<System.P>
|
|
Declare the DatePicker component with a minimum value in the form of a
|
|
Date or an ISO 8601 String.
|
|
</System.P>
|
|
<br />
|
|
<CodeBlock>
|
|
{`class ExampleTwo extends React.Component {
|
|
state = { exampleTwo: "" };
|
|
|
|
_handleChange = (e) => this.setState({ [e.target.name]: e.target.value });
|
|
|
|
render() {
|
|
return (
|
|
<DatePicker
|
|
label="Pick a date with a minimum value"
|
|
tooltip="Date must be today or after"
|
|
name="exampleTwo"
|
|
value={this.state.exampleTwo}
|
|
min={new Date()}
|
|
onChange={this._handleChange}
|
|
/>
|
|
);
|
|
}
|
|
}`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Datepicker with default value</System.H2>
|
|
<hr />
|
|
<br />
|
|
<System.DatePicker
|
|
label="Pick a date with a default value"
|
|
name="exampleThree"
|
|
value={this.state.exampleThree}
|
|
onChange={this._handleChange}
|
|
/>
|
|
<br />
|
|
<br />
|
|
<System.P>
|
|
Declare the DatePicker component with a default value in the form of a
|
|
Date or an ISO 8601 String.
|
|
</System.P>
|
|
<br />
|
|
<CodeBlock>
|
|
{`class ExampleThree extends React.Component {
|
|
state = { exampleThree: "2020-07-13" };
|
|
|
|
_handleChange = (e) => this.setState({ [e.target.name]: e.target.value });
|
|
|
|
render() {
|
|
return (
|
|
<DatePicker
|
|
label="Pick a date with a default value"
|
|
name="exampleThree"
|
|
value={this.state.exampleThree}
|
|
onChange={this._handleChange}
|
|
/>
|
|
);
|
|
}
|
|
}`}
|
|
</CodeBlock>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<System.H2>Accepted React Properties</System.H2>
|
|
<hr />
|
|
<br />
|
|
<Group title="DatePicker">
|
|
<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 }}>
|
|
value
|
|
</span>
|
|
),
|
|
b: ["string", "Date"],
|
|
c: "null",
|
|
d:
|
|
"The value of the datepicker. 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",
|
|
},
|
|
{
|
|
id: 7,
|
|
a: "min",
|
|
b: ["string", "Date"],
|
|
c: "null",
|
|
d: "Earliest date allowed. String must be in yyyy-mm-dd form",
|
|
},
|
|
{
|
|
id: 8,
|
|
a: "max",
|
|
b: ["string", "Date"],
|
|
c: "null",
|
|
d: "Latest date allowed. String must be in yyyy-mm-dd form",
|
|
},
|
|
{
|
|
id: 9,
|
|
a: "isDisabled",
|
|
b: "function",
|
|
c: "null",
|
|
d:
|
|
"Function that accepts a Date object and returns true if the date should be disabled (cannot be selected), false otherwise",
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
</Group>
|
|
</SystemPage>
|
|
);
|
|
}
|
|
}
|