React Dategrid 📅
A calendar component based on render props.
The approach is to make as few decisions as possible. The only markup it renders is the structure for the underlying table, everything else is up to the consumer. It has no knowledge of something like a selected date or how do style past dates. Implement that kind of behaviour in renderDay
. The only thing it really needs is a moment instance to base its view on.
Install
npm install --save react-dategrid
yarn add react-dategrid
Usage
Each day
is a moment instance. The view
is what is currently shown by the component, also represented by a moment instance.
; Component state = view: { return <strong>view</strong>; } { const weekday = 'Mo' 'Tu' 'We' 'Th' 'Fr' 'Sa' 'Su'index; return <div className=index < 5 ? 'workday' : 'weekend'>weekday</div> } { if return <div className="day day--today">day</div> ; return <div className="day">day</div>; } { return <Dategrid view=thisstateview renderTitle=thisrenderTitle renderWeekday=thisrenderWeekday renderDay=thisrenderDay /> ; }
Props
view
The current view to render.
onViewChange(updatedView)
Called as the view updates.
renderTitle(view)
Receives the current view instance. This will be placed between the navigations with a colspan fixed to 5.
renderPreviousNavigation(props)
Receives props to be spread on the interactive navigation element.
renderNextNavigation(props)
Receives props to be spread on the interactive navigation element.
renderDay(day, view)
Receives a specific day as a moment instance together with the current view. This will be rendered into a <td />
.