I have a custom MVC HTML Helper method, like so:
public static MvcHtmlString Div (this HtmlHelper htmlHelper,
VehicleStatusViewModel vehicleStatus, string classType)
I call this helper method to help me choose the right bootstrap class to use for a div in my view. Inside the method, I use a switch to iterate through the possible states of vehicleStatus and assign the according bootstrap class. I.E. panel panel-success if vehicleStatus = 1 or panel panel-danger if vehicleStatus = 2.
However, I may want to assign a particular glyphicon, again, based on a certain returned status of VehicleStatus. In the future, I may have even more additional class types.
In my view, when I call this Helper method, I want to pass a classType (i.e panel or glyphicon). And in my Helper method, without having to duplicate my switch code for each possible class-type, I want an elegant solution to render the particular classType my View is requesting and return a TagBuilder div with the appropriately assigned class/class-type, such that:
@Html.Div(vehicleStatus, "panel")
// Would resolve and return, if vehicleStatus was 1:
<div class="panel panel-success"> </div>
// Calling the same method, vehicleStatus = 1 but expecting a respective
// glyphicon:
@Html.Div(vehicleStatus, "glyphicon")
<div class="glyphicon glyphicon-remove-circle"> </div>
Well, your description of the problem sounds like a perfect example of either a base-class or interface setup (the possibility to add additional class types in the future by overriding behavior of a base class and/or implementing the interface differently).
This may or may not be what your looking for. I've used similar patterns before, typically in a domain, but sometimes for Razor purposes. In this case, a base class could be used. After finishing, I realized I slightly over-engineered this example. You could probably easily get away with 2 levels until you reach a point you desire more.
And, then if you specifically wanted a
div
or aspan
, for example:And finally, all you need to do is create classes that implment the CreateTag method:
If you wanted to add another type, all you'd need to do is:
And lastly, your HtmlHelper:
If you find yourself doing the same conditions over and over again, you could slightly refactor the parent class to handle more of the responsibility:
If this isn't what your looking for, let me know.