Giter Site home page Giter Site logo

wojtekmaj / react-datetimerange-picker Goto Github PK

View Code? Open in Web Editor NEW
165.0 7.0 18.0 6.24 MB

A datetime range picker for your React app.

Home Page: https://projects.wojtekmaj.pl/react-datetimerange-picker/

License: MIT License

HTML 0.33% CSS 4.65% TypeScript 95.02%
react calendar date date-picker daterange daterange-picker datetimerange datetimerange-picker

react-datetimerange-picker's Introduction

npm downloads CI

React-DateTimeRange-Picker

A datetime range picker for your React app.

  • Pick days, months, years, or even decades
  • Supports virtually any language
  • No moment.js needed

tl;dr

  • Install by executing npm install @wojtekmaj/react-datetimerange-picker or yarn add @wojtekmaj/react-datetimerange-picker.
  • Import by adding import DateTimeRangePicker from '@wojtekmaj/react-datetimerange-picker'.
  • Use by adding <DateTimeRangePicker />. Use onChange prop for getting new values.

Demo

A minimal demo page can be found in sample directory.

Online demo is also available!

Consider native alternative

If you don't need to support legacy browsers and don't need the advanced features this package provides, consider using native datetime input instead. It's more accessible, adds no extra weight to your bundle, and works better on mobile devices.

<input aria-label="Date and time from" max={valueTo} min={minDatetime} type="datetime-local" />
<input aria-label="Date and time to" max={maxDatetime} min={valueFrom} type="datetime-local" />

Looking for a time picker or a datetime picker?

React-DateTimeRange-Picker will play nicely with React-Date-Picker, React-Time-Picker and React-DateTime-Picker. Check them out!

Getting started

Compatibility

Your project needs to use React 16.3 or later. If you use an older version of React, please refer to the table below to find a suitable React-DateTimeRange-Picker version.

React version Newest compatible React-DateTimeRange-Picker version
≥16.3 latest
≥16.0 2.x

React-Calendar, on which React-DateTimeRange-Picker relies heavily, uses modern web technologies. That's why it's so fast, lightweight and easy to style. This, however, comes at a cost of supporting only modern browsers.

Legacy browsers

If you need to support legacy browsers like Internet Explorer 10, you will need to use Intl.js or another Intl polyfill along with React-DateTimeRange-Picker.

Installation

Add React-DateTimeRange-Picker to your project by executing npm install @wojtekmaj/react-datetimerange-picker or yarn add @wojtekmaj/react-datetimerange-picker.

Usage

Here's an example of basic usage:

import { useState } from 'react';
import DateTimeRangePicker from '@wojtekmaj/react-datetimerange-picker';

type ValuePiece = Date | null;

type Value = ValuePiece | [ValuePiece, ValuePiece];

function MyApp() {
  const [value, onChange] = useState<Value>([new Date(), new Date()]);

  return (
    <div>
      <DateTimeRangePicker onChange={onChange} value={value} />
    </div>
  );
}

Custom styling

If you want to use default React-Date-Picker, React-Calendar and React-Clock styling to build upon it, you can import them by using:

import '@wojtekmaj/react-datetimerange-picker/dist/DateTimeRangePicker.css';
import 'react-calendar/dist/Calendar.css';
import 'react-clock/dist/Clock.css';

User guide

DateTimeRangePicker

Displays an input field complete with custom inputs, native input, and a calendar.

Props

Prop name Description Default value Example values
amPmAriaLabel aria-label for the AM/PM select input. n/a "Select AM/PM"
autoFocus Automatically focuses the input on mount. n/a true
calendarAriaLabel aria-label for the calendar button. n/a "Toggle calendar"
calendarClassName Class name(s) that will be added along with "react-calendar" to the main React-Calendar <div> element. n/a
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
calendarIcon Content of the calendar button. Setting the value explicitly to null will hide the icon. (default icon)
  • String: "Calendar"
  • React element: <CalendarIcon />
  • React function: CalendarIcon
className Class name(s) that will be added along with "react-datetimerange-picker" to the main React-DateTimeRange-Picker <div> element. n/a
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
clearAriaLabel aria-label for the clear button. n/a "Clear value"
clearIcon Content of the clear button. Setting the value explicitly to null will hide the icon. (default icon)
  • String: "Clear"
  • React element: <ClearIcon />
  • React function: ClearIcon
clockClassName Class name(s) that will be added along with "react-clock" to the main React-Calendar <div> element. n/a
  • String: "class1 class2"
  • Array of strings: ["class1", "class2 class3"]
closeWidgets Whether to close the widgets on value selection. Note: It's recommended to use shouldCloseWidgets function instead. true false
data-testid data-testid attribute for the main React-DateTimeRange-Picker <div> element. n/a "datetimerange-picker"
dayAriaLabel aria-label for the day input. n/a "Day"
disableCalendar When set to true, will remove the calendar and the button toggling its visibility. false true
disableClock When set to true, will remove the clock. false true
disabled Whether the datetime range picker should be disabled. false true
format Input format based on Unicode Technical Standard #35. Supported values are: y, M, MM, MMM, MMMM, d, dd, H, HH, h, hh, m, mm, s, ss, a. Note: When using SSR, setting this prop may help resolving hydration errors caused by locale mismatch between server and client. n/a "y-MM-dd h:mm:ss a"
hourAriaLabel aria-label for the hour input. n/a "Hour"
id id attribute for the main React-DateTimeRange-Picker <div> element. n/a "datetimerange-picker"
isCalendarOpen Whether the calendar should be opened. false true
isClockOpen Whether the clock should be opened. false true
locale Locale that should be used by the datetime range picker and the calendar. Can be any IETF language tag. Note: When using SSR, setting this prop may help resolving hydration errors caused by locale mismatch between server and client. Server locale/User's browser settings "hu-HU"
maxDate Maximum date that the user can select. Periods partially overlapped by maxDate will also be selectable, although React-DateTimeRange-Picker will ensure that no later date is selected. n/a Date: new Date()
maxDetail The most detailed calendar view that the user shall see. View defined here also becomes the one on which clicking an item in the calendar will select a date and pass it to onChange. Can be "hour", "minute" or "second". Don't need hour picking? Try React-DateRange-Picker! "minute" "second"
minDate Minimum date that the user can select. Periods partially overlapped by minDate will also be selectable, although React-DateTimeRange-Picker will ensure that no earlier date is selected. n/a Date: new Date()
minuteAriaLabel aria-label for the minute input. n/a "Minute"
minutePlaceholder placeholder for the minute input. "--" "mm"
monthAriaLabel aria-label for the month input. n/a "Month"
monthPlaceholder placeholder for the month input. "--" "mm"
name Input name prefix. Date from/Date to fields will be named "yourprefix_from" and "yourprefix_to" respectively. "datetimerange" "myCustomName"
nativeInputAriaLabel aria-label for the native datetime input. n/a "Date"
onCalendarClose Function called when the calendar closes. n/a () => alert('Calendar closed')
onCalendarOpen Function called when the calendar opens. n/a () => alert('Calendar opened')
onChange Function called when the user picks a valid datetime. If any of the fields were excluded using custom format, new Date(y, 0, 1, 0, 0, 0), where y is the current year, is going to serve as a "base". n/a (value) => alert('New date is: ', value)
onClockClose Function called when the clock closes. n/a () => alert('Clock closed')
onClockOpen Function called when the clock opens. n/a () => alert('Clock opened')
onFocus Function called when the user focuses an input. n/a (event) => alert('Focused input: ', event.target.name)
onInvalidChange Function called when the user picks an invalid datetime. n/a () => alert('Invalid datetime')
openWidgetsOnFocus Whether to open the widgets on input focus. Note: It's recommended to use shouldOpenWidgets function instead. true false
portalContainer Element to render the widgets in using portal. n/a document.getElementById('my-div')
rangeDivider Divider between datetime inputs. "–" " to "
required Whether datetime input should be required. false true
secondAriaLabel aria-label for the second input. n/a "Second"
shouldCloseWidgets Function called before the widgets close. reason can be "buttonClick", "escape", "outsideAction", or "select". widget can be "calendar" or "clock". If it returns false, the widget will not close. n/a ({ reason, widget }) => reason !== 'outsideAction' && widget === 'calendar'
shouldOpenWidgets Function called before the widgets open. reason can be "buttonClick" or "focus". widget can be "calendar" or "clock". If it returns false, the widget will not open. n/a ({ reason, widget }) => reason !== 'focus' && widget === 'calendar'
showLeadingZeros Whether leading zeros should be rendered in datetime inputs. false true
value Input value. n/a
  • Date: new Date(2017, 0, 1, 22, 15)
  • String: "2017-01-01T22:15:00"
  • An array of dates: [new Date(2017, 0, 1, 22, 15), new Date(2017, 0, 1, 23, 45)]
  • An array of strings: ["2017-01-01T22:15:00", "2017-01-01T23:45:00"]
yearAriaLabel aria-label for the year input. n/a "Year"

Calendar

DateTimeRangePicker component passes all props to React-Calendar, with the exception of className (you can use calendarClassName for that instead). There are tons of customizations you can do! For more information, see Calendar component props.

License

The MIT License.

Author

Wojciech Maj Wojciech Maj

react-datetimerange-picker's People

Contributors

adrienharnay avatar dependabot[bot] avatar wojtekmaj avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-datetimerange-picker's Issues

Nice to have: flag to toggle off the time

In order to avoid adding 2 different packages, when necessary in a project, would be nice to be able to switch this package into a daterange-picker with a flag and use both flavors as required.

Failed to compile

@wojtekmaj great component! I like it a lot.

One small problem that it can't compile. Using the import suggested on your docs the module cannot be found:

Module not found: Can't resolve '@wojtekmaj/react-datetimerange-picker' in ...

If I use:

import DateTimeRangePicker from '@wojtekmaj/react-datetimerange-picker/src/entry'

Then I get:

Module not found: Can't resolve './DateTimeRangePicker.css' in '/path/here/node_modules/@wojtekmaj/react-datetimerange-picker/src'

Edit:

Using the entry.nostyle version also fails to compile:

./node_modules/@wojtekmaj/react-datetimerange-picker/src/DateTimeRangePicker.jsx
Module parse failed: Unexpected token (30:8)
You may need an appropriate loader to handle this file type.

Sunday first...

How do we explicitly set Sunday or Monday to start the row?

Slick calendar!

PropTypes error when editing value manually

Thanks for the upgrade and fix on the leading zero bug!

Just noticing that since updating we are getting a type error whenever you type a value (rather than clicking in the calendar).

You can confirm this for yourself by looking in the console in this codesandbox as you perform each action (change with calendar = no error, change by typing value = error)

Appreciate any insight on this.

How to remove Clear icon?

hi,
I want to avoid to have the icon :
So, according to the doc , I tried without success :

 clearIcon={"Clear"}
 clearIcon={null}
 clearIcon={Clear}

what is the exact syntax please ?

DateRangePicker does not behave correctly on Safari.

Hi guys I hope you are well!

One of our QAs detected the strange behavior of DateRangePicker on the safari browser. When you use the regular calendar icon it does work properly, but it does not when the user focuses on the widget. In the second case, it opens the calendar, but it disappears after a click.
In codebase we have styled DateRangePicker, but changing it to default one does not make any difference:

          <StyledDateTimeRangePicker
            onChange={setValidatedTimeRange}
            value={timeRange}
            disableClock
            format="y-MM-dd"
          />

I bypassed the problem by using openWidgetsOnFocus={false} as it behaves correctly when the user uses the calendar button.
We use react 16.8.6 and react-datetimerange-picker in version 3.4.2. I attach the bug recording below. It does not throw any error in the developer console.

Nagranie.z.ekranu.2021-10-11.o.07.54.11.mov

Regards,
Mateusz.

Order of date and time sub-components

Hi, it is more a question than a real issue.

I want to change the sub-components ordering, would like to have the following:

<StartDate> <StartHour> <EndHour> <EndDate>

current order:

<StartDate> <StartHour> <EndDate> <EndHour>

Not sure how to do this without using lots of flex order, or absolute positioning 🤔

Manually Setting Date and Time (Input By Input)

Hello 👋🏽

While working on a project, and using the date-time range picker I noticed some issues with the library 🐛

  1. If you fill in the date and the time manually input by input, onChange is not called
  2. The onChange method is called only when you set the AM/PM of one of the dates
  3. And once you do that the other date is set to null
  4. Now, if you start changing for example the time of the date, the date that was set to null (step 3) becomes a string
  5. And if you start changing the AM/PM of one of the dates the other becomes a string and so on...

Below is a video of what I'm trying to explain

issue-dtrp.mov

time elapsed calculation

when you use the picker and input a range, does it calculate how much time has elapsed between the finish and start date and time?

Wrong time output

Hi there,

I am not getting the correct time output despite having the correct locale region setting in browser. Am I missing something ?

For example, I am expecting "2021-03-05T09:16:59.390Z"

but I get "2021-03-05T01:16:59.390Z" instead.

Any help would be appreciated. Thanks

Question: Add custom buttons to calendar

Is there any way to add custom buttons onto the calendar. I would like to add a today button or auto range select for the month. Something similar to tileContent but just for the bottom of the date picker itself.

rangeDivider feature not released

Hi, I have a question: when are you planning to release a new version? I am interested in the rangeDivider props feature as shown in the README.

I saw that the feature was added in this commit 4b96e96 but the latest release was a month before that

UTC Universal time rather than local?

Is it possible to display UTC universal time rather than local time zone? I'm attempting to pass in my date: like this:

new Date(Date.UTC(2018,3,27,17,5))

It doesn't seem to be honoring the UTC, though, and appears to be converting to my time zone. Any tips?

Typescript Support

Hi, Is there any typescript support.
In case i want to extend your lib's props ?

hydration error

I have clean installation of remix.js 2.3.0 with @wojtekmaj/react-datetimerange-picker": "^5.5.0".

Warning: Prop `className` did not match. Server: "react-datetimerange-picker__inputGroup__input react-datetimerange-picker__inputGroup__month" Client: "react-datetimerange-picker__inputGroup__input react-datetimerange-picker__inputGroup__day"
input
Input@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:3997:19
DayInput@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:4066:17
div
DateTimeInput@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:4788:23
div
div
DateTimeRangePicker2@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:5343:23
div
div
div
div
div
div
Searchbar@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:5707:19
div
div
div
Hero@http://localhost:3000/build/routes/_main._index-S2YIYZ4D.js:5958:14
Index
RenderedRoute@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:3856:7
Outlet@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:4214:20
MainLayout
RenderedRoute@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:3856:7
Outlet@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:4214:20
body
html
Document@http://localhost:3000/build/root-AD5H3IOY.js:337:18
App@http://localhost:3000/build/root-AD5H3IOY.js:449:22
RenderedRoute@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:3856:7
RenderErrorBoundary@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:4428:9
DataRoutes2@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:5069:7
Router@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:4227:7
RouterProvider2@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:4894:7
RemixErrorBoundary@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:7020:5
RemixBrowser@http://localhost:3000/build/_shared/chunk-KEN7JI7E.js:7631:48
I18nextProvider@http://localhost:3000/build/_shared/chunk-P5OR3AU4.js:128:7

[!] Error: 'default' is not exported by node_modules/@wojtekmaj/react-datetimerange-picker/dist/entry.js, imported by src/FormikDateTimeRangeField.tsx

Hello,

I have a project in which I am using @wojtekmaj/react-datetimerange-picker. Running tsc on the project does not give me any error but when I try to build using rollup I get this error:

[!] Error: 'default' is not exported by node_modules/@wojtekmaj/react-datetimerange-picker/dist/entry.js, imported by src/FormikDateTimeRangeField.tsx
https://rollupjs.org/guide/en/#error-name-is-not-exported-by-module
src/FormikDateTimeRangeField.tsx (4:7)
...
4: import DateTimeRangePicker from "@wojtekmaj/react-datetimerange-picker"; // 113 kB

I have checked node_modules/@wojtekmaj/react-datetimerange-picker/dist/entry.js

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports["default"] = void 0;

require("react-calendar/dist/Calendar.css");

require("react-clock/dist/Clock.css");

var _DateTimeRangePicker = _interopRequireDefault(require("./DateTimeRangePicker"));

require("./DateTimeRangePicker.css");

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }

// File is created during build phase and placed in dist directory
// eslint-disable-next-line import/no-unresolved
var _default = _DateTimeRangePicker["default"];

My rollup.config.js is like this:

export default {
  input: "src/index.ts",
  output: [  
    {
      file: pkg.module,
      format: "es",     // https://www.rollupjs.org/guide/en/#outputformat
      exports: "named", // https://www.rollupjs.org/guide/en/#outputexports
      sourcemap: true
    },
    {
      file: pkg.main,
      format: "commonjs", // https://www.rollupjs.org/guide/en/#outputformat
      exports: "named",   // https://www.rollupjs.org/guide/en/#outputexports
      sourcemap: true
    }
  ],
  plugins: [
    external(),
    resolve(),     // A Rollup plugin which locates modules using the Node resolution algorithm, for using third party modules in node_modules
    typescript(),  // The plugin loads any compilerOptions from the tsconfig.json file by default. Passing options to the plugin directly overrides those options    
    json(),
    terser(),
    babel({
         babelHelpers: 'bundled',
         include: "./src/**/*.js", // A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on.
         presets: ['@babel/env', '@babel/preset-react'] // https://stackoverflow.com/a/52885295/147530         
    })
  ]
};

I am really not an expert in these JavaScript tools. Can anyone help me out here? thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.