Gregor Adams

Results 184 comments of Gregor Adams

This could actually be done inside react-rnd itself using the current features of re-resizable. I added the feature locally in re-resizable but soon realized that this would require repositioning and...

+1 for this feature. Here's an idea for a more or less stable workaround: (use case: **dnd builders**) **[Code sandbox example](https://codesandbox.io/s/40p81qy7v0)** > (cloned from https://codesandbox.io/s/ql08j35j3q via https://github.com/atlassian/react-beautiful-dnd#basic-usage-examples) - while dragging...

@NunoCardoso you can render the placeholder as a custom ghost. This would then animate the target Items correctly. The source element can be customized but there is no way of...

@kohenchia thx for reporting. Here's a new hack: ```js const Clone = styled(Item)` ~ div { transform: none!important; } `; ``` https://codesandbox.io/s/q3717y1jq4 ![dnd_new_hack](https://user-images.githubusercontent.com/1148334/54861462-61201080-4d29-11e9-9921-79fa41958648.gif)

We would also love to use this with a local server. **Use Case: next.js server** Steps: 1. `yarn build` 2. `yarn start` (never finishes since the server is running) 3....

We also noticed severe memory issues using `Bloom` in one of our prototypes. We decided to remove it for now. I will try to extract our implementation into a codesandbox...

Here's our reproduction: https://codesandbox.io/s/mystifying-kare-k4lh3b?file=/src/App.js ```js useFrame(() => { if (bloomRef.current && intensityRef.current) { bloomRef.current.intensity = intensityRef.current; } }); ``` Screencast: (Activity Monitor > View > Update Frequency > Very Often...

I also switched to react-beautiful-dnd since the issues in this repo don't seem to a lot of support or even responses. :(

@mitar while I understand your idea I think it would be fatal. IMHO it is not a good practice to use an angular menu, a React date-picker and some blaze...