useItem
A hook to declare a timeline item.
Use this hook to declare an HTML element as an item in the timeline.
Options
id
idid: stringA unique id to identify this item.
relevance
id: stringA unique id to identify this item.
disabled?
disabled?: booleanAn optional boolean to disable the interactivity of the item.
data?
data?: objectCustom data that can be passed to the row.
🧠 This can be passed to rows to identify their type. This type can later be used in the event callbacks to apply different behaviors to different row types.
Events
useItem can also receive callbacks, that will be called when the relevant event is triggered.
For example:
const onResizeMove = useCallback(() => {
const updatedRelevance =
event.active.data.current.getRelevanceFromResizeEvent?.(event)
// update some local state with the updated-relevance
}, [])
useItem({
id: props.id,
relevance: props.relevance,
onResizeMove,
})onResizeStart?
onResizeMove?: (event: ResizeStartEvent) => voidtype ResizeStartEvent = {
active: Omit<Active, 'rect'>
direction: DragDirection // 'start' | 'end'
}onResizeMove?
onResizeMove?: (event: ResizeMoveEvent) => voidtype ResizeMoveEvent = {
active: Omit<Active, 'rect'>
delta: {
x: number
}
direction: DragDirection // 'start' | 'end'
}onResizeEnd?
onResizeMove?: (event: ResizeEndEvent) => voidtype ResizeEndEvent = {
active: Omit<Active, 'rect'>
delta: {
x: number
}
direction: DragDirection // 'start' | 'end'
}API
itemStyle
itemStyleitemStyle: CSSPropertiesBasic style properties that must be passed to the item wrapper element.
itemContentStyle
itemContentStyleitemContentStyle: CSSPropertiesBasic style properties that must be passed to the item's children wrapper element.
Last updated