Intercept ViewModels before it's used

Intercept ViewModels before it's used

One of the typical scenario in a desktop application is the requirement to “open” a new view passing to newly created view/view model some data, the ideal solution is also to be able to pass data to the constructor of the new view model in order to be sure that at the end of the construction process everything is correctly setup.

When dealing with Inversion of Control framework this is generally a pain point because each framework out there provide a way to achieve the goal we outlined but generally the solution, in my opinion, is really weak and full of pain point.

In order to solve the above problem the general approach is something like the following:

var viewModel = myFavoriteIoC.Resolve();
viewModel.Initialize( someData );

In a view first scenario, like the one proposed by default by Radical this is not so easy because you end up with the following code:

var view = viewResolver.GetView<MyView>();
var viewModel = conventions.GetViewDataContext( view ) as MyViewModel;
viewModel.Initialize( someData );

it works, using the built-in conventions we retrieve an instance of the attached view model and set it up, but the problem is that the setup occurs after that the view model has been wired to the view, and in some cases this is not ideal.

Interceptors

We have so decided to add a new feature to the view resolver to let the user intercept the view model before it is wired up to the view:

var view = viewResolver.GetView<MyView>( vm => 
{
  //do what you want with the view model
} );

the Action that intercept the view model is called before the view model is attached to the view, in the above sample, since we cannot infer the view model type, the view model is passed to the action as Object, if you know upfront the type of the view model you can explicit tell us what it is:

var view = viewResolver.GetView<MyView, MyViewModel>( vm => 
{
  //do what you want with the view model
} );

And the delegate will be of type Action.

Last updated