Have you ever filled a form and mistakenly closed that tab or went back without completing the process and lost all those data? Prevent your users from experiencing the same.
Angular provides CanDeactivate
route guard, which prevent navigating from one route to another, unless the given condition becomes truthy.
Imagine a simple dashboard, having a form which helps User registration.
If the form is filled or half filled (dirty) and if the Admin navigates to some other route mistakenly, then the form entries will get lost and that Admin have to re-enter all the entries again to complete the registration.
In-order to prevent that, we can show a confirm popup, where Admin states that he is navigating with his knowledge, if not the navigation will be prevented.
As said earlier, we can achieve this using CanDeactivate
route guard.
Create a service which implements CanDeactivate<T>, which asks for canDeactivate()
method which in-turn takes an argument component
as the component which we want to implement CanDeactivate. And register your service in the provides array in the respective module.
CanDeactivate implementationSimple bootstrap form
@ViewChild(‘userForm’) userForm: NgForm;
inside the component, through which we can be able to check whether the form is dirty (value entered) or not.
Here, if the Admin navigates from the route which has filled form to another, confirm pop-up will be appeared.
Preview
In this way, we can prevent our user from losing their data.
In this example anyway we have only two inputs. It won’t be much tedious to re-enter the data again. Consider a form with 10+ or 20+ inputs. It will be very painful if that is the situation. Hope this helps 💖