Files
Umbraco-CMS/src/Umbraco.Web.Common/Extensions/GridTemplateExtensions.cs
Nikolaj Geisle 70a34105e0 V11: obsolete legacy data types (#13953)
* Obsolete the grid

* Obsolete the legacy media picker

* Obsolete nested content

---------

Co-authored-by: Zeegaan <nge@umbraco.dk>
2023-03-13 11:33:27 +01:00

185 lines
6.1 KiB
C#

using Microsoft.AspNetCore.Html;
using Microsoft.AspNetCore.Mvc.Rendering;
using Umbraco.Cms.Core.Models.PublishedContent;
namespace Umbraco.Extensions;
[Obsolete("The grid is obsolete, will be removed in V13")]
public static class GridTemplateExtensions
{
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedProperty property, string framework = "bootstrap3")
{
if (property.GetValue() is string asString && string.IsNullOrEmpty(asString))
{
return new HtmlString(string.Empty);
}
var view = "grid/" + framework;
return html.Partial(view, property.GetValue());
}
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedContent contentItem) =>
html.GetGridHtml(contentItem, "bodyText", "bootstrap3");
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedContent contentItem, string propertyAlias)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
return html.GetGridHtml(contentItem, propertyAlias, "bootstrap3");
}
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedContent contentItem, string propertyAlias, string framework)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
var view = "grid/" + framework;
IPublishedProperty? prop = contentItem.GetProperty(propertyAlias);
if (prop == null)
{
throw new InvalidOperationException("No property type found with alias " + propertyAlias);
}
var model = prop.GetValue();
if (model is string asString && string.IsNullOrEmpty(asString))
{
return new HtmlString(string.Empty);
}
return html.Partial(view, model);
}
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedElement contentItem) =>
html.GetGridHtml(contentItem, "bodyText", "bootstrap3");
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedElement contentItem, string propertyAlias)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
return html.GetGridHtml(contentItem, propertyAlias, "bootstrap3");
}
public static IHtmlContent GetGridHtml(this IHtmlHelper html, IPublishedElement contentItem, string propertyAlias, string framework)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
var view = "grid/" + framework;
IPublishedProperty? prop = contentItem.GetProperty(propertyAlias);
if (prop == null)
{
throw new InvalidOperationException("No property type found with alias " + propertyAlias);
}
var model = prop.GetValue();
if (model is string asString && string.IsNullOrEmpty(asString))
{
return new HtmlString(string.Empty);
}
return html.Partial(view, model);
}
public static IHtmlContent GetGridHtml(this IPublishedProperty property, IHtmlHelper html, string framework = "bootstrap3")
{
if (property.GetValue() is string asString && string.IsNullOrEmpty(asString))
{
return new HtmlString(string.Empty);
}
var view = "grid/" + framework;
return html.Partial(view, property.GetValue());
}
public static IHtmlContent GetGridHtml(this IPublishedContent contentItem, IHtmlHelper html) =>
GetGridHtml(contentItem, html, "bodyText", "bootstrap3");
public static IHtmlContent GetGridHtml(this IPublishedContent contentItem, IHtmlHelper html, string propertyAlias)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
return GetGridHtml(contentItem, html, propertyAlias, "bootstrap3");
}
public static IHtmlContent GetGridHtml(this IPublishedContent contentItem, IHtmlHelper html, string propertyAlias, string framework)
{
if (propertyAlias == null)
{
throw new ArgumentNullException(nameof(propertyAlias));
}
if (string.IsNullOrWhiteSpace(propertyAlias))
{
throw new ArgumentException(
"Value can't be empty or consist only of white-space characters.",
nameof(propertyAlias));
}
var view = "grid/" + framework;
IPublishedProperty? prop = contentItem.GetProperty(propertyAlias);
if (prop == null)
{
throw new InvalidOperationException("No property type found with alias " + propertyAlias);
}
var model = prop.GetValue();
if (model is string asString && string.IsNullOrEmpty(asString))
{
return new HtmlString(string.Empty);
}
return html.Partial(view, model);
}
}