UNPKG

5.86 kBMarkdownView Raw
1# React Date Picker
2
3[![npm version](https://badge.fury.io/js/react-datepicker.svg)](https://badge.fury.io/js/react-datepicker)
4[![Build Status](https://travis-ci.org/Hacker0x01/react-datepicker.svg?branch=master)](https://travis-ci.org/Hacker0x01/react-datepicker)
5[![Dependency Status](https://david-dm.org/Hacker0x01/react-datepicker.svg)](https://david-dm.org/Hacker0x01/react-datepicker)
6[![codecov](https://codecov.io/gh/Hacker0x01/react-datepicker/branch/master/graph/badge.svg)](https://codecov.io/gh/Hacker0x01/react-datepicker)
7[![Downloads](http://img.shields.io/npm/dm/react-datepicker.svg)](https://npmjs.org/package/react-datepicker)
8
9A simple and reusable Datepicker component for React ([Demo](https://hacker0x01.github.io/react-datepicker/))
10
11![](https://cloud.githubusercontent.com/assets/1412392/5339491/c40de124-7ee1-11e4-9f07-9276e2545f27.png)
12
13## Installation
14
15The package can be installed via NPM:
16
17```
18npm install react-datepicker --save
19```
20
21You’ll need to install React and Moment.js separately since those dependencies aren’t included in the package. Below is a simple example on how to use the Datepicker in a React view. You will also need to require the css file from this package (or provide your own). The example below shows how to include the css from this package if your build system supports requiring css files (webpack is one that does).
22
23```js
24import React from 'react';
25import DatePicker from 'react-datepicker';
26import moment from 'moment';
27
28import 'react-datepicker/dist/react-datepicker.css';
29
30// CSS Modules, react-datepicker-cssmodules.css
31// import 'react-datepicker/dist/react-datepicker-cssmodules.css';
32
33class Example extends React.Component {
34 constructor (props) {
35 super(props)
36 this.state = {
37 startDate: moment()
38 };
39 this.handleChange = this.handleChange.bind(this);
40 }
41
42 handleChange(date) {
43 this.setState({
44 startDate: date
45 });
46 }
47
48 render() {
49 return <DatePicker
50 selected={this.state.startDate}
51 onChange={this.handleChange}
52 />;
53 }
54}
55```
56
57## Configuration
58
59The most basic use of the DatePicker can be described with:
60
61```js
62<DatePicker selected={this.state.date} onChange={this.handleChange} />
63```
64
65You can use `onSelect` event handler which fires each time some calendar date has been selected
66
67```js
68<DatePicker selected={this.state.date}
69 onSelect={this.handleSelect //when day is clicked}
70 onChange={this.handleChange //only when value has changed}
71/>
72```
73
74`onClickOutside` handler may be useful to close datepicker in `inline` mode
75
76See [here](https://github.com/Hacker0x01/react-datepicker/blob/master/docs/datepicker.md) for a full list of props that may be passed to the component. Examples are given on the [main website](https://hacker0x01.github.io/react-datepicker).
77
78### Localization
79
80The date picker relies on [moment.js internationalization](http://momentjs.com/docs/#/i18n/) to localize its display components. By default, the date picker will use the locale globally set in moment, which is English. Locales can be changed in the following ways:
81
82- **Globally** by calling `moment.locale(lang)`
83- **Picker-specific** by providing the `locale` prop
84
85Locales can be further configured in moment with various [customization options](http://momentjs.com/docs/#/customization/).
86
87_As of version 0.23, the `weekdays` and `weekStart` DatePicker props have been removed. Instead, they can be configured with the `weekdaysMin` and `week.dow` moment locale customization options._
88
89## Compatibility
90
91### React
92
93We're always trying to stay compatible with the latest version of React. We can't support all older versions of React, since React is still < 1.0 and introducing breaking changes every release.
94
95Latest compatible versions:
96- React 15.5 or newer: All above React-datepicker v.0.40.0
97- React 15.4.1: needs React-datepicker v0.40.0, newer won't work (due to react-onclickoutside dependencies)
98- React 0.14 or newer: All above React-datepicker v0.13.0
99- React 0.13: React-datepicker v0.13.0
100- pre React 0.13: React-datepicker v0.6.2
101
102### Browser Support
103
104The date picker is compatible with the latest versions of Chrome, Firefox, and IE10+.
105
106Unfortunately it is difficult to support legacy browsers while maintaining our ability to develop new features in the future. For IE9 support, it is known that the [classlist polyfill](https://www.npmjs.com/package/classlist-polyfill) is needed, but this may change or break at any point in the future.
107
108## Local Development
109
110The `master` branch contains the latest version of the Datepicker component. To start your example app, you can run `yarn start`. This starts a simple webserver on http://localhost:8080.
111
112You can run `yarn test` to execute the test suite and linters. To help you develop the component we’ve set up some tests that covers the basic functionality (can be found in `/tests`). Even though we’re big fans of testing, this only covers a small piece of the component. We highly recommend you add tests when you’re adding new functionality.
113
114### The examples
115The examples are hosted within the docs folder and are ran in the simple add that loads the Datepicker. To extend the examples with a new example, you can simply duplicate one of the existing examples and change the unique properties of your example.
116
117## Accessibility
118
119### Keyboard support
120
121* *Left*: Move to the previous day.
122* *Right*: Move to the next day.
123* *Up*: Move to the previous week.
124* *Down*: Move to the next week.
125* *PgUp*: Move to the previous month.
126* *PgDn*: Move to the next month.
127* *Home*: Move to the previous year.
128* *End*: Move to the next year.
129* *Enter/Esc/Tab*: close the calendar. (Enter & Esc calls preventDefautl)
130
131## License
132
133Copyright (c) 2016 HackerOne Inc. and individual contributors. Licensed under MIT license, see [LICENSE](LICENSE) for the full license.
134
\No newline at end of file