Cormac Relf

Results 226 comments of Cormac Relf

Trick is you can’t actually have more than one skyhook drag source dragged at once, so you have to simulate it by having a complex drag preview that looks like...

It’s a bit weird that the issue would only show up now, considering dnd-multi-backend has apparently always treated backends as constructors. The main backends are not actually constructors. Can you...

(Oh, I figured out that dnd-multi-backend 4.0 is a *really* breaking change, requiring using react-dnd-cjs and all the -cjs versions of all those packages. I won’t make my dependents do...

See the issue on dnd-multi-backend. Essentially, you can also work around this by transpiling to ES5 in all cases. Angular 8 I believe will try to deliver ES2015 to capable...

Nah don’t worry about it if you’ve already got 5 off the ground

Yes, it’s possible, as you have correctly noted the kanban examples basically do this without the recursion, but there is no reason why you couldn’t add recursion. The closest to...

`accepts: [NODE, LEAF]` — just use an array of types. You are correct that NgrxSortableConfiguration can’t do this, I will push a fix asap.

Released ~1.3.0~ 1.3.1. I also noticed that you'll probably want to check the DropTargetMonitor for info about whether you are hovering directly or through a bunch of child lists, and...

As I recall hover is only called for SortableSpec if canDrop is true. Doesn’t all this suggest a better Nested implementation that checks shallow isOver instead of, or in addition...

Some browsers do it natively (and very smoothly) with HTML5 drag/drop. So skyhook and react-dnd both do nothing, it depends on which backend you choose. You may want to look...