react-router-modal
react-router-modal copied to clipboard
Simple modals for react-router 4
Hi everyone! Here is an example: `` `` When navigate to `/path` modal gets `modal_in` class. Then click 'Back' button in browser => modal gets `modal_out` class and `Component` unmount...
I'm trying out the examples linked to from the readme here: https://davidmfoley.github.io/react-router-modal-examples/basic The 'View Source' link points to https://github.com/davidmfoley/react-router-modal-examples/blob/masyoutter/src/examples/basic/ which does not exist. I checked out the code and found...
The `bodyModalClassName` property is ignored. When modal is open, the class `react-router-modal__modal-open` is added to the `body`.
Is it possible to add some paths inside the modal? How could it be implemented? I'd like to implement a settings modal with a lot of categories
How do I specify the modal router in this type of structure? ``` const routes = [ { component: Root, routes: [ { path: "/", exact: true, component: Home },...
I want to make modals that have their own route, if you route to them directly, but also show the page underneath them as whatever was loaded when the user...
`` Doesn't work, do you know a way to fix it ? Thanks
Hi, would it be possible to make a ModalRoute always mount last via a prop? For example for when you need the modal behind to finish loading before mounting the...
Hey there! I implemented the modal on a list view. I can open the modal perfectly by clicking on a list item. The problem is when clicking the backdrop is...