All Projects → hypeserver → React Date Range

hypeserver / React Date Range

Licence: mit
A React component for choosing dates and date ranges.

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to React Date Range

vue3-date-time-picker
Datepicker component for Vue 3
Stars: ✭ 157 (-92.35%)
Mutual labels:  datetime, datetimepicker
svelty-picker
Simple date & time picker in svelte
Stars: ✭ 38 (-98.15%)
Mutual labels:  datetime, datetimepicker
hawking
A Natural Language Date Time Parser that Extract date and time from text with context and parse to the required format
Stars: ✭ 168 (-91.81%)
Mutual labels:  datetime, datetimepicker
material-ui-datetimepicker
[UNMAINTAINED] Wrapper for Material UI Date and Time picker components
Stars: ✭ 32 (-98.44%)
Mutual labels:  datetime, datetimepicker
Tempus Dominus
A powerful Date/time picker widget.
Stars: ✭ 6,900 (+236.26%)
Mutual labels:  datetime, datetimepicker
Angular Bootstrap Datetimepicker
Native Angular date/time picker component styled by Twitter Bootstrap
Stars: ✭ 1,289 (-37.18%)
Mutual labels:  datetime, datetimepicker
mds-angular-datetime-picker-package
Angular 2+ And Bootstrap 4+ DateTimePicker
Stars: ✭ 18 (-99.12%)
Mutual labels:  datetime, datetimepicker
Jedate
jeDate V6.5.0 是一款原生JS开发的 不依赖任何第三方库 大众化的日期控件,她身兼多职,虽不是万能的,但是她却是功能强大多样的美少女,她除了包含 单双面板、区域选择、 多语言、日历固定、有效无效日期、日期时间戳转换、日期加减、限制时分秒、初始化日期加减N、日期标注点、设定年月(YYYY-MM)、日期范围限制、开始日期设定、自定义日期格式、当天的前后若干天返回、时分秒选择、智能响应、自动纠错、节日识别,操作等常规功能外,根据不同的日期格式,显示不同内容,还拥有更多趋近完美的解决方案。更多的是需要你与她的亲密接触与呵护!
Stars: ✭ 433 (-78.9%)
Mutual labels:  datetime, datetimepicker
Vue Datetime
Mobile friendly datetime picker for Vue. Supports date and datetime modes, i18n and more.
Stars: ✭ 928 (-54.78%)
Mutual labels:  datetime, datetimepicker
Rc Datetime Picker
React component for datetime picker by Moment.js
Stars: ✭ 85 (-95.86%)
Mutual labels:  datetime, datetimepicker
Tail.datetime
A lightweight, translat- and configurable Open Source DateTime Picker, written in pure vanilla JavaScript!
Stars: ✭ 139 (-93.23%)
Mutual labels:  datetime, datetimepicker
Pyjson tricks
Extra features for Python's JSON: comments, order, numpy, pandas, datetimes, and many more! Simple but customizable.
Stars: ✭ 131 (-93.62%)
Mutual labels:  datetime
Bokkypoobahsdatetimelibrary
Gas-Efficient Solidity DateTime Library
Stars: ✭ 111 (-94.59%)
Mutual labels:  datetime
Pg Calendar
📆 beautiful and eidetic date picker
Stars: ✭ 109 (-94.69%)
Mutual labels:  datetime
Hcddatetimepicker
A beautiful DateTimePicker. 自定义的一个漂亮的有多种时间格式选择的时间选择器.
Stars: ✭ 108 (-94.74%)
Mutual labels:  datetimepicker
Anytime
Anything to POSIXct or Date Converter
Stars: ✭ 137 (-93.32%)
Mutual labels:  datetime
Dateutil
Useful extensions to the standard Python datetime features
Stars: ✭ 1,706 (-16.86%)
Mutual labels:  datetime
Timex
A complete date/time library for Elixir projects.
Stars: ✭ 1,538 (-25.05%)
Mutual labels:  datetime
Time Stamp
Get a formatted timestamp. Used in gulp, assemble, generate, and many others.
Stars: ✭ 104 (-94.93%)
Mutual labels:  datetime
Dateparse
GoLang Parse many date strings without knowing format in advance.
Stars: ✭ 1,365 (-33.48%)
Mutual labels:  datetime

react-date-range

npm npm npm sponsors

A date library agnostic React component for choosing dates and date ranges. Uses date-fns for date operations.

Why should you use react-date-range?

  • Stateless date operations
  • Highly configurable
  • Multiple range selection
  • Based on native js dates
  • Drag n Drop selection
  • Keyboard friendly

Live Demo : http://hypeserver.github.io/react-date-range

Getting Started

Installation

npm install --save react-date-range

This plugin expects react and date-fns as peerDependencies, It means that you need to install them in your project folder.

npm install --save react date-fns

Usage

You need to import skeleton and theme styles first.

import 'react-date-range/dist/styles.css'; // main style file
import 'react-date-range/dist/theme/default.css'; // theme css file

DatePicker

import { Calendar } from 'react-date-range';

class MyComponent extends Component {
  handleSelect(date){
    console.log(date); // native Date object
  }
  render(){
    return (
      <Calendar
        date={new Date()}
        onChange={this.handleSelect}
      />
    )
  }
}

DateRangePicker / DateRange

import { DateRangePicker } from 'react-date-range';

class MyComponent extends Component {
  handleSelect(ranges){
    console.log(ranges);
    // {
    //   selection: {
    //     startDate: [native Date Object],
    //     endDate: [native Date Object],
    //   }
    // }
  }
  render(){
    const selectionRange = {
      startDate: new Date(),
      endDate: new Date(),
      key: 'selection',
    }
    return (
      <DateRangePicker
        ranges={[selectionRange]}
        onChange={this.handleSelect}
      />
    )
  }
}

Options

Property type Default Value Description
locale Object enUS from locale you can view full list from here. Locales directly exported from date-fns/locales.
className String wrapper classname
months Number 1 rendered month count
showSelectionPreview Boolean true show preview on focused/hovered dates
showMonthAndYearPickers Boolean true show select tags for month and year on calendar top, if false it will just display the month and year
rangeColors String[] defines color for selection preview.
shownDate Date initial focus date
minDate Date defines minimum date. Disabled earlier dates
maxDate Date defines maximum date. Disabled later dates
direction String 'vertical' direction of calendar months. can be vertical or horizontal
disabledDates Date[] [] dates that are disabled
disabledDay Func predicate function that disable day fn(date: Date)
scroll Object { enabled: false } infinite scroll behaviour configuration. Check out Infinite Scroll section
showMonthArrow Boolean true show/hide month arrow button
navigatorRenderer Func renderer for focused date navigation area. fn(currentFocusedDate: Date, changeShownDate: func, props: object)
ranges *Object[] [] Defines ranges. array of range object
moveRangeOnFirstSelection(DateRange) Boolean false move range on startDate selection. Otherwise endDate will replace with startDate unless retainEndDateOnFirstSelection is set to true.
retainEndDateOnFirstSelection(DateRange) Boolean false Retain end date when the start date is changed, unless start date is later than end date. Ignored if moveRangeOnFirstSelection is set to true.
onChange(Calendar) Func callback function for date changes. fn(date: Date)
onChange(DateRange) Func callback function for range changes. fn(changes). changes contains changed ranges with new startDate/endDate properties.
color(Calendar) String #3d91ff defines color for selected date in Calendar
date(Calendar) Date date value for Calendar
showDateDisplay(DateRange) Boolean true show/hide selection display row. Uses dateDisplayFormat for formatter
onShownDateChange(DateRange,Calendar) Function Callback function that is called when the shown date changes
initialFocusedRange(DateRange) Object Initial value for focused range. See focusedRange for usage.
focusedRange(DateRange) Object It defines which range and step are focused. Common initial value is [0, 0]; first value is index of ranges, second one is which step on date range(startDate or endDate).
onRangeFocusChange(DateRange) Object Callback function for focus changes
preview(DateRange) Object displays a preview range and overwrite DateRange's default preview. Expected shape: { startDate: Date, endDate: Date, color: String }
showPreview(DateRange) bool true visibility of preview
editableDateInputs(Calendar) bool false whether dates can be edited in the Calendar's input fields
dragSelectionEnabled(Calendar) bool true whether dates can be selected via drag n drop
calendarFocus(Calendar) String 'forwards' Whether calendar focus month should be forward-driven or backwards-driven. can be 'forwards' or 'backwards'
preventSnapRefocus(Calendar) bool false prevents unneceessary refocus of shown range on selection
onPreviewChange(DateRange) Object Callback function for preview changes
dateDisplayFormat String MMM d, yyyy selected range preview formatter. Check out date-fns's format option
dayDisplayFormat String d selected range preview formatter. Check out date-fns's format option
weekdayDisplayFormat String E selected range preview formatter. Check out date-fns's format option
monthDisplayFormat String MMM yyyy selected range preview formatter. Check out date-fns's format option
weekStartsOn Number Whether the week start day that comes from the locale will be overriden. Default value comes from your locale, if no local is specified, note that default locale is enUS
startDatePlaceholder String Early Start Date Placeholder
endDatePlaceholder String Continuous End Date Placeholder
fixedHeight Boolean false Since some months require less than 6 lines to show, by setting this prop, you can force 6 lines for all months.
renderStaticRangeLabel(DefinedRange) Function Callback function to be triggered for the static range configurations that have hasCustomRendering: true on them. Instead of rendering staticRange.label, return value of this callback will be rendered.
staticRanges(DefinedRange, DateRangePicker) Array default preDefined ranges -
inputRanges(DefinedRange, DateRangePicker) Array default input ranges -
ariaLabels Object {} inserts aria-label to inner elements
dayContentRenderer Function null Function to customize the rendering of Calendar Day. given a date is supposed to return what to render.

*shape of range:

 {
   startDate: PropTypes.object,
   endDate: PropTypes.object,
   color: PropTypes.string,
   key: PropTypes.string,
   autoFocus: PropTypes.bool,
   disabled: PropTypes.bool,
   showDateDisplay: PropTypes.bool,
 }

**shape of ariaLabels:

 {
   // The key of dateInput should be same as key in range.
   dateInput: PropTypes.objectOf(
     PropTypes.shape({
       startDate: PropTypes.string,
       endDate: PropTypes.string
     })
   ),
   monthPicker: PropTypes.string,
   yearPicker: PropTypes.string,
   prevButton: PropTypes.string,
   nextButton: PropTypes.string,
 }

Infinite Scrolled Mode

To enable infinite scroll set scroll={{enabled: true}} basically. Infinite scroll feature is affected by direction(rendering direction for months) and months(for rendered months count) props directly. If you prefer, you can overwrite calendar sizes with calendarWidth/calendarHeight or each month's height/width with monthWidth/monthHeight/longMonthHeight at scroll prop.

  // shape of scroll prop
  scroll: {
    enabled: PropTypes.bool,
    monthHeight: PropTypes.number,
    longMonthHeight: PropTypes.number, // some months has 1 more row than others
    monthWidth: PropTypes.number, // just used when direction="horizontal"
    calendarWidth: PropTypes.number, // defaults monthWidth * months
    calendarHeight: PropTypes.number, // defaults monthHeight * months
  }),

Release workflow

  • Merge everything that needs to be in the release to master
  • Open a new release PR than:
    • bumps version to appropriate one <new_version>
    • Update CHANGELOG.md
  • Make sure the demo and important features are working as expected
  • After merging, tag the master commit with release/<new_version> and let Github Action handle publishing
  • = Profit 🙈

TODOs

  • Make mobile friendly (integrate tap and swipe actions)
  • Add tests
  • Improve documentation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].