Ograniczenia
Wymagane
Gdy ustawione jest required, przycisk czyszczenia jest wyłączony, a wartość nie może być opróżniona.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function Required() { const [value, setValue] = useState<Date | null>(new Date());
return <DatePicker value={value} onChange={setValue} required />;}Daty minimalne i maksymalne
Ogranicz wybieralne daty do określonego zakresu za pomocą minDate i maxDate.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function MinMaxDate() { const [value, setValue] = useState<Date | null>(null);
const today = new Date(); const minDate = new Date(today.getFullYear(), today.getMonth(), 1); const maxDate = new Date(today.getFullYear(), today.getMonth() + 1, 0);
return <DatePicker value={value} onChange={setValue} minDate={minDate} maxDate={maxDate} />;}Wyłączone daty
Użyj isDateUnavailable, aby dynamicznie wyłączać określone daty.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function DisabledDates() { const [value, setValue] = useState<Date | null>(null);
const isDateUnavailable = (date: Date) => { const day = date.getDay(); return day === 0 || day === 6; // Disable weekends };
return <DatePicker value={value} onChange={setValue} isDateUnavailable={isDateUnavailable} />;}Wyłącz przeszłość / przyszłość
Użyj disablePast lub disableFuture, aby szybko wyłączyć daty przed/po dzisiejszym dniu.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function DisablePastFuture() { const [pastValue, setPastValue] = useState<Date | null>(null); const [futureValue, setFutureValue] = useState<Date | null>(null);
return ( <div style={{ display: "flex", flexDirection: "column", gap: 16 }}> <div> <div style={{ fontSize: 13, fontWeight: 600, opacity: 0.7, marginBottom: 8 }}> Past dates disabled </div> <DatePicker value={pastValue} onChange={setPastValue} disablePast /> </div> <div> <div style={{ fontSize: 13, fontWeight: 600, opacity: 0.7, marginBottom: 8 }}> Future dates disabled </div> <DatePicker value={futureValue} onChange={setFutureValue} disableFuture /> </div> </div> );}Past dates disabled
Future dates disabled
Wyróżnione daty
Wizualnie wyróżnij określone daty (np. święta, wydarzenia) za pomocą właściwości highlightDates.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function HighlightDates() { const [value, setValue] = useState<Date | null>(null);
const today = new Date(); const highlightDates = [ new Date(today.getFullYear(), today.getMonth(), 5), new Date(today.getFullYear(), today.getMonth(), 15), new Date(today.getFullYear(), today.getMonth(), 25), ];
return <DatePicker value={value} onChange={setValue} highlightDates={highlightDates} />;}Początkowy miesiąc
Ustaw początkowy wyświetlany miesiąc, gdy selektor otwierany jest po raz pierwszy.
import { useState } from "react";import { DatePicker } from "react-date-range-picker-styled";import "react-date-range-picker-styled/rdrp-styles.css";
function InitialMonth() { const [value, setValue] = useState<Date | null>(null);
return <DatePicker value={value} onChange={setValue} initialMonth={new Date(2026, 5, 1)} />;}