date-fns#endOfYear JavaScript Examples
The following examples show how to use
date-fns#endOfYear.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DateFilter.js From umami with MIT License | 5 votes |
function DateFilter({ value, startDate, endDate, onChange, className, options }) {
const [showPicker, setShowPicker] = useState(false);
const displayValue =
value === 'custom' ? (
<CustomRange startDate={startDate} endDate={endDate} onClick={() => handleChange('custom')} />
) : (
value
);
async function handleChange(value) {
if (value === 'custom') {
setShowPicker(true);
return;
}
onChange(value);
}
function handlePickerChange(value) {
setShowPicker(false);
onChange(value);
}
return (
<>
<DropDown
className={className}
value={displayValue}
options={options || filterOptions}
onChange={handleChange}
/>
{showPicker && (
<Modal>
<DatePickerForm
startDate={startDate}
endDate={endDate}
minDate={new Date(2000, 0, 1)}
maxDate={endOfYear(new Date())}
onChange={handlePickerChange}
onClose={() => setShowPicker(false)}
/>
</Modal>
)}
</>
);
}
Example #2
Source File: date.js From umami with MIT License | 5 votes |
export function getDateRange(value, locale = 'en-US') {
const now = new Date();
const dateLocale = getDateLocale(locale);
const match = value.match(/^(?<num>[0-9]+)(?<unit>hour|day|week|month|year)$/);
if (!match) return;
const { num, unit } = match.groups;
if (+num === 1) {
switch (unit) {
case 'day':
return {
startDate: startOfDay(now),
endDate: endOfDay(now),
unit: 'hour',
value,
};
case 'week':
return {
startDate: startOfWeek(now, { locale: dateLocale }),
endDate: endOfWeek(now, { locale: dateLocale }),
unit: 'day',
value,
};
case 'month':
return {
startDate: startOfMonth(now),
endDate: endOfMonth(now),
unit: 'day',
value,
};
case 'year':
return {
startDate: startOfYear(now),
endDate: endOfYear(now),
unit: 'month',
value,
};
}
}
switch (unit) {
case 'day':
return {
startDate: subDays(startOfDay(now), num - 1),
endDate: endOfDay(now),
unit,
value,
};
case 'hour':
return {
startDate: subHours(startOfHour(now), num - 1),
endDate: endOfHour(now),
unit,
value,
};
}
}
Example #3
Source File: Calendar.js From covid19india-react with MIT License | 4 votes |
function Calendar({date, dates, slider}) {
const [view, setView] = useState('month');
const [activeStartDate, setActiveStartDate] = useState(parseIndiaDate(date));
const minDate = parseIndiaDate(dates[0]);
const maxDate = parseIndiaDate(dates[dates.length - 1]);
const isDateDisabled = ({date, view}) => {
return (
view === 'month' &&
!dates.includes(formatISO(date, {representation: 'date'}))
);
};
const handleCalendarClick = (value) => {
const clickedDate = formatISO(value, {representation: 'date'});
slider.moveToSlide(dates.indexOf(clickedDate));
};
const handleViewButton = ({view}) => {
setView(view);
};
const handleNavigationButton = ({activeStartDate}) => {
setActiveStartDate(activeStartDate);
};
const handleNavigation = (direction) => {
const newDate = add(
activeStartDate,
view === 'month' ? {months: direction} : {years: direction}
);
const lower =
view === 'month' ? startOfMonth(minDate) : startOfYear(minDate);
const upper = view === 'month' ? endOfMonth(maxDate) : endOfYear(maxDate);
if (lower <= newDate && newDate <= upper) {
setActiveStartDate(newDate);
}
};
const swipeHandlers = useSwipeable({
onSwipedRight: handleNavigation.bind(this, -1),
onSwipedLeft: handleNavigation.bind(this, 1),
});
const handleWheel = (event) => {
if (event.deltaX !== 0) {
handleNavigation(Math.sign(event.deltaX));
}
};
return (
<div className="Calendar" onWheel={handleWheel} {...swipeHandlers}>
<ReactCalendar
value={parseIndiaDate(date)}
tileDisabled={isDateDisabled}
{...{minDate, maxDate, activeStartDate, view}}
onActiveStartDateChange={handleNavigationButton}
onViewChange={handleViewButton}
minDetail="year"
showFixedNumberOfWeeks
onChange={handleCalendarClick}
prevLabel={
<div>
<ChevronLeft size={18} />
</div>
}
nextLabel={
<div>
<ChevronRight size={18} />
</div>
}
prev2Label={
<div>
<ChevronsLeft size={18} />
</div>
}
next2Label={
<div>
<ChevronsRight size={18} />
</div>
}
/>
</div>
);
}