Skip to content

Commit 9e2df2f

Browse files
[changed] add modal layer and add rollup for production
1 parent 809e0da commit 9e2df2f

22 files changed

+1032
-897
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["react", "es2015", "stage-0"],
2+
"presets": ["es2015", "react", "stage-0"]
33
}

.github/preview.gif

128 KB
Loading

README.md

+73-48
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,106 @@
11
# react-mobile-datepicker
22
[![Travis][build-badge]][build] [![npm package][npm-badge]][npm] [![Coveralls][coveralls-badge]][coveralls]
33

4-
一个移动端时间选择器react组件
5-
---------------------------------------
4+
5+
**a lightweight react date picker for mobile, Not more than 4k**
6+
7+
react-mobile-datepicker provides a component that can set year, month and day by sliding up or down.
8+
9+
610

711
<div style="padding:30px">
812
<img src="https://raw.githubusercontent.com/lanjingling0510/react-mobile-datepicker/master/.github/preview.gif" width="300" />
913
</div>
1014

1115

1216

13-
安装
14-
------------
17+
18+
## Getting Started
19+
20+
### Install
21+
1522
Using [npm](https://www.npmjs.com/):
1623

1724
$ npm install react-mobile-datepicker --save
1825

26+
### Import what you need
27+
The following guide assumes you have some sort of ES2015 build set up using babel and/or webpack/browserify/gulp/grunt/etc.
1928

20-
然后,使用模块加载工具流,支持common.js或ES2015模块,例如[webpack](https://github.com/webpack/webpack)
2129

2230
```js
2331
// Using an ES6 transpiler like Babel
32+
import React from 'react';
33+
import ReactDOM from 'react-dom';
2434
import DatePicker from 'react-mobile-datepicker';
25-
import 'react-mobile-datepicker/dist/mobile-datepicker.css'; // Make sure to import the default stylesheet
26-
27-
// Not using an ES6 transpiler
28-
var DatePicker = require('react-mobile-datepicker');
29-
require('react-mobile-datepicker/dist/mobile-datepicker.css');
3035
```
3136

32-
使用
33-
------------
34-
### 例子
3537

36-
```js
37-
import React, { Component } from 'react';
38-
import { render } from 'react-dom';
39-
import DatePicker from 'mobile-datepicker';
40-
import 'react-mobile-datepicker/dist/mobile-datepicker.css'; // only needs to be imported once
41-
42-
// Render the Calendar
43-
var today = new Date();
44-
var minDate = Number(new Date()) - (24*60*60*1000) * 7; // One week before today
38+
### Usage Example
4539

4640

47-
48-
render(
49-
<DatePicker
50-
startDate={today}
51-
minDate={minDate}
52-
onSelect={(time) => { console.log(time); }} />,
53-
document.getElementById('root')
54-
);
41+
```js
42+
class App extends React.Component {
43+
state = {
44+
time: new Date(),
45+
isOpen: false,
46+
}
47+
48+
handleClick = () => {
49+
this.setState({ isOpen: true });
50+
}
51+
52+
handleSelect = (time) => {
53+
this.setState({ time, isOpen: false });
54+
}
55+
56+
render() {
57+
return (
58+
<div className="App">
59+
<a
60+
className="select-btn"
61+
onClick={this.handleClick}>
62+
select time
63+
</a>
64+
<p className="select-time ">
65+
{convertDate(this.state.time, 'YYYY-MM-DD')}
66+
</p>
67+
68+
<DatePicker
69+
date={this.state.time}
70+
isOpen={this.state.isOpen}
71+
onSelect={this.handleSelect} />
72+
</div>
73+
);
74+
}
75+
}
76+
77+
78+
ReactDOM.render(<App />, document.getElementById('react-box'));
5579
```
5680

5781

58-
Prop Types
59-
------------
82+
## PropTypes
6083

6184
| Property | Type | Default | Description |
6285
|:------------- |:------------- |:-------------- |:---------- |
63-
| btnColor | String | #fff | 完成按钮颜色 |
64-
| dateColor | String | #fff | 日期文字颜色 |
65-
| layerBackground | String | #ffa70b | 背景颜色 |
66-
| date | Date | new Date() | 初始日期 |
67-
| minDate | Date | 前一周 | 最小日期 |
68-
| maxDate | Date | new Date() | 最大日期 |
69-
| onSelect | Function | () => {} | 点击完成后的回调函数, Date对象作为参数 |
70-
71-
Changelog
72-
-------------
73-
74-
v1.0.3 - Thu, 23 Jun 2016 13:22:13 GMT
75-
--------------------------------------
76-
77-
- [5a93fe9](../../commit/5a93fe9) [changed] 更新了READEME
78-
86+
| btnColor | String | #fff | done button color |
87+
| dateColor | String | #fff | date of text color |
88+
| layerBackground | String | #ffa70b | background color |
89+
| date | Date | new Date() | date value |
90+
| minDate | Date | new Date(1970, 0, 1) | minimum date |
91+
| maxDate | Date | new Date(2050, 0, 1) | maximum date |
92+
| onSelect | Function | () => {} | the callback function after click button of done, Date object as a parameter |
93+
94+
## Changelog
95+
* [Changelog](CHANGELOG.md)
96+
97+
## How to Contribute
98+
99+
Anyone and everyone is welcome to contribute to this project. The best way to
100+
start is by checking our [open issues](https://github.com/lanjingling0510/react-mobile-datepicker/issues),
101+
[submit a new issues](https://github.com/lanjingling0510/react-mobile-datepicker/issues/new?labels=bug) or
102+
[feature request](https://github.com/lanjingling0510/react-mobile-datepicker/issues/new?labels=enhancement),
103+
participate in discussions, upvote or downvote the issues you like or dislike.
79104

80105

81106

dist/mobile-datepicker.css

-1
This file was deleted.

0 commit comments

Comments
 (0)