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-ultra-date-picker

v1.1.6

Published

An iOS like, comprehensive date picker component for React

Downloads

80

Readme

React Ultra Date Picker

Read Chinese documentation here 中文文档点此

Introduction

React Ultra Date Picker is an iOS like, comprehensive date picker component for React.

If you are looking for a React Date Picker working on mobile platforms, this one would be a good choice. After browsing a lot of React Date Picker projects on GitHub, I found that most of them are PC-oriented, so I decided to write one for mobile platforms. This is how React Ultra Select and React Ultra Date Picker come.

This component depends on React Ultra Select, so scrolling also relies on its version. You can change UltraSelect's version to use different scrolling features. 1.0.x for iscroll-scrolling and 1.1.x for div-scrolling. Default uses iscroll-scrolling.

Features

  • Supporting 4 Types of Date Picker

    • date

      Default type, you can select year, month and date with this type.

    • datetime

      You can select year, month, date, hour and minute with this type.

    • time

      You can select hour and minute with this type.

    • month

      You can select year and month with this type.

  • Precise Date Range(aka min date and max date)

    Comprehensive and precise support of date range for all Date Picker types. Also supports out-of-range detection.

  • 24-hour System and 12-hour System

    Both two time system are supported.

  • Flexible Locale Configurations

    Provides a very convenient API addLocaleConfig for custom locale config. Using this API, you can not only arrange order, but also decide how each year/month/date/ampm/hour/minute element is displayed.

  • Selection Events

    Supports 6 events, same as React Ultra Select.

How to use

npm i react-ultra-date-picker --save

Using it in your project:

import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import DatePicker from 'react-ultra-date-picker'

class SomeComponent extends Component {
	render() {
		return <DatePicker></DatePicker>
	}
}

Props

dateStringProp

dateStringProp is used as a constructor parameter of JavaScript Date Object. It can either be a number, or a string with RFC2822 Section 3.3, ISO-8601 format or simply dd:dd format.

  • Number

    A positive or negative number representing the number of milliseconds passed from 1970-01-01.

  • String of RFC2822 Section 3.3

    A string like Sat Jul 30 2016 18:17:37 GMT+0800 (CST), which can be generated by Date.toString() or Date.toDateString()

  • String of ISO-8601

    A string like 2016-07-30T10:18:43.422Z, which can be generated by Date.toJSON(). Note that Date.toJSON() will return a UTC time.

  • String of dd:dd format

    You should only use this format with prop type=time, and dd:dd is in 24-hour time system.

Optional Props

Props for React Ultra Select

Since this component relies on React Ultra Select, you can also pass these props to it:

  • rowsVisible
  • rowHeight
  • rowHeightUnit
  • backdrop
  • disabled
  • useTouchTap
  • isOpen

Events/Callbacks

React Ultra Date Picker shares same events/callbacks with React Ultra Select:

  • onOpen(date)

    Will be called when the selection panel shows up.

  • onClose(date)

    Will be called when the selection panel hides.

  • onConfirm(date)

    Will be called when the confirm button or backdrop is clicked.

  • onCancel(date)

    Will be called when the cancel button is clicked.

  • onDidSelect(date)

    Will be called when scrolling stops, useful for real-time selection. date is the current selected date.

  • onSelect(date)

    Will be called when scrolling and selected value is changed, useful for playing sound effects or so. date is the current selected date.

  • getTitle(fullDate)

    Same as React Ultra Select1, but it will be called with a fullDate object, which contains selected date and out-of-range and none-selected status.

    The priorities of getTitle prop is higher than title prop.

  • getStaticText(fullDate)

    Same as React Ultra Select1, but it will be called with a fullDate object.

Functions

  • addLocaleConfig(name, config)

    Adding a locale configuration to the Date Picker, so you can specify locale other than en and zh-cn. The config keys includes:

    For example, adding a Japanese(ja) locale config would be like below:

    import DatePicker,{addLocaleConfig, padStartWith0, translateHour} from 'react-ultra-date-picker'
    
    const jaConfig = {
        order: ['year', 'month', 'date', 'ampm', 'hour', 'minute'],
        year: year => `$year年`,
        month: month => `$month+1月`,
        date: date => `$date日`,
        am: '朝',
        pm: '午後',
        hour: translateHour,
        minute: minute => padStartWith0(minute),
        confirmButton: '決定します',
        cancelButton: 'キャンセル',
        dateLabel: (fullDate, type, use24) => {
            const { date, noneSelected, outOfRange } = fullDate
            if (noneSelected) {
                return '日付を選択してください'
            }
            if (outOfRange) {
                return '日付を範囲で選択されていません'
            }
            let ampmStr = ''
            if (!use24) {
                ampmStr = date.getHours() < 12 ? jaConfig.am : jaConfig.pm
            }
            switch (type) {
            case 'time':
                return `$ampmStr$jaConfig.hour(date.getHours(), use24):$jaConfig.minute(date.getMinutes())`  
            case 'month':
                return `$jaConfig.year(date.getFullYear())$jaConfig.month(date.getMonth())`  
            case 'datetime':
                return `$jaConfig.year(date.getFullYear())$jaConfig.month(date.getMonth())$jaConfig.date(date.getDate()) $ampmStr$jaConfig.hour(date.getHours(), use24):$jaConfig.minute(date.getMinutes())`  
            case 'date':
                return `$jaConfig.year(date.getFullYear())$jaConfig.month(date.getMonth())$jaConfig.date(date.getDate())`  
            default:
                return ''
            }
        },
    }
    addLocaleConfig('ja', jaConfig)
  • padStartWith0(num)

    Pad a number smaller than 10 with a 0 at the start.

  • daysInMonth(year, month)

    Calculates how many days in given year and month. Referenced from StackOverflow. Returns a number.

  • isPm(date)

    Whether a given date is in p.m. or not. Returns a Boolean.

  • translateHour(hour, use24hours)

    Translate an hour number to correct number according to the use24hour parameter with padding zero if needed.

  • DatePicker.date

    Get the current selected date, a javascript Date Object will be returned. You can call getFullYear(), getMonth(), getDate(), getHour() or getMinute() depending on your needs. Remember to attach ref to <DatePicker>.

    If given defaultDate is out of range, or user haven't select a date, null will be returned.

    this.refs.datePicker.date
  • DatePicker.fullDate

    Get the current selected date and out-of-range, none-selected status. It will return an object like:

    {
        date: Date,
        outOfRange: false,
        noneSelected: true,
    }

Examples

  • Online

    Open <https://swenyang.github.io/react-date-picker> to see online demo.

  • Local

    Clone this repo, and run npm run examples. Then navigate to <http://localhost:8080> to see examples.

TODO

  • Add more language configurations and export them to chunks

  • Implementing more features in the web APIs of the INPUT DATE element