I'm making good progress on my new Government Content Management System (Govern CMS).
Probably have another 1-2 weeks of development before I have a minimum viable product.
Here is my Entity Framework EDMX for that System:
Friday, September 8, 2017
Thursday, September 7, 2017
HTML Helpers - ASP.NET MVC's equivalent of JSTL Custom Taglibs
I have found the equivalent of Java's JSTL Custom Taglibs: HTML Helpers.
I started moving logic out of my Razor Views and into HTML Helper classes.
Here's my first, and it's a beauty (uses recursion to build out nested lists):
I started moving logic out of my Razor Views and into HTML Helper classes.
Here's my first, and it's a beauty (uses recursion to build out nested lists):
public static class CategoryExtensions { public static IHtmlString CategoryDisplay(this HtmlHelper helper, IEnumerableI'm glad to get the logic out of the Razor views (which should not have such complex logic) and into proper C# classes.categories, int indentSize) { string indentString = ""; for (int i = 0; i < indentSize; i++) { indentString += " "; } StringBuilder stringBuilder = new StringBuilder(); stringBuilder.Append(" \n"); stringBuilder.Append(BuildList(categories, indentString)); stringBuilder.Append(indentString).Append(""); return new HtmlString(stringBuilder.ToString()); } private static IHtmlString BuildList(IEnumerablecategories, string indentString) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.Append(indentString).Append(" \n"); foreach (Category category in categories) { stringBuilder.Append(indentString).Append("
\n"); return new HtmlString(stringBuilder.ToString()); } }- \n"); stringBuilder.Append(indentString).Append("
\n"); } stringBuilder.Append(indentString).Append("\n"); stringBuilder.Append(indentString).Append(" " + category.CategoryName + "\n"); stringBuilder.Append(indentString).Append("\n"); if (category.SubCategories.Any()) { indentString += " "; stringBuilder.Append(BuildList(category.SubCategories, indentString)); } stringBuilder.Append(indentString).Append("
Friday, September 1, 2017
Angular 4 node_modules
Wow ... I'm planning on building my Angular 4 App this weekend. I am working through the tutorial and just had a moment of horror ...
Now, I did take a look at the HTML generated and it does not appear to reference node_modules. I am going to see if I can get away with NOT deploying it.
217 MB for a JavaScript Framework?! You've got to be kidding me.
There are over 700 subdirectories under node_modules.
Now, I did take a look at the HTML generated and it does not appear to reference node_modules. I am going to see if I can get away with NOT deploying it.
Subscribe to:
Posts (Atom)