date-fns#getDate JavaScript Examples
The following examples show how to use
date-fns#getDate.
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: CalendarDay.js From react-nice-dates with MIT License | 5 votes |
export default function CalendarDay({
date,
height,
locale,
modifiers: receivedModifiers,
modifiersClassNames: receivedModifiersClassNames,
onClick,
onHover
}) {
const dayOfMonth = getDate(date)
const dayClassNames = {}
const modifiers = { today: isToday(date), ...receivedModifiers }
const modifiersClassNames = { ...defaultModifiersClassNames, ...receivedModifiersClassNames }
Object.keys(modifiers).forEach(name => {
dayClassNames[modifiersClassNames[name]] = modifiers[name]
})
const handleClick = event => {
onClick(date)
event.preventDefault()
}
const handleMouseEnter = () => {
onHover(date)
}
const handleMouseLeave = () => {
onHover(null)
}
return (
<span
className={classNames('nice-dates-day', dayClassNames)}
onClick={handleClick}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
onTouchEnd={handleClick}
style={{ height }}
>
{dayOfMonth === 1 && (
<span className='nice-dates-day_month'>{format(date, 'LLL', { locale })}</span>
)}
<span className='nice-dates-day_date'>{dayOfMonth}</span>
</span>
)
}