November Happy Hour will be moved to Thursday December 5th.

Stefan Forsberg
Apr 15, 2010
  5114
(0 votes)

Easier dependency injection with EPiMVP

EPiMVP is an implementation of the WebForms MVP pattern created by Mattias Johansson and Joel Abrahamsson. While my general impression and opinion about WebForms MVP is quite similar to that Rob Conery expressed here, that’s in the context of choosing between MVC and WebForms. As I’m sure you’re all aware that’s not a choice we get to make when working with episerver (unless you’ve found a business model that let’s you develop gadgets full time in which case you can please contact me with a job offer =)).

Anyway, this post will be a short one that sort of does the same thing as I did in my previous post.

 

The presenter factory

MVP uses a presenter factory that’s responsible for delivering presenters, similar to the controller factory in MVC. Since you can create your own factory this makes for a good root to use for your dependency injection since it’s called every time a presenter is requested.

EPIMVP, much to my joy, comes with a StructureMapPresenterFactory so we don’t have to create one our self. (It looks to also come with a implementation for Ninject and if you’re into another IoC container it shouldn’t be too much of  a hassle to create your own factory.)

To use the factory we must inform MVP to use it which we’ll do in Application_Start of global.asax.

   1: protected void Application_Start(Object sender, EventArgs e)
   2: {
   3:     WebFormsMvp.Binder.PresenterBinder.Factory = new EPiMVP.StructureMap.StructureMapPresenterFactory();
   4:     XFormControl.ControlSetup += new EventHandler(XForm_ControlSetup);
   5: }

 

Injecting the dependencies

Injecting dependencies is now as simple as declaring them in the constructor of our presenters. Using the example Joel wrote about here we’ll add a dependency to our IFoo interface in the FlatterPresenter.

   1: protected readonly IFoo foo;
   2:  
   3: public FlatterPresenter(IFlatterView view, 
   4:     FlatterPage pageData, IFoo foo)
   5:     : base(view, pageData)
   6: {
   7:     this.foo = foo;
   8:     View.Load += View_Load;
   9:     View.FlatterRequested += View_FlatterRequested;
  10: }

 

The interface and a implementation could look like this

   1: public interface IFoo
   2: {
   3:     string SomeString();
   4: }
   5:  
   6: public class Foo : IFoo
   7: {
   8:     public string SomeString()
   9:     {
  10:         return DateTime.Now.ToShortDateString();
  11:     }
  12: }

 

We’ll setup StructureMap to use the concrete class Foo whenever a type of IFoo is requested. This is also done in Application_Start in global.asax and the full method now looks like this.

   1: protected void Application_Start(Object sender, EventArgs e)
   2: {
   3:     ObjectFactory.Configure(x =>
   4:             {
   5:                 x.For<Presenters.IFoo>().Use<Presenters.Foo>();
   6:             }
   7:         );
   8:     WebFormsMvp.Binder.PresenterBinder.Factory = new EPiMVP.StructureMap.StructureMapPresenterFactory();
   9:     XFormControl.ControlSetup += new EventHandler(XForm_ControlSetup);
  10: }

 

Now we can use our IFoo implementation in our presenter class. It’s quite a nice change of pace compared to the Setter Injection / Build Up we have to do when using standard WebForms.

Apr 15, 2010

Comments

Please login to comment.
Latest blogs
Optimizely SaaS CMS + Coveo Search Page

Short on time but need a listing feature with filters, pagination, and sorting? Create a fully functional Coveo-powered search page driven by data...

Damian Smutek | Nov 21, 2024 | Syndicated blog

Optimizely SaaS CMS DAM Picker (Interim)

Simplify your Optimizely SaaS CMS workflow with the Interim DAM Picker Chrome extension. Seamlessly integrate your DAM system, streamlining asset...

Andy Blyth | Nov 21, 2024 | Syndicated blog

Optimizely CMS Roadmap

Explore Optimizely CMS's latest roadmap, packed with developer-focused updates. From SaaS speed to Visual Builder enhancements, developer tooling...

Andy Blyth | Nov 21, 2024 | Syndicated blog

Set Default Culture in Optimizely CMS 12

Take control over culture-specific operations like date and time formatting.

Tomas Hensrud Gulla | Nov 15, 2024 | Syndicated blog

I'm running Optimizely CMS on .NET 9!

It works 🎉

Tomas Hensrud Gulla | Nov 12, 2024 | Syndicated blog

Recraft's image generation with AI-Assistant for Optimizely

Recraft V3 model is outperforming all other models in the image generation space and we are happy to share: Recraft's new model is now available fo...

Luc Gosso (MVP) | Nov 8, 2024 | Syndicated blog