I have a module, e.g module A, and after doing some work and clicking on a button of viewControllerA, I should receive a custom "alert" that the request I tried was successful. The "alert" should have a close button, to let the user close the view and get back to the viewControllerA.
So, I think there are two possibilities:
1) Just create the UIView with its UILabels tied with constraints and a UIButton and show it while hiding the current container view that contains most of the subviews.
2) Create a module for the result called and navigate between viewControllerA's view and the alert view by wireframes (routers).
So, here is my doubt. It seems like by the guidelines of VIPER I should use (2) and create a module so that the navigation is controlled by the wireframe, but the alert view is only composed of some labels and one button. There is no data to manipulate here. Therefore, the interactor would be useless in the ResultModule.
Should I then just show the alert view by alertView.alpha = 1
while containerView.alpha = 0
and reverse this when the close button on alert view is clicked or should I go all VIPER, creating a new module?