npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-datetime-range-super-picker

v1.14.1

Published

React date, time, date range, calender, clock i.e. all in one picker

Downloads

209

Readme

react-datetime-range-super-picker

React date, time, date-time range, calender, clock and even month i.e. all in one picker !!
This is a super picker due to how it handles date-time props for each components. This component permenantly solves the time handling issue where you get certain format of Date as an input and you have to return completely different format after user edit. Not to forget it does it while looking extremely cool !
There are lot of Date Range pickers but most of them do not handle Date-TIME Range picking

Amazing demo just for you ---> Checkout Demo

NPM JavaScript Style Guide

Install

Install using npm simply (If you can just get that long name right...)

npm install --save react-datetime-range-super-picker

if you are using yarn

yarn add react-datetime-range-super-picker

Install dependencies

Install using npm

npm install --save lodash date-fns

if you are using yarn

yarn add lodash date-fns

Preview

Table of Contents


TimePicker

import React, {useState} from 'react'

import { TimePicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const TimePickerWrapper = () => {

  const [hour24, setHour] = useState(22)
  const [minute, setMin] = useState(30)
  // OR use hour (12 hour format), minute and meridian (AM | PM) for props
  // OR for string time use : "HH:mm" ( 24 hrs ) | "hh:mm aa" ( 12 hrs )

  const handleTimeUpdate = ({time}) => {
    setHour(time.hour24)
    setMin(time.minute)
  }

  return (
    <TimePicker time={{hour24, minute }} 
      onTimeUpdate={handleTimeUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- | :---:| :--- | | time | Object String | Default value: "08:00 am"Time can be Json object, which can be either 12hr OR 24hr format.While using string time, format is hh:mm aaa (12 hr) OR HH:mm (24hr)Examples :12 hour format : { hour: 8, minute: 0, meridiem: 'AM' }24 hour format : { hour24: 16, minute: 0 }"16:30""08:30 AM"| | format (Optional) | String | Default value: 'hh:mm aaa' choose format of time returned and shown on picker | | onTimeUpdate | Function | This function will be called every time user changes time.Handler Arguments :{ { hour24, hour, minute, meridiem }, formatted}formatted will be time as per selected format |

Supports Input component : TimePickerInput . Checkout further details

DatePicker

import React, {useState} from 'react'

import { DatePicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DatePickerWrapper = () => {

  const [curr_date, setDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleDateUpdate = ({date}) => {
    setDate(date)
  }
  
  return (
    <DatePicker weekStartsOn={0} 
      date={curr_date}
      onDateUpdate={handleDateUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- | :---:| :--- | | date | Date ObjectJson ObjectString | Different types of input this prop can handle : JS Date object : new Date()Json Object :{ day : number, month : number, year : number }String : "1st january 2020"; string format needs to be same as format prop| | weekStartsOn | Number | Default value: 0 (Sunday) 0 = sunday -> 6 = saturdayUpdates calender date ordering | | format | String | Default value : "do MMMM yyyy" checkout all supported formats at date-fns| | onDateUpdate | Function | Every time user changes date, month or year this function will be called with following Json object as an argument: { day, month, year, date, formatted } | | onComplete | Function | Once user selects a date this handler is called. Can be used to hide picker on date select |

Supports Input component : DatePickerInput . Checkout further details

DateTimePicker

import React, {useState} from 'react'

import { DateTimePicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DateTimePickerWrapper = () => {

  const [curr_date, setDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleDateUpdate = ({date}) => {
    setDate(date.date)
  }
  
  return (
    <DateTimePicker date={curr_date}
      onDateTimeUpdate={handleDateUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- | :---:| :--- | | date | Date ObjectJson ObjectString | Different types of input this prop can handle : JS Date object : new Date()Json Object :{ day, month, year, hour? , hour24?, minute?, meridiem?}; use hour(12 hr format) with meridiem, OR hour24 and minute only for time String : "1st january 2020 12:30 PM"; string format needs to be same as format prop| | format (optional) | String | Select input and output string format of the picker. Default value : "dd/MM/YYY hh:mm aaa" More format supported date-fns| | timeFormat (optional) | String | Select time picker specific format. More format supported date-fns| | dateFormat (optional) | String | Select date picker specific format. More format supported date-fns| | weekStartsOn (optional) | Number | Default value: 0 (Sunday) 0 = sunday -> 6 = saturdayUpdates calender date ordering | | onDateTimeUpdate | Function | Every time user changes date or time this handler will be called. Arguments for the handlers : { date: { day, month, year, hour , hour24, minute, meridiem }, formatted } | | onDateUpdate (optional) | Function | Every time user changes date this handler will be called.Arguments for the handlers : { day, month, year, date, formatted } | | onTimeUpdate (optional) | Function | Every time user changes time this handler will be called.Arguments for the handlers : { time: { hour, hour24, minute, meridiem }, formatted } |

Supports Input component : DateTimePickerInput . Checkout further details

DateRangeCalendarPicker

import React, {useState} from 'react'

import { DateRangeCalendarPicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DateRangeCalendarPickerWrapper = () => {

  const [from_date, setFromDate] = useState(new Date())
  const [to_date, setToDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleFromDateUpdate = ({date}) => {
    setFromDate(date.date)
  }
  const handleToDateUpdate = ({date}) => {
    setToDate(date.date)
  }
  
  return (
    <DateRangeCalendarPicker from_date={from_date} to_date={to_date}
      onFromDateUpdate={handleFromDateUpdate} 
      onToDateUpdate={handleToDateUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- |:---:| :--- | | from_date,to_date | Date ObjectJson ObjectString | Different types of input this prop can handle : JS Date object : new Date()Json Object :{ day, month, year };String : "1st january 2020"; string format needs to be same as format prop| | format | String | Default value : "do MMMM yyyy" checkout all supported formats at date-fns| | weekStartsOn | Number | Default value: 0 (Sunday) 0 = sunday -> 6 = saturdayUpdates calender date ordering | | closeButtonText (Optional) | String | Default value: "Close" | | onFromDateUpdate,onToDateUpdate | Function | Every time user changes date this handler will be called.Arguments for the handlers : { day, month, year, date, formatted } | | onDone (optional) | Function | If this function is passed as a prop, picker will show a done/close button and call this handler when user clicks it. Can be used to easily handle picker hide state. |

Supports Input component : DateRangeCalendarPickerInput . Checkout further details

DateTimeRangePicker

import React, {useState} from 'react'

import { DateTimeRangePicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DateTimeRangePickerWrapper = () => {

  const [from_date, setFromDate] = useState(new Date())
  const [to_date, setToDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleFromDateUpdate = ({date}) => {
    setFromDate(date.date)
  }
  const handleToDateUpdate = ({date}) => {
    setToDate(date.date)
  }
  
  return (
    <DateTimeRangePicker from_date={from_date} to_date={to_date}
      onFromDateTimeUpdate={handleFromDateUpdate} 
      onToDateTimeUpdate={handleToDateUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- |:---:| :--- | | from_date,to_date | Date ObjectJson ObjectString | Different types of input this prop can handle : JS Date object : new Date()Json Object :{ day, month, year, hour? , hour24?, minute?, meridiem?}; use hour(12 hr format) with meridiem, OR hour24 and minute only for time String : "1st january 2020 12:30 PM"; string format needs to be same as format prop| | format | String | Default value : "dd/MM/YYY hh:mm aaa". More format supported date-fns| | timeFormat | String | More format supported date-fns| | dateFormat | String | More format supported date-fns| | weekStartsOn | Number | Default value: 0 (Sunday) 0 = sunday -> 6 = saturdayUpdates calender date ordering | | closeButtonText (Optional) | String | Default value: "Close" | | onFromDateTimeUpdate,onToDateTimeUpdate | Function | Every time user changes date or time this handler will be called Arguments for the handlers : { date: { day, month, year, hour , hour24, minute, meridiem }, formatted } | | onFromDateUpdate,onToDateUpdate(optional) | Function | Every time user changes date this handler will be called.Arguments for the handlers : { day, month, year, date, formatted } | | onFromTimeUpdate,onToTimeUpdate(optional) | Function | Every time user changes time this handler will be called.Arguments for the handlers : { time: { hour, hour24, minute, meridiem }, formatted } | | onDone (optional) | Function | If this function is passed as a prop, picker will show a done/close button and call this handler when user clicks it. Can be used to easily handle picker hide state. |

Supports Input component : DateTimeRangePickerInput . Checkout further details

MonthPicker

Bonus Month picker! Useful when you want to pick just month and year in a cool way.
import React, {useState} from 'react'

import { MonthPicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const MonthPickerWrapper = () => {

  const [res_month, setMonth] = useState(4)
  const [res_year, setYear] = useState(2020)
  // OR use Date object as input

  const handleUpdate = ({month, year}) => {
    setMonth(month)
    setYear(year)
  }
  
  return (
    <MonthPicker time={{month: res_month, year:res_year}}
      onDateUpdate={handleUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- | :---:| :--- | | time | Date OR Object | Example new Date(){ month : number, year : number } | | onDateUpdate | Function | Returns { month, year } |

DateRangePicker (Beta)

import React, {useState} from 'react'

import { DateRangePicker } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DateRangePickerWrapper = () => {

  const [from_date, setFromDate] = useState(new Date())
  const [to_date, setToDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleFromDateUpdate = ({date}) => {
    setFromDate(date.date)
  }
  const handleToDateUpdate = ({date}) => {
    setToDate(date.date)
  }
  
  return (
    <DateRangePicker from_date={from_date} to_date={to_date}
      onFromDateUpdate={handleFromDateUpdate} 
      onToDateUpdate={handleToDateUpdate} />
  )
}

Available Props:

| Props | Type | Description | | :--- |:---:| :--- | | from_date,to_date | Date ObjectJson ObjectString | Different types of input this prop can handle : JS Date object : new Date()Json Object :{ day, month, year };String : "1st january 2020"; string format needs to be same as format prop| | format | String | Default value : "do MMMM yyyy" checkout all supported formats at date-fns| | weekStartsOn | Number | Default value: 0 (Sunday) 0 = sunday -> 6 = saturdayUpdates calender date ordering | | closeButtonText (Optional) | String | Default value: "Close" | | onFromDateUpdate,onToDateUpdate | Function | Every time user changes date this handler will be called.Arguments for the handlers : { day, month, year, date, formatted } | | onDone (optional) | Function | If this function is passed as a prop, picker will show a done/close button and call this handler when user clicks it. Can be used to easily handle picker hide state. |

Supports Input component : DateRangePickerInput . Checkout further details

InputComponents

Input components are wrapper around their picker components. They handle show / hide states and logic internally. If you want to show a simple form input box, which will show or hide Picker component as per user interaction than use Input components. List of Input Components : TimePickerInput, DatePickerInput, DateTimePickerInput, DateTimeRangePickerInput.

Here is an example code for DateTimeRangePickerInput component.

import React, {useState} from 'react'

import { DateTimeRangePickerInput } from 'react-datetime-range-super-picker'
import 'react-datetime-range-super-picker/dist/index.css'


const DateTimeRangePickerInputWrapper = () => {

  const [from_date, setFromDate] = useState(new Date())
  const [to_date, setToDate] = useState(new Date())
  // OR use JSON object with : day, month, year

  const handleFromDateUpdate = ({date}) => {
    setFromDate(date.date)
  }
  const handleToDateUpdate = ({date}) => {
    setToDate(date.date)
  }
  
  return (
    <DateTimeRangePickerInput from_date={from_date} to_date={to_date}
      onFromDateTimeUpdate={handleFromDateUpdate} 
      onToDateTimeUpdate={handleToDateUpdate} />
  )
}

Every Input component takes the same props as simple picker component. In addition it provides extra props for styling. Which are as listed below.

| Props | Description | | :--- | :--- | | inputStyle | Pass styles directly to text box input component as Json object. Follows same rules as React style object. | | popupStyle | Pass styles directly to picker popup wrapper component as Json object. Can be used to position, resize wrapper. Follows same rules as React style object. | | className | String, css class to be used apply additional style to text box with raw css | | popupClassName | String, css class to be used apply additional style to picker popup with raw css | | isDisabled | Boolean, to control input model show | | inputComponent | React Component, to render custom input |

Note : All of above props are optional.

Styling

Every picker component color scheme can be changed with 2 props: theme and colors. Currently all picker supports few themes out of the box as shown in props table below. (More themes coming soon !!) Theme is created using colors listed in props table below.

There are 3 easy ways to customise color scheme to suit your requirements:

  1. Use theme prop if that matches your needs.
  2. Use all the colors and customise whole picker look.
  3. Use theme prop and override just the colors you want to change in that theme. i.e. choose "dark" theme and just override primary color

| Props | Type | Description | | :--- | :---:| :--- | | theme | String | light, dark, colorful Default is light | | colors | Json Object | Json object keys : primary_color primary_font_color light_font_color secondary_color primary_highlight_color secondary_highlight_color |

All styling props above are optional

  1. Light (Default)

FutureUpdates

Things that this date time range super picker library does not do (YET).
We are open to suggestions. Open an issue with your ideas, if we like it and it is really useful ( or just cool ) we will implement it in next release !
  • Filter props to handle disable / enable pickable dates
  • Time duration component with range picker
  • "Last X days/hours" dynamic selector for range picker

Contributors


License

MIT © Dishant15