mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-22 17:58:05 +00:00
This is a different approach to React components suggested by @arturi. Instead of the components adding and removing plugins when mounting and unmounting, plugins are configured at the start, and the components act as slots for the plugins to actually mount in. Because all plugins are still being configured up front here, we don't have to change how the provider `target:` options work, they can install themselves into eg. the Dashboard plugin immediately. The core of this approach is the `UppyWrapper` component, which takes an Uppy instance and a plugin ID, and mounts the plugin inside itself. The other components only provide a default plugin ID. The one change required in Uppy itself for this to work is to the `mount()` functions: now, `mount()` configures `this.target` on the plugins. If plugins do not have a `target:` option, they do not mount on install. Some DOM code also had to be moved into the `mount()` function for the DragDrop component instead of staying in `install()`, but I think it makes sense. (Still have to work out how to make the `DashboardModal` component's `onRequestClose` option work.) |
||
|---|---|---|
| .. | ||
| index.js | ||