react-beautiful-dnd#DraggableStateSnapshot TypeScript Examples
The following examples show how to use
react-beautiful-dnd#DraggableStateSnapshot.
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: SelectedDrag.tsx From crust-apps with Apache License 2.0 | 6 votes |
function Selected ({ address, index, onDeselect }: Props): React.ReactElement<Props> {
return (
<Draggable
draggableId={address}
index={index}
key={address}
>
{(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement => {
const element = (
<div
// eslint-disable-next-line @typescript-eslint/unbound-method
ref={provided.innerRef}
{...provided.draggableProps}
{...provided.dragHandleProps}
>
<AddressToggle
address={address}
className={snapshot.isDragging ? 'isDragging' : ''}
noToggle
onChange={onDeselect}
/>
</div>
);
return snapshot.isDragging
? ReactDOM.createPortal(element, portal)
: element;
}}
</Draggable>
);
}
Example #2
Source File: Column.tsx From knboard with MIT License | 6 votes |
Column = ({ id, title, tasks, index }: Props) => {
return (
<Draggable draggableId={`col-${id}`} index={index}>
{(provided: DraggableProvided, snapshot: DraggableStateSnapshot) => (
<Container
ref={provided.innerRef}
{...provided.draggableProps}
data-testid={`col-${title}`}
>
<Header isDragging={snapshot.isDragging}>
<ColumnTitle
{...provided.dragHandleProps}
id={id}
title={title}
tasksCount={tasks.length}
aria-label={`${title} task list`}
data-testid="column-title"
/>
</Header>
<TaskList columnId={id} listType="TASK" tasks={tasks} index={index} />
</Container>
)}
</Draggable>
);
}
Example #3
Source File: Task.tsx From knboard with MIT License | 6 votes |
Task = ({ task: task, style, index }: Props) => {
const dispatch = useDispatch();
const handleClick = () => {
dispatch(setEditDialogOpen(task.id));
};
return (
<Draggable key={task.id} draggableId={`task-${task.id}`} index={index}>
{(
dragProvided: DraggableProvided,
dragSnapshot: DraggableStateSnapshot
) => (
<Container
isDragging={dragSnapshot.isDragging}
isGroupedOver={Boolean(dragSnapshot.combineTargetFor)}
ref={dragProvided.innerRef}
{...dragProvided.draggableProps}
{...dragProvided.dragHandleProps}
style={getStyle(dragProvided, style)}
data-is-dragging={dragSnapshot.isDragging}
data-testid={`task-${task.id}`}
data-index={index}
aria-label={`task ${task.title}`}
onClick={handleClick}
css={taskContainerStyles}
>
<Content>
<TextContent>{task.title}</TextContent>
<TaskId>id: {task.id}</TaskId>
<TaskLabels task={task} />
<TaskFooter task={task} />
</Content>
</Container>
)}
</Draggable>
);
}
Example #4
Source File: SelectedDrag.tsx From subscan-multisig-react with Apache License 2.0 | 6 votes |
function Selected({ address, index, onDeselect }: Props): React.ReactElement<Props> {
return (
<Draggable draggableId={address} index={index} key={address}>
{(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement => {
const element = (
<div
// eslint-disable-next-line @typescript-eslint/unbound-method
ref={provided.innerRef}
{...provided.draggableProps}
{...provided.dragHandleProps}
>
<AddressToggle
address={address}
className={snapshot.isDragging ? 'isDragging' : ''}
noToggle
onChange={onDeselect}
/>
</div>
);
return snapshot.isDragging ? ReactDOM.createPortal(element, portal) : element;
}}
</Draggable>
);
}
Example #5
Source File: Tree.tsx From react-beautiful-tree with Apache License 2.0 | 6 votes |
renderDraggableItem = (flatItem: FlattenedItem) => (
provided: DraggableProvided,
snapshot: DraggableStateSnapshot
) => {
const { renderItem, onExpand, onCollapse, offsetPerLevel } = this.props
const currentPath: Path = this.calculateEffectivePath(flatItem, snapshot)
if (snapshot.isDropAnimating) {
this.onDropAnimating()
}
return (
<TreeItem
key={flatItem.item.id}
item={flatItem.item}
path={currentPath}
onExpand={onExpand}
onCollapse={onCollapse}
renderItem={renderItem}
provided={provided}
snapshot={snapshot}
itemRef={this.setItemRef}
offsetPerLevel={offsetPerLevel}
/>
)
}
Example #6
Source File: TreeItem.tsx From react-beautiful-tree with Apache License 2.0 | 6 votes |
patchDraggableProps = (
draggableProps: DraggableProvidedDraggableProps,
snapshot: DraggableStateSnapshot
): DraggableProvidedDraggableProps => {
const { path, offsetPerLevel, style } = this.props
const transitions =
draggableProps.style && draggableProps.style.transition
? [draggableProps.style.transition]
: []
if (snapshot.dropAnimation) {
transitions.push(
// @ts-ignore
`padding-left ${snapshot.dropAnimation.duration}s ${snapshot.dropAnimation.curve}`
)
}
const transition = transitions.join(', ')
return {
...draggableProps,
style: {
...draggableProps.style,
paddingLeft: (path.length - 1) * offsetPerLevel,
// @ts-ignore
transition,
...style,
},
}
}
Example #7
Source File: Tree.tsx From react-beautiful-tree with Apache License 2.0 | 5 votes |
calculateEffectivePath = (
flatItem: FlattenedItem,
snapshot: DraggableStateSnapshot
): Path => {
const { flattenedTree, draggedItemId } = this.state
if (
this.dragState &&
draggedItemId === flatItem.item.id &&
(this.dragState.destination || this.dragState.combine)
) {
const {
source,
destination,
combine,
horizontalLevel,
mode,
} = this.dragState
// We only update the path when it's dragged by keyboard or drop is animated
if (mode === 'SNAP' || snapshot.isDropAnimating) {
if (destination) {
// Between two items
return getDestinationPath(
flattenedTree,
source.index,
destination.index,
horizontalLevel
)
}
if (combine) {
// Hover on other item while dragging
return getDestinationPath(
flattenedTree,
source.index,
getIndexById(flattenedTree, combine.draggableId),
horizontalLevel
)
}
}
}
return flatItem.path
}
Example #8
Source File: BoardItem.tsx From projectboard with MIT License | 5 votes |
BoardItem = ({ task, index }: Props) => {
let priorityIcon = (
<span
className='inline-block m-0.5 rounded-sm border border-gray-100 hover:border-gray-200 p-0.5'
>
<PriorityIcon priority={task.priority} />
</span>
);
// const dispatch = useDispatch<AppDispatch>();
const updatePriority = (priority: string) => {
// dispatch(updatePriority(task, priority));
};
return (
<Draggable draggableId={task._id || 'id'} index={index} key={task._id}>
{(provided: DraggableProvided, snapshot: DraggableStateSnapshot) => {
let isDragging = snapshot.isDragging && !snapshot.isDropAnimating;
return (
<div
ref={provided.innerRef}
className={classNames(
'cursor-default flex flex-col w-full px-4 py-3 mb-2 bg-white rounded focus:outline-none',
{
'shadow-modal': isDragging,
}
)}
{...provided.draggableProps}
{...provided.dragHandleProps}
>
<div className='flex justify-between w-full cursor-default'>
<div className='flex flex-col'>
<span className='text-xs font-normal text-gray-500 uppercase'>{task._id}</span>
<span className='mt-1 text-sm font-medium text-gray-700 line-clamp-2 overflow-ellipsis'>{task.title}</span>
</div>
<div className='flex-shrink-0'>
{task.assignee ?
<Avatar name={`${task?.assignee?.user?.firstName} ${task?.assignee?.user?.lastName}`} /> :
<Avatar />}
</div>
</div>
<div className='mt-2.5 flex items-center'>
<PriorityMenu
button={priorityIcon}
disabled
// id={`r-priority-${task._id}`}
filterKeyword={true}
onSelect={(p: any) => updatePriority(p)}
/>
</div>
</div>
);
}}
</Draggable >
);
}
Example #9
Source File: PipelineEditComponents.tsx From baleen3 with Apache License 2.0 | 4 votes |
PipelineEditComponents: React.FC<PipelineEditComponentsProps> = ({
id,
type,
components,
addComponents,
moveComponent,
removeComponent,
setComponentName,
setComponentSettings,
}: PipelineEditComponentsProps) => {
const handleDrag = (result: DropResult): void => {
const { source, destination } = result
if (destination === undefined) {
return
}
if (destination.index === source.index) {
return
}
moveComponent(source.index, destination.index)
}
return (
<DragDropContext onDragEnd={handleDrag}>
<Droppable droppableId={id}>
{(provided: DroppableProvided): React.ReactElement => (
<Column
alignItems="center"
{...provided.droppableProps}
// eslint-disable-next-line @typescript-eslint/unbound-method
ref={provided.innerRef}
>
{components.map((component, index) => {
return (
<Draggable
key={component.id}
draggableId={component.id}
index={index}
>
{(
provider: DraggableProvided,
snapshot: DraggableStateSnapshot
): React.ReactElement => (
<Column
width={1}
alignItems="center"
// eslint-disable-next-line @typescript-eslint/unbound-method
ref={provider.innerRef}
{...provider.draggableProps}
>
<PipelineEditComponentSeparator
onInsert={(components: ComponentInfo[]): void =>
addComponents(components, index)
}
isDragging={snapshot.isDragging}
type={type}
/>
<PipelineComponent
{...provider.dragHandleProps}
type={type}
descriptor={component}
setName={setComponentName}
setSettings={setComponentSettings}
onDelete={removeComponent}
/>
</Column>
)}
</Draggable>
)
})}
{provided.placeholder}
<PipelineEditComponentSeparator
onInsert={(components: ComponentInfo[]): void =>
addComponents(components)
}
isDragging={false}
type={type}
/>
</Column>
)}
</Droppable>
</DragDropContext>
)
}