Skip to content

Commit f9b5d53

Browse files
amkoehlerjquense
authored andcommitted
DnD support for custom EventWrapper (jquense#880)
* Added DnD support for custom DateCellWrapper and DayWrapper components * Code cleanup Fixed all hardcoded `defaultView` prop strings to use the Views constants * Custom DropWrapper fixes - Pass through range and value props to match non-dnd component props - Added `customComponents` utility file for use with stories - Clarified comment in `withDragAndDrop` * Support for custom EventWrapper * Added examples to storybook
1 parent d372f0d commit f9b5d53

File tree

4 files changed

+45
-5
lines changed

4 files changed

+45
-5
lines changed

src/addons/dragAndDrop/DraggableEventWrapper.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import { accessor } from '../../utils/propTypes'
88
import { accessor as get } from '../../utils/accessors'
99

1010
import BigCalendar from '../../index'
11-
const EventWrapper = BigCalendar.components.eventWrapper
1211

1312
class DraggableEventWrapper extends React.Component {
1413
static contextTypes = {
14+
components: PropTypes.object,
1515
draggableAccessor: accessor,
1616
resizableAccessor: accessor,
1717
}
@@ -51,6 +51,10 @@ class DraggableEventWrapper extends React.Component {
5151
}
5252

5353
render() {
54+
const { components } = this.context
55+
const EventWrapper =
56+
components.eventWrapper || BigCalendar.components.eventWrapper
57+
5458
let {
5559
connectDragSource,
5660
connectTopDragSource,

src/addons/dragAndDrop/withDragAndDrop.js

-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ try {
5252
* If you care about these corner cases, you can examine the `allDay` param suppled
5353
* in the callback to determine how the user dropped or resized the event.
5454
*
55-
* Note: you cannot use custom `EventWrapper` components when using this HOC as it
56-
* is overwritten here.
57-
*
58-
*
5955
* @param {*} Calendar
6056
* @param {*} backend
6157
*/

stories/Calendar.js

+31
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,19 @@ storiesOf('module.Calendar.week', module)
399399
</div>
400400
)
401401
})
402+
.add('add custom eventWrapper', () => {
403+
return (
404+
<div style={{ height: 600 }}>
405+
<Calendar
406+
defaultView={Calendar.Views.DAY}
407+
events={events}
408+
components={{
409+
eventWrapper: customComponents.eventWrapper,
410+
}}
411+
/>
412+
</div>
413+
)
414+
})
402415
.add('no duration', () => {
403416
return (
404417
<div style={{ height: 600 }}>
@@ -624,3 +637,21 @@ storiesOf('module.Calendar.week', module)
624637
</div>
625638
)
626639
})
640+
.add('draggable and resizable with custom eventWrapper', () => {
641+
return (
642+
<div style={{ height: 600 }}>
643+
<DragAndDropCalendar
644+
components={{
645+
eventWrapper: customComponents.eventWrapper,
646+
}}
647+
defaultDate={new Date()}
648+
defaultView={Calendar.Views.WEEK}
649+
events={events}
650+
resizable
651+
showMultiDayTimes
652+
onEventDrop={action('event dropped')}
653+
onEventResize={action('event resized')}
654+
/>
655+
</div>
656+
)
657+
})

stories/customComponents.js

+9
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ const customComponents = {
4444
</div>
4545
)
4646
},
47+
eventWrapper: eventWrapperProps => {
48+
const style = {
49+
border: '4px solid',
50+
borderColor:
51+
eventWrapperProps.event.start.getHours() % 2 === 0 ? 'green' : 'red',
52+
padding: '5px',
53+
}
54+
return <div style={style}>{eventWrapperProps.children}</div>
55+
},
4756
}
4857

4958
export default customComponents

0 commit comments

Comments
 (0)