vote up 6 vote down star
4

Hello. Following the NerdDinners example, I am interested in creating a strongly typed master page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other controllers inherit this class. Similarly, I have ViewModels for the master page and any other views. The view ViewModel classes inherit from the masterpage's ViewModel.

The problem is, how should a child controller ensure that the master page's data is passed to the View without setting the properties of its ViewModel that pertain to the master page itself [see the line that I want to eliminate in the final code fragment - that of the child controller]?

My the master page will display a number of buttons, which are determined in an xml file, hence the Buttons class that I am populating.

The master page's ViewModel. Holds button data for the master page.

using System.Collections.Generic;

namespace Site1.Models
{
    public class MasterViewModel
    {
        public List<Button> Buttons{set; get;}
    }
}

A view's ViewModel. Inherits MasterViewModel. Contains other data for the view.

namespace Site1.Models
{
    public class View1ViewModel : MasterViewModel
    {
        public SomeDataClass SomeData { get; set; }
    }
}

The base controller. Gets the data to populate the buttons.

using System.Collections.Generic;
using System.Web.Mvc;
using Site1.Models;

namespace Site1.Controllers
{
    public abstract class BaseController : Controller
    {
        protected MasterViewModel model = new MasterViewModel();

        public BaseController()
        {
            model.Buttons = new List<Button>();
            //populate the button classes (doesn't matter how)
            PopulateButtons(model.Buttons);
        }
    }
}

A view's controller. Inherits BaseController. Gets the other data to populate the view, and returns the View, passing in the View1ViewModel

using System.Web.Mvc;

namespace Site1.Controllers
{
    public class View1Controller : BaseController
    {
        public ActionResult Index()
        {
            Models.View1ViewModel viewModel = new Models.View1ViewModel();
            SomeDataClass viewData = new SomeDataClass()
            //populate data class (doesn't matter how)
            PopulateDataClass(viewData);
            viewModel.SomeData = viewData;
            //I WANT TO ELIMINATE THE FOLLOWING LINE!
            viewModel.Buttons = model.Buttons;
            return View("Index", viewModel);
        }
    }
}

The master page inherits System.Web.Mvc.ViewMasterPage<Site1.Models.MasterViewModel>. The view inherits System.Web.Mvc.ViewMasterPage<Site1.Models.View1ViewModel>

EDIT Here is the solution, as suggested by Craig.

The action filter attribute. Gets the controller's ViewModel, and passes it to the controller's SetModel function

using System.Web.Mvc;
using Site1.Controllers;

namespace Site1.Models
{
    public class MasterAttribute : ActionFilterAttribute
    {
        public override void OnActionExecuted(ActionExecutedContext filterContext)
        {
            base.OnActionExecuted(filterContext);

            MasterViewModel viewModel = (MasterViewModel)((ViewResultBase)filterContext.Result).ViewData.Model;

            BaseController controller = (BaseController)filterContext.Controller;
            controller.SetModel(viewModel);
        }
    }
}

This function is added to the BaseController

public void SetModel(MasterViewModel childViewModel)
{
    childViewModel.Buttons = model.Buttons;
}
flag

2 Answers

vote up 3 vote down check

You could create an after action executed filter which looks for a model of that type and sets the properties accordingly, perhaps by calling a base controller function. You would then put the filter on the base class, and all actions would see it automatically.

link|flag
Before I try this out, it seems a suprisingly complicated solution for what is a very common scenario. Or do people not strongly type their master pages? – darasd Apr 21 at 9:14
I have not seen many strongly typed master pages. However, you would have the same issue of having to set common properties with ViewDataDictionary. It turns out, though, that creating an action filter is really, really easy. I think you're overestimating the complication. – Craig Stuntz Apr 21 at 12:29
Ah, I see you've updated the question with an implementation of this. Simple, wasn't it! – Craig Stuntz Apr 21 at 12:30
vote up 1 vote down

Rather than creating an attribute, why not just override Controller.OnActionExecuted and put the initialization code there? Seems a bit simpler.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.