All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres (more or less) to Semantic Versioning.
- Add unit argument to onZoom and onTimeChange callbacks @hckr #655
- Add
className
prop to Timeline component to overridereact-calendar-timeline
class #682 - support zoom level seconds #835 @horizon-plaza
- custom buffer prop (help with controlled scrolling) @Ilaiwi
- Fix injecting custom vertical line's class names for time periods longer than day @RafikiTiki
- fix Context Menu unintentionally disabled by default @dsgipe #769
- delete props
headerLabelFormats
andsubHeaderLabelFormats
not you can passformatLabel
function toDateHeader
with label width and start and end time of intervals
- fix scrolling with trackpad @ilaiwi #679
- remove duplicate proptype validation in
TimelineStateContext
@xat
- fix
visibleTimeStart
,visibleTimeEnd
andonTimeChange
not working as expected in controlled mode @ilaiwi
two new examples
Controlled visible port of the calendar using visibleTimeStart
and visibleTimeEnd
. This also limits scrolling by mouse and adds two buttons to change the visible port of the calendar
Using controlled scroll and react-spring to trigger scrolling and create an animation.
- improve performance by:
- eliminate extra call of layout on state update @ilaiwi
- eliminate unmounting and mounting of Interval Component @ilaiwi
- fix
react-calendar-timeline
not working withreact-hot-loader
#607 @ilaiwi + @westn - add documentation for
stackItems
format #661 @tyson-kubota
- add documentation for
onItemDeselect
#350 @ilaiwi - solve a bug where
onItemDeselect
is not triggered as expected for several item clicks #350 @ilaiwi - fix row height on browser scaling #615 @gaston-niglia
update to [email protected]
for newer versions of node.
- render the items layer after columns and rows for layring @ilaiwi
- fix issue where mouse down gets stuck when scrolling the timeline #526 @KhalidArdah
you can as well solve the issue without upgrading by adding the following style
.react-calendar-timeline .rct-horizontal-lines {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
- Add
onItemDrag
prop to<Timeline />
#517 @bettymakes - Upgrade to Babel 7.5.0, Jest 24.8.0, Enzyme 3.10.0 @trevdor
- Removed
<InfoLabel />
in favour of allowing for custom component to be rendered on move or resize. Check out the demo indemo/app/demo-custom-info-label
for an example on how to display your own custom info label or this example.
- Move
classnames
to a production dependency
- Fixed the
undefined
classnames in TimelineHeaders #566 @trevdor
- Fixed the auto-scroll right bug in a scaled browser. #528 @cw196
- fix error when using
week
unit causing format error inDateHeader
#562 @dkarnutsch - fix Wheel/Mousewheel Event errors on chrome 73 #541 @ilaiwi
This new feature gives more control to dev to create customizable headers to provide better UI. Now user have more control through a set of new components to render headers. This new feature came with a breaking change though.
import Timeline, {
TimelineHeaders,
SidebarHeader,
DateHeader
} from 'react-calendar-timeline'
<Timeline>
<TimelineHeaders>
<SidebarHeader>
{({ getRootProps }) => {
return <div {...getRootProps()}>Left</div>
}}
</SidebarHeader>
<DateHeader unit="primaryHeader" />
<DateHeader />
<CustomHeader height={50} headerData={{someData: 'data'}} unit="year">
{({
headerContext: { intervals },
getRootProps,
getIntervalProps,
showPeriod,
data,
}) => {
return (
<div {...getRootProps()}>
{intervals.map(interval => {
const intervalStyle = {
lineHeight: '30px',
textAlign: 'center',
borderLeft: '1px solid black',
cursor: 'pointer',
backgroundColor: 'Turquoise',
color: 'white'
}
return (
<div
onClick={() => {
showPeriod(interval.startTime, interval.endTime)
}}
{...getIntervalProps({
interval,
style: intervalStyle
})}
>
<div className="sticky">
{interval.startTime.format('YYYY')}
</div>
</div>
)
})}
</div>
)
}}
</CustomHeader>
</TimelineHeaders>
</Timeline>
Check out the new docs before please here
stickyOffset
andstickyHeader
now you can make your header sticky by following this examplesheaderRef
to get the headerRef you need to pass ref callback toTimelineHeader
componentheaderLabelGroupHeight
andheaderLabelHeight
now you can pass aheight
prop to bothCustomHeader
andDateHeader
headerLabelFormats
andsubHeaderLabelFormats
not you can passformatLabel
function toDateHeader
with label width and start and end time of intervals
- fix height calculation of stacked items is off if no item is visible in a line @Felix-N
- fix Unsubscribing markers correctly when unmounted @gaston-niglia
- improve unit tests coverage #426 - @ilaiwi
- stack items by group #384 - @acemac
- fix bug where
canMove
prop gets ignored #484 - @acemac + @ilaiwi - fix sidebar re-render when groupHeights do not change #478 - @SDupZ
now you can stack choose to stack items in individual groups by providing the property stackItems
in group object. The property in group overrides the timeline prop stackItems
.
const groups = [{ id: 1, title: 'group 1', stackItems: false }, { id: 2, title: 'group 2', stackItems: true }]
const items = [
{
id: 1,
group: 1,
title: 'item 1',
start_time: moment(),
end_time: moment().add(1, 'hour')
},
{
id: 2,
group: 2,
title: 'item 2',
start_time: moment().add(-0.5, 'hour'),
end_time: moment().add(0.5, 'hour')
},
{
id: 3,
group: 1,
title: 'item 3',
start_time: moment().add(2, 'hour'),
end_time: moment().add(3, 'hour')
}
]
ReactDOM.render(
<div>
Rendered by react!
<Timeline
groups={groups}
items={items}
defaultTimeStart={moment().add(-12, 'hour')}
defaultTimeEnd={moment().add(12, 'hour')}
/>
</div>,
document.getElementById('root')
)
- Provided a new key
groupLabelKey
to allow splitting of the key used to render the Sidebar and the InfoLabel visible during drag operations.groupTitleKey
continues to be used to render the Sidebar. #442 @thiagosatoshi - fix scroll left/right causes item move/edit to be at incorrect time #401 @acemac
- now
getResizeProps
takeleftClassName
andrightClassName
and returns className for left and right props @acemac - fix functionality of
itemTitle
anditemDivTitle
issue @acemac
- fix item dimensions not being rendered on zoom in/out @ilaiwi + @acemac
- correct
right_sidebar
torightTitle
in readme @maxlibin
- add
rct
to.top-header
and.bottom-header
to become.rct-top-header
and.rct-bottom-header
@Simek - upgrade dev dependance
[email protected]
@acemac
- eliminate extra renders on every scroll - #357 acemac
- When the
date
prop on aCustomMarker
changes the marker will now move on the timeline - #421 kevinmanncito ilaiwi - Header has a bounce effect - #311 acemac
####dev
- update to
react-testing-library
version 5 - remove deprecated
toBeInDom
- ability to set classes for timeline columns depending on its time - #364
- ability to add custom classes and custom heights to the timeline rows - #367
- add
scrollRef
to allow for programmatically scrolling timeline - #372
- rework item renderer to render the whole item using render prop and prop getters - #289
onCanvasClick
not fired - #383- cursor marker disappear while hovering over item - #378
- Date passed to CursorMarker child is wrong - #379
- groupRenderer doesnt work for right sidebar - #377
- Timeline now respects changes to
headerLabelFormats
andsubHeaderLabelFormats
- #362
- timeline markers - user can have more control over markers that are rendered on the timeline. See
TimelineMarkers
section of README for documentation - #327
- Removed support for React 15 and lower. This is due to the fact that 16+ supports returning arrays from render, something that the TimelineMarker feature relies on.
- removed
showCursorLine
prop in favor of using theCursorMarker
component. SeeTimelineMarkers
section of README for documentation.
import Timeline,
+ {TimelineMarkers, CursorMarker}
from 'react-calendar-timeline'
<Timeline
- showCursorLine
- />
+ >
+ <TimelineMarkers>
+ <CursorMarker />
+ </TimelineMarkers>
+ </Timeline>
- fix issue with single row header - #359
- support passing
style
prop from item - #347 selected
is provided toitemRenderer
- #348- simplify logic for calculate dimensions and prevent item width and left properties from being unbounded - (refactoring)
- pass canvasTimeStart/End via timelineContext to the itemRenderer prop
- throw more descriptive error if visibleTimeStart/End and defaultTimeStart/End are not passed as props. Timeline no longer calculates visibleTime start and end from items. Removed
onTimeInit
prop as it no longer serves a purpose. - #299 interactjs
is a peerDependency (wasn't previously). Upped version to 1.3.4 to fix issue #297
- fix for issue where NaN is returned in onItemMove if the startTime is not unix timestamp #300
- tap on canvas now dispatches
onCanvasClicked
- #168 - regression bug related to touch zoom
- code cleanup and refactoring around group rows
- clicking on canvas when item is selected now calls
onCanvasClicked
- #312
- added
stickyHeader
to disable/enable timeline header sticking on scroll. - removed
fullUpdate
prop and functionality. Labels rely onposition: sticky
to show for items that start beforevisibleTimeStart
. This (should) greatly improve scroll performance. - removed extraneous css such as
text-align: center
on.rct-item
,.rct-item-overflow
to simplify the dom structure ofItem.tsx
- added
headerRef
callback to receive a reference to the header element. Due to the change in how the header positioning is implemented (i.e. usingposition: sticky
), there is a need to use a polyfill in certain browsers that don't supportposition: sticky
. With a reference to the header dom element, you can use a polyfill to apply sticky behavior. minimumWidthForItemContentVisibility
prop to control at what width inner item content is rendered.
- removed
fixedHeader
prop in favor of usingposition: sticky
by default - removed import of stylesheets in library code, put onus on user to handle this stylesheet
- Shift + Scroll via mouse wheel scrolls canvas horizontally - #281
- removed
preventDefault
call in item double click handler - #277
- fix issue with time report with onItem* callbacks for browsers that don't support
x
property in rect object - #266
- header positioned incorrectly when not fixed/sticky - caused by #236
- propTypes error related to Item prop - #239
- onCanvasClick and onCanvasDoubleClick were being called on header click - #236
- on timeline zoom, onZoom prop is called with timelineContext - #248
This release contains a lot of code cleanup as well as an API change to the itemRenderer
prop.
-
peerDependency warning if using React 16 #187
-
timelineContext
is provided toitemRenderer
#233
- Fixed issue with state not properly updated when ending resize #173
- Fixed issue with onItem* events not reporting correct time when timeline has outer padding #227
- context click actually calls double click callback #225
- Removed href attribute from header divs #222
- Clicking on Svg element throws error #216
This version contains one crucial bug fix and a simple update to item clicks to report time. Much of the other work was around repo maintenance and preparing the repo for future development (update to dev-tooling, some documentation updates)
- Report time with all item clicks #210
- Drag doesn't stop when you leave the timeline canvas #182
Plugin support and sticky header!
- Plugins system (pass them as children) @mariusandra #122
- Sticky header (
fixedHeader='sticky'
) @mariusandra #125
- [BREAKING] Removed deprecated option to pass sidebar header content as children. Use
sidebarContent
instead. @mariusandra - [BREAKING] Removed fixedHeader option
absolute
, which was broken and is now replaced with the optionsticky
@mariusandra
- Notice for modern module bundlers @jlubben @mariusandra #128
- Add treeGroups demo
Plenty of bugfixes, tests and new demos in these 0.14 patch releases.
- Fixed bug with
resizeDetector
and with detecting changes insidebarWidth
@mariusandra - Fixed bug where order
0
was evaluated as a falsy @nicocrm #111 - Fix overflow-x with header @signalwerk
- Add meta+wheel modifier that zooms 3x the speed of the normal wheel events @mariusandra
- Refactor
calculateDimensions
to be pure @signalwerk - Convert
groupHeights
andgroupTops
to arrays (from objects) @mariusandra
- Add linkedTimelines demo
- Add elementResize demo
- Add docs about modifier keys for zooming/scrolling @signalwerk
- Use
prop-types
instead ofReact.PropTypes
to support React 15.5+. @mariusandra #110
- Use
headerLabelFormats
andsubHeaderLabelFormats
to customise the header labels. @Slowyn #68 - Optional pluggable
resizeDetector
to detect when the element's container is resized. @Ziller321 #94
- Fix renders with empty
groups
array. @signalwerk #106
- An option to add another sidebar to the right of the Timeline. @goooseman #80
itemRenderer
prop to allow specifying a custom component to render the items @nicocrm #103groupRenderer
prop to allow specifying a custom component to render the groups @nicocrm #103showCursorLine
prop to show a vertical line at the snap position @meikoudras- You can now select multiple items if you take control of the
selected
prop and theonItemSelect
handler. @meengit #71 - Canvas context menu handler
onCanvasContextMenu
@meikoudras
- Calculate width when we receive sidebar width property @jmerriweather #75
- Avoid updating updateDimensions right after updateScrollCanvas @nicocrm #87
- Fix typo collision detection in stack() @nicocrm #96
- Remove dead code @signalwerk #101
- Disable cursor style by interactjs @bkniffler #89
- Fixed header width and Header label weekday support @meikoudras #66
- [Deprecated] To have content above the left sidebar, pass it in a
sidebarContent={<div />}
prop, not as children to the component.
- Without canResize prop in items it gave a Uncaught TypeError. @tgosp
- An option to fully update the calendar at every scroll event. With this change, labels of items are always fully visible, even if looking at a multi day event with a zoom level set at 30min. @mariusandra
- The left resize edge mouse cursor is now a left arrow @mariusandra
- You can also resize items from the left now @mariusandra
- Allow disabling selection clicks on items #58 by @sjchmiela
- Allow passing additional props to
Item
's<div/>
#58 by @sjchmiela - Add
clickTolerance
so dragging more than 3 pixels is no longer a click @mariusandra
- [BREAKING] Same arguments order (groupId, time, e) for onCanvasDoubleClick and onCanvasClick #52 by @signalwerk
- [Deprecated]
onTimeChange
now getsupdateScrollCanvas
as the third argument. Doingthis.updateScrollCanvas
is no longer needed and will be removed soon. - Moved React & Moment from dependencies to peerDependencies #53 by @meikoudras
- Fix resizing when inside DIV #47 by @semargal
- Fix demo for IE11 #44 by @lucidlemon
- Package a .css file, not a .scss file as previously done. @mariusandra