Duet Date Picker

Duet Date Picker is an open source version of Duet Design System’s accessib...

README

CI Status NPM Version MIT License code style: prettier

Duet Date Picker


Duet Date Picker is an open source version of Duet Design System’s accessible date picker. Duet Date Picker can be implemented and used across any JavaScript framework or no framework at all. We accomplish this by using standardized web platform APIs and Web Components.

Why yet another date picker? Our team working on Duet Design System couldn’t find an existing date picker that would’ve ticked all the requirements we had for accessibility _(supporting WCAG 2.1 as well as we can),_ so we decided to build one and open source it so that others could benefit from this work as well.

Duet Date Picker comes with built-in functionality that allows you to set a minimum and a maximum allowed date. These settings can be combined or used alone, depending on the need. Please note that the date values must be passed in IS0-8601 format: YYYY-MM-DD.



Duet Date Picker

Live demo



Features


- Can be used with any JavaScript framework.
- No external dependencies.
- Weighs only ~10kb minified and Gzip’ed (this includes all styles and icons).
- Built with accessibility in mind.
- Supports all modern browsers and screen readers.
- Additionally, limited support offered for IE11 and Edge 17+.
- Allows theming using CSS Custom Properties.
- Support for localization.
- Customizable date parsing and formatting.
- Support for changing the first day of the week.
- Comes with modified interface for mobile devices to provide better user experience.
- Supports touch gestures for changing months and closing the picker.
- Built using Stencil.js and Web Components.
- Free to use under the MIT license.

Browser support


- Google Chrome 61+
- Apple Safari 10+
- Firefox 63+
- Microsoft Edge 17+
- Opera 63+
- Samsung Browser 8.2+
- Internet Explorer 11

Screen Reader support


We offer support for the following screen readers. For more information about the level of support and possible issues with the implementation, please refer to the included accessibility audit.

- VoiceOver on macOS and iOS
- TalkBack on Android
- NVDA on Windows
- Jaws on Windows

Keyboard support


Duet Date Picker’s keyboard support is built to closely follow W3C Date Picker Dialog example with some small exceptions to e.g. better support iOS VoiceOver and Android TalkBack.

Choose date button


- Space, Enter: Opens the date picker dialog and moves focus to the first select menu in the dialog.

Date picker dialog


- Esc: Closes the date picker dialog and moves focus back to the “choose date” button.
- Tab: Moves focus to the next element in the dialog. Please note since the calendar uses role="grid", only one button in the calendar grid is in the tab sequence. Additionally, if focus is on the last focusable element, focus is next moved back to the first focusable element inside the date picker dialog.
- Shift + Tab: Same as above, but in reverse order.

Date picker dialog: Month/year buttons


- Space, Enter: Changes the month and/or year displayed.

Date picker dialog: Date grid


- Space, Enter: Selects a date, closes the dialog, and moves focus back to the “Choose Date” button. Additionally updates the value of the Duet Date Picker input with the selected date, and adds selected date to “Choose Date” button label.
- Arrow up: Moves focus to the same day of the previous week.
- Arrow down: Moves focus to the same day of the next week.
- Arrow right: Moves focus to the next day.
- Arrow left: Moves focus to the previous day.
- Home: Moves focus to the first day (e.g Monday) of the current week.
- End: Moves focus to the last day (e.g. Sunday) of the current week.
- Page Up: Changes the grid of dates to the previous month and sets focus on the same day of the same week.
- Shift + Page Up: Changes the grid of dates to the previous year and sets focus on the same day of the same week.
- Page Down: Changes the grid of dates to the next month and sets focus on the same day of the same week.
- Shift + Page Down: Changes the grid of dates to the next year and sets focus on the same day of the same week.

Date picker dialog: Close button


- Space, Enter:  Closes the dialog, moves focus to “choose date” button, but does not update the date in input.

Getting started


Integrating Duet Date Picker to a project without a JavaScript framework is very straight forward. If you’re working on a simple HTML page, you can start using Duet Date Picker immediately by adding these tags to the ``:

  1. ``` html
  2. <script type="module" src="https://cdn.jsdelivr.net/npm/@duetds/date-picker@1.4.0/dist/duet/duet.esm.js"></script>
  3. <script nomodule src="https://cdn.jsdelivr.net/npm/@duetds/date-picker@1.4.0/dist/duet/duet.js"></script>
  4. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@duetds/date-picker@1.4.0/dist/duet/themes/default.css" />
  5. ```

Once included, Duet Date Picker can be used in your markup like any other regular HTML element:

  1. ``` html
  2. <label for="date">Choose a date</label>
  3. <duet-date-picker identifier="date"></duet-date-picker>
  4. ```

Please note: Importing the CSS file is optional and only needed if you’re planning on using the default theme. See theming section for more information. Additionally, while the above method is the easiest and fastest way to get started, you can also install Duet Date Picker via NPM. Scroll down for the installation instructions.

Properties


PropertyAttributeDescriptionTypeDefault
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
`dateAdapter`--Date`DuetDateAdapter``isoAdapter`
`direction``direction`Forces`"left""right"`
`disabled``disabled`Makes`boolean``false`
`firstDayOfWeek``first-day-of-week`Which`DaysOfWeek.FridayDaysOfWeek.Monday
`identifier``identifier`Adds`string``""`
`localization`--Button`{`defaultLocalization`
`max``max`Maximum`string``""`
`min``min`Minimum`string``""`
`name``name`Name`string``"date"`
`role``role`Defines`string``undefined`
`required``required`Should`boolean``false`
`value``value`Date`string``""`

Events


EventDescriptionType
----------------------------------------------------------------------------------------------------------------------------------------------
`duetBlur`Event`CustomEvent<{
`duetChange`Event`CustomEvent<{
`duetFocus`Event`CustomEvent<{
`duetOpen`Event`CustomEvent<{
`duetClose`Event`CustomEvent<{

Methods


### `hide(moveFocusToButton?: boolean) => Promise`

Hide the calendar modal. Set moveFocusToButton to false to prevent focus
returning to the date picker's button. Default is true.

Returns


Type: `Promise`

### `setFocus() => Promise`

Sets focus on the date picker's input. Use this method instead of the global focus().

Returns


Type: `Promise`

### `show() => Promise`

Show the calendar modal, moving focus to the calendar inside.

Returns


Type: `Promise`

Installation


Before moving further, please make sure you have [Node.js](https://nodejs.org/en/) installed on your machine. You can install the latest version through [their website](https://nodejs.org/en/). If you’re planning on using Duet Date Picker in a project that doesn’t yet use [Node Package Manager](https://www.npmjs.com), you’ll have to first create a [package.json](https://docs.npmjs.com/files/package.json) file. To do so, run npm init and follow the steps provided.

Once finished, you can install Duet Date Picker by running:

  1. ``` sh
  2. # WEB COMPONENT for HTML, Ember, Vue.js, React, Angular and Vanilla JS:
  3. npm install @duetds/date-picker
  4. ```

Usage with basic HTML


Please note: We recommend the usage of CDN like JSDelivr over the below approach if you’re not server side rendering Duet Date Picker. See getting started section to find the correct script tags.

Once you’ve installed @duetds/date-picker package into your project, it’s recommended to create a copy task that copies Duet Date Picker component from node_modules to a location you’ve specified. One such tool that can do this is NCP. You can installncp by running:

  1. ``` sh
  2. npm install ncp --save-dev
  3. ```

Once installed, add a script to your package.json that copies the component library from Duet’s package into a location you’ve specified:

  1. ``` json
  2. "scripts": {
  3.   "copy:duet-date-picker": "ncp node_modules/@duetds/date-picker/dist src/SPECIFY_PATH"
  4. }
  5. ```

You can call this script while starting up your app to make sure you’ve always got the latest code copied over. If you’re using an UNIX-like environment, you can use & as the separator:

  1. ``` json
  2. "start": "copy:duet-date-picker & dev"
  3. ```

Otherwise, if you need a cross-platform solution, use npm-run-all module:

  1. ``` json
  2. "start": "npm-run-all copy:duet-date-picker dev"
  3. ```

Once you have a copy task in place and have copied Duet Date Picker over, you can put tags similar to these in the `` of your `index.html` (importing the CSS file is optional and only needed if you’re planning on using the default theme. See [theming section](#theming) for more information):

  1. ``` html
  2. <script type="module" src="SPECIFY_YOUR_PATH/duet.esm.js"></script>
  3. <script nomodule src="SPECIFY_YOUR_PATH/duet.js"></script>
  4. <link rel="stylesheet" href="SPECIFY_YOUR_PATH/duet.css" />
  5. ```

Once included, Duet Date Picker can be used in your basic HTML markup as in the following example:

  1. ``` html
  2. <label for="date">Choose a date</label>
  3. <duet-date-picker identifier="date"></duet-date-picker>
  4. ```

To know when this tag name becomes defined, you can use window.customElements.whenDefined(). It returns a Promise that resolves when the element becomes defined:

  1. ``` js
  2. customElements.whenDefined("duet-date-picker").then(() => {
  3.   document.querySelector("duet-date-picker").show()
  4. });
  5. ```

Usage with Angular


Before you can use Duet Date Picker in Angular, you must import and add Angular’s CUSTOM_ELEMENTS_SCHEMA. This allows the use of Web Components in HTML markup, without the compiler producing errors. The CUSTOM_ELEMENTS_SCHEMA needs to be included in any module that uses custom elements. Typically, this can be added to AppModule:

  1. ``` js
  2. // ...
  3. // Import custom elements schema
  4. import { CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";

  5. @NgModule({
  6.   // ...
  7.   // Add custom elements schema to NgModule
  8.   schemas: [CUSTOM_ELEMENTS_SCHEMA]
  9. })
  10. export class AppModule { }
  11. ```

The final step is to load and register Duet Date Picker in the browser. @duetds/date-picker includes a main function that handles this. That function is called defineCustomElements() and it needs to be called once during the bootstrapping of your application. One convenient place to do this is in main.ts as such:

  1. ``` js
  2. // Import Duet Date Picker
  3. import { defineCustomElements } from "@duetds/date-picker/dist/loader";
  4. // ...
  5. // Register Duet Date Picker
  6. defineCustomElements(window);
  7. ```

Once included, Duet Date Picker can be used in your HTML markup as in the following example:

  1. ``` html
  2. <label for="date">Choose a date</label>
  3. <duet-date-picker identifier="date"></duet-date-picker>
  4. ```

Please note that you need to also import duet.css separately if you want to use the default theme. See theming section for more information.

Accessing using ViewChild and ViewChildren


Once included, components could also be referenced in your code using ViewChild and ViewChildren as shown in the Stencil.js documentation.

Usage with Vue.js


To integrate @duetds/date-picker into a Vue.js application, editsrc/main.js to include:

  1. ``` js
  2. // Import Duet Date Picker
  3. import { defineCustomElements } from "@duetds/date-picker/dist/loader";

  4. // ...
  5. // configure Vue.js to ignore Duet Date Picker
  6. Vue.config.ignoredElements = [/duet-\w*/];

  7. // Register Duet Date Picker
  8. defineCustomElements(window);

  9. new Vue({
  10.     render: h => h(App)
  11. }).$mount("#app");
  12. ```

Once included, Duet Date Picker can be used in your HTML markup as in the following example:

  1. ``` html
  2. <template>
  3.   <label for="date">Choose a date</label>
  4.   <duet-date-picker
  5.     identifier="date"
  6.     :localization.prop="localisation_uk">
  7.   </duet-date-picker>
  8. </template>
  9. <script>
  10.   const localisation_uk = {
  11.     buttonLabel: 'Choose date',
  12.     placeholder: 'DD/MM/YYYY',
  13.     selectedDateMessage: 'Selected date is',
  14.     prevMonthLabel: 'Previous month',
  15.     nextMonthLabel: 'Next month',
  16.     monthSelectLabel: 'Month',
  17.     yearSelectLabel: 'Year',
  18.     closeLabel: 'Close window',
  19.     calendarHeading: 'Choose a date',
  20.     dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
  21.     monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
  22.     monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  23.   }
  24. </script>
  25. ```

Please note that you need to also import duet.css separately if you want to use the default theme. See theming section for more information.

Please also note that in order to use duet-date-picker's own custom properties (as seen on the properties section), vue must recognise that such options are being passed down as properties rather than attributes, hence the .prop at the end.

Usage with React


With an application built using the create-react-app script the easiest way to include Duet Date Picker is to call defineCustomElements(window) from the index.js file:

  1. ``` js
  2. // Import Duet Date Picker
  3. import { defineCustomElements } from "@duetds/date-picker/dist/loader";

  4. // ...
  5. // Register Duet Date Picker
  6. defineCustomElements(window);
  7. ```

Then you can create a thin React wrapper component to handle listening for events, cleanup, passing properties etc:

  1. ``` js
  2. import React, { useEffect, useRef } from "react";

  3. function useListener(ref, eventName, handler) {
  4.   useEffect(() => {
  5.     if (ref.current) {
  6.       const element = ref.current;
  7.       element.addEventListener(eventName, handler)
  8.       return () => element.removeEventListener(eventName, handler)
  9.     }
  10.   }, [eventName, handler, ref])
  11. }

  12. export function DatePicker({
  13.   onChange,
  14.   onFocus,
  15.   onBlur,
  16.   onOpen,
  17.   onClose,
  18.   dateAdapter,
  19.   localization,
  20.   ...props
  21. }) {
  22.   const ref = useRef(null)

  23.   useListener(ref, "duetChange", onChange)
  24.   useListener(ref, "duetFocus", onFocus)
  25.   useListener(ref, "duetBlur", onBlur)
  26.   useListener(ref, "duetOpen", onOpen)
  27.   useListener(ref, "duetClose", onClose)

  28.   useEffect(() => {
  29.     ref.current.localization = localization
  30.     ref.current.dateAdapter = dateAdapter
  31.   }, [localization, dateAdapter])

  32.   return <duet-date-picker ref={ref} {...props}></duet-date-picker>
  33. }
  34. ```

Then the wrapper can be used like any other React component:

  1. ``` js
  2. <DatePicker
  3.   value="2020-08-24"
  4.   onChange={e => console.log(e.detail)}
  5. />
  6. ```

Please note that you need to also import duet.css separately if you want to use the default theme. See theming section for more information.

Usage with Ember


Duet Date Picker can be easily integrated into Ember thanks to the ember-cli-stencil addon that handles:

- Importing the required files into your vendor.js
- Copying the component definitions into your assets directory
- Optionally generating a wrapper component for improved compatibility with older Ember versions

Start by installing the Ember addon:

  1. ``` sh
  2. ember install ember-cli-stencil ember-auto-import
  3. ```

When you build your application, Stencil collections in your dependencies will be automatically discovered and pulled into your application. You might get a Can't resolve error when building. The easiest way to  resolve that issue is by adding an alias to your ember-cli-build.js file.

  1. ``` js
  2. autoImport: {
  3.   alias: {
  4.    '@duetds/date-picker/loader':  '@duetds/date-picker/dist/loader/index.cjs',
  5.   },
  6. },
  7. ```
For more information, see ember-cli-stencil documentation.

Ember octane example:

  1. ``` html
  2. <label  for="date">Choose a date.</label>
  3. <duet-date-picker identifier="date" {{prop localization=this.localization}} ></duet-date-picker>
  4. ```

  1. ``` js
  2. import Controller from "@ember/controller";
  3. import { action } from "@ember/object";
  4. import { tracked } from "@glimmer/tracking";

  5. export default class ExampleController extends Controller {
  6.   @tracked localization = {
  7.     buttonLabel: "Choose date",
  8.     placeholder: "mm/dd/yyyy",
  9.     selectedDateMessage: "Selected date is",
  10.     prevMonthLabel: "Previous month",
  11.     nextMonthLabel: "Next month",
  12.     monthSelectLabel: "Month",
  13.     yearSelectLabel: "Year",
  14.     closeLabel: "Close window",
  15.     calendarHeading: "Choose a date",
  16.     dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
  17.     monthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
  18.     monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
  19.   };
  20. }
  21. ```


IE11 and Edge 17/18 polyfills


If you want the Duet Date Picker custom element to work on older browser, you need to add the applyPolyfills() that surround the defineCustomElements() function:

  1. ``` js
  2. import { applyPolyfills, defineCustomElements } from "@duetds/date-picker/lib/loader";
  3. // ...
  4. applyPolyfills().then(() => {
  5.   defineCustomElements(window)
  6. })
  7. ```

Using events


We encourage the use of DOM events, but additionally provide custom events to make handling of certain event types easier. All custom events are documented in this same readme under the “Events” heading.

Duet Date Picker provides e.g. a custom event called duetChange. This custom event includes an object called detail which includes for example the selected date:

  1. ``` js
  2. // Select the date picker component
  3. const date = document.querySelector("duet-date-picker")

  4. // Listen for when date is selected
  5. date.addEventListener("duetChange", function(e) {
  6.   console.log("selected date", e.detail.valueAsDate)
  7. })
  8. ```

The console output for the above code looks like this:

  1. ``` sh
  2. selected date Sat Aug 15 2020 00:00:00 GMT+0300 (Eastern European Summer Time)
  3. ```

Theming


Duet Date Picker uses CSS Custom Properties to make it easy to theme the picker. The component ships with a default theme that you can import either from the NPM package or directly from a CDN like JSDelivr:

  1. ``` html
  2. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@duetds/date-picker@1.4.0/dist/duet/themes/default.css" />
  3. ```

The above CSS file provides the following Custom Properties that you can override with your own properties:

  1. ```css
  2. :
  3.   --duet-color-primary: #005fcc;
  4.   --duet-color-text: #333;
  5.   --duet-color-text-active: #fff;
  6.   --duet-color-placeholder: #666;
  7.   --duet-color-button: #f5f5f5;
  8.   --duet-color-surface: #fff;
  9.   --duet-color-overlay: rgba(0, 0, 0, 0.8);
  10.   --duet-color-border: #333;

  11.   --duet-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  12.   --duet-font-normal: 400;
  13.   --duet-font-bold: 600;

  14.   --duet-radius: 4px;
  15.   --duet-z-index: 600;
  16. }

  17. ```

If you wish to customize any of the default properties shown above, we recommend to NOT import or link to the provided CSS, but instead copying the above code into your own stylesheet and replacing the values used there.

Additionally, you’re able to override Duet Date Picker’s default styles by using e.g. .duet-date__input selector in your own stylesheet. This allows you to give the form input and e.g. date picker toggle button a visual look that matches the rest of your website.

Localization


Duet Date Picker offers full support for localization. This includes the text labels and date formats used. Below is an example of a date picker that is using Finnish date format and localization.

  1. ``` html
  2. <label for="date">Valitse päivämäärä</label>
  3. <duet-date-picker identifier="date"></duet-date-picker>
  4. <script>
  5.   const picker = document.querySelector("duet-date-picker")
  6.   const DATE_FORMAT = /^(\d{1,2})\.(\d{1,2})\.(\d{4})$/
  7.   picker.dateAdapter = {
  8.     parse(value = "", createDate) {
  9.       const matches = value.match(DATE_FORMAT)
  10.       if (matches) {
  11.         return createDate(matches[3], matches[2], matches[1])
  12.       }
  13.     },
  14.     format(date) {
  15.       return `${date.getDate()}.${date.getMonth() + 1}.${date.getFullYear()}`
  16.     },
  17.   }
  18.   picker.localization = {
  19.     buttonLabel: "Valitse päivämäärä",
  20.     placeholder: "pp.kk.vvvv",
  21.     selectedDateMessage: "Valittu päivämäärä on",
  22.     prevMonthLabel: "Edellinen kuukausi",
  23.     nextMonthLabel: "Seuraava kuukausi",
  24.     monthSelectLabel: "Kuukausi",
  25.     yearSelectLabel: "Vuosi",
  26.     closeLabel: "Sulje ikkuna",
  27.     calendarHeading: "Valitse päivämäärä",
  28.     dayNames: [
  29.       "Sunnuntai", "Maanantai", "Tiistai", "Keskiviikko",
  30.       "Torstai", "Perjantai", "Lauantai"
  31.     ],
  32.     monthNames: [
  33.       "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu",
  34.       "Toukokuu", "Kesäkuu", "Heinäkuu", "Elokuu",
  35.       "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu"
  36.     ],
  37.     monthNamesShort: [
  38.       "Tammi", "Helmi", "Maalis", "Huhti", "Touko", "Kesä",
  39.       "Heinä", "Elo", "Syys", "Loka", "Marras", "Joulu"
  40.     ],
  41.     locale: "fi-FI",
  42.   }
  43. </script>
  44. ```

Please note that you must provide the entirety of the localization properties in the object when overriding with your custom localization.

Control which days are selectable


Duet Date Picker allows you to disable the selection of specific days. Below is an example of a date picker that is disabling weekends.

Be aware, this only disables selection of dates in the popup calendar. You must still handle the case where a user manually enters a disallowed date into the input.

  1. ``` html
  2. <label for="date">Choose a date</label>
  3. <duet-date-picker identifier="date"></duet-date-picker>
  4. <script>
  5.   function isWeekend(date) {
  6.     return date.getDay() === 0 || date.getDay() === 6
  7.   }
  8.   const pickerDisableWeekend = document.querySelector("duet-date-picker")
  9.   pickerDisableWeekend.isDateDisabled = isWeekend
  10.   pickerDisableWeekend.addEventListener("duetChange", function(e) {
  11.     if (isWeekend(e.detail.valueAsDate)) {
  12.       alert("Please select a weekday")
  13.     }
  14.   })
  15. </script>
  16. ```

Server side rendering


Duet Date Picker package includes a hydrate app that is a bundle of the same components, but compiled so that they can be hydrated on a NodeJS server and generate static HTML and CSS. To get started, import the hydrate app into your server’s code like so:

  1. ``` js
  2. import hydrate from "@duetds/date-picker/hydrate"
  3. ```

If you are using for example Eleventy, you could now add a transform into.eleventy.js configuration file that takes content as an input and processes it using Duet’s hydrate app:

  1. ``` js
  2. eleventyConfig.addTransform("hydrate", async(content, outputPath) => {
  3.   if (process.env.ELEVENTY_ENV == "production") {
  4.     if (outputPath.endsWith(".html")) {
  5.       try {
  6.         const results = await hydrate.renderToString(content, {
  7.           clientHydrateAnnotations: true,
  8.           removeScripts: false,
  9.           removeUnusedStyles: false
  10.         })
  11.         return results.html
  12.       } catch (error) {
  13.         return error
  14.       }
  15.     }
  16.   }
  17.   return content
  18. })
  19. ```

The above transform gives you server side rendered components that function without JavaScript. Please note that you need to separately pre-render the content for each theme you want to support.

Single file bundle


Duet Date Picker also offers a single file bundle without the polyfills and other additional functionality included in the default output. To import that instead of the default output, use:

  1. ``` js
  2. import { DuetDatePicker } from "@duetds/date-picker/custom-element";

  3. customElements.define("duet-date-picker", DuetDatePicker);
  4. ```

Please note that this custom-element output does not automatically define the custom elements or apply any polyfills which is why we’re defining the custom element above ourselves.

For more details, please see Stencil.js documentation.

Optimizing CDN performance


If you wish to make sure Duet Date Picker shows up as quickly as possible when loading the scripts from JSDelivr CDN, you can preload the key parts using link `rel="preload"`. To do this, add these tags in the `` of your webpage before any other `