Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thedaviddias avatar

Date Picker

  • 1 installs
  • 228 repo stars
  • Updated June 30, 2026
  • thedaviddias/ux-patterns-for-developers

Guides building a date picker that pairs a text input with a calendar overlay so users can browse surrounding dates when scheduling or booking.

About

Describes the date picker pattern combining a text input with a calendar overlay for context-aware date selection. A developer uses it for appointment scheduling, delivery dates, or booking flows.

  • Calendar overlay gives context about surrounding and available dates
  • Use a Date Input for known historical dates like birth dates

Date Picker by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,609 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thedaviddias/ux-patterns-for-developers --skill date-picker

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars228
Last updatedJune 30, 2026
Repositorythedaviddias/ux-patterns-for-developers

What it does

Guides building a date picker that pairs a text input with a calendar overlay so users can browse surrounding dates when scheduling or booking.

Files

SKILL.mdMarkdownGitHub ↗

Date Picker

Select dates from a calendar interface

What it solves

A Date Picker is a form component that combines a text input (showing the selected date) with a calendar overlay that allows users to visually browse and select a date. The calendar provides context about surrounding dates, days of the week, and time-relative positioning that a plain text input cannot offer. Unlike a Date Input (which is optimized for direct keyboard entry of known dates), a Date Picker is designed for situations where the user benefits from seeing the calendar — scheduling appointments, choosing a future delivery date, or selecting from a constrained set of available days.

When to use

  • Appointment scheduling – Users need to see available slots in context.
  • Delivery and shipping dates – Shows available delivery days vs. blackout dates.
  • Event creation – Users select a date relative to today or other events.
  • Hotel and travel booking – Contextual date selection with pricing or availability.
  • Report or filter date – Selecting a specific date for data filtering.

When to avoid

  • Known, historical dates – Use a Date Input for birth dates or past records where calendar navigation is tedious.
  • Date ranges – Use a Date Range component instead.
  • Mobile-only contexts – The native <input type="date"> opens the platform's native picker; a custom calendar may be redundant.
  • Very distant dates – Navigating 80+ years in a calendar is impractical; use a text date input with year input.

Implementation workflow

1. Confirm the pattern matches the problem and constraints before copying the example. 2. Start from the anatomy and examples in references/pattern.md, then choose the smallest viable variation. 3. Apply accessibility, performance, and interaction guardrails before layering visual polish. 4. Use the testing guidance to verify behavior across keyboard, screen reader, responsive, and failure scenarios.

Accessibility guardrails

Keyboard Interaction Pattern

KeyAction
Enter / SpaceOpens calendar when on the trigger button; selects focused date
EscapeCloses the calendar and returns focus to the trigger
Arrow RightMoves focus to the next day
Arrow LeftMoves focus to the previous day
Arrow DownMoves focus to the same day next week
Arrow UpMoves focus to the same day previous week
HomeMoves focus to the first day of the current week

Performance guardrails

  • Calendar open time: < 100ms from button click to visible calendar
  • Month navigation: < 50ms to render new month grid
  • Day selection: < 16ms from click to input update and popup close
  • Memory usage: < 20KB per date picker instance
  • [DOM](/glossary/dom) size: < 50 nodes for a single month calendar grid

Common mistakes

Opening the Calendar on Input Focus

The Problem: Opening the calendar automatically when the text input gains focus is disruptive for keyboard users navigating through a form and for users who prefer to type dates directly.

How to Fix It? Open the calendar only when the calendar icon button is activated.

// Bad
dateInput.addEventListener('focus', openCalendar);

// Good
calendarButton.addEventListener('click', toggleCalendar);
calendarButton.addEventListener('keydown', (e) => {
  if (e.key === 'Enter' || e.key === ' ') {
    e.preventDefault();
    toggleCalendar();
  }
});

No Keyboard Navigation in Calendar Grid

The Problem: A calendar that requires mouse interaction is inaccessible to keyboard and screen reader users. How to Fix It? Implement the full ARIA grid keyboard navigation pattern.

calendarGrid.addEventListener('keydown', (e) => {
  const focused = document.activeElement;
  switch (e.key) {
    case 'ArrowRight': focusDay(getNextDay(focused)); break;
    case 'ArrowLeft':  focusDay(getPrevDay(focused)); break;
    case 'ArrowDown':  focusDay(getNextWeek(focused)); break;
    case 'ArrowUp':    focusDay(getPrevWeek(focused)); break;
    case 'Home':       focusDay(getFirstDayOfWeek(focused)); break;
    case 'End':        focusDay(getLastDayOfWeek(focused)); break;
    case 'PageUp':     navigateToPrevMonth(); break;
    case 'PageDown':   navigateToNextMonth(); break;
    case 'Escape':     closeCalendar(); break;
  }
});

Not Returning Focus After Close

The Problem: When the calendar closes (after date selection or Escape), focus disappears or jumps to the top of the page.

How to Fix It? Always return focus to the trigger element.

function closeCalendar() {
  calendarPopup.hidden = true;
  calendarButton.setAttribute('aria-expanded', 'false');
  calendarButton.focus(); // Always return focus
}

Related patterns

  • https://uxpatterns.dev/patterns/forms/date-input
  • https://uxpatterns.dev/patterns/forms/date-range
  • https://uxpatterns.dev/patterns/forms/text-field

---

For full implementation detail, examples, and testing notes, see references/pattern.md.

Pattern page: https://uxpatterns.dev/patterns/forms/date-picker

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.