I'm currently attempting to build a renderer for dynamic forms. At present I have two types of questions - a text question & a multiple choice question.
Based on the question type I need to create a renderer object - however I need to check the sub-type that implements IQuestion in each renderer class. Does this break LSP? Question types aren't generally compatible with each other (i.e. you'd never render a text question as a multiple choice question), so it appears it would break LSP. Any suggestions on how to improve this? Ideally I'd like a form definition object that holds all the questions to be asked, however I don't want to add a new property for each question type (i.e. I would like to add a new question class and a supporting renderer class).
class Program
{
static void Main(string[] args)
{
//Imagine this is obtained in a separate method call
IEnumerable<IQuestion> questions = new IQuestion[] { new Question { Text = "Name" }, new MultipleChoiceQuestion() { Text = "Title", Choices = new string[] { "Mr", "Mrs" } } };
IEnumerable<QuestionRenderer> renderers = new QuestionRenderer[] { new QuestionRenderer(), new MultipleChoiceQuestionRenderer() };
//Now need to build renderers for the questions
foreach (var q in questions)
{
Console.WriteLine(renderers.Single(x => x.CanRender(q)));
}
Console.ReadLine();
}
}
public interface IQuestion
{
string Text { get; set; }
}
public class Question : IQuestion
{
public string Text { get; set; }
}
public class MultipleChoiceQuestion : IQuestion
{
public string Text { get; set; }
public string[] Choices { get; set; }
}
public class QuestionRenderer
{
public virtual bool CanRender(IQuestion q)
{
if(q is Question)
{
return true;
}
return false;
}
}
public class MultipleChoiceQuestionRenderer : QuestionRenderer
{
public override bool CanRender(IQuestion q)
{
if (q is MultipleChoiceQuestion)
{
return true;
}
return false;
}
}