989f08a24d
Add additional Results; Implemented UI Extensions on Device, Job and User Controllers
66 lines
2.7 KiB
C#
66 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Disco.Web.Extensions.MvcExtensions.Bundles;
|
|
|
|
namespace Disco.Web.Extensions
|
|
{
|
|
public static class BundleExtensions
|
|
{
|
|
public static void BundleDeferred(this HtmlHelper htmlHelper, string BundleUrl)
|
|
{
|
|
// Ensure 'App-Relative' Url:
|
|
BundleUrl = BundleUrl.StartsWith("~/") ? BundleUrl : (BundleUrl.StartsWith("/") ? string.Concat("~", BundleUrl) : string.Concat("~/", BundleUrl));
|
|
|
|
var deferredBundles = htmlHelper.ViewContext.HttpContext.Items["Bundles.Deferred"] as List<string>;
|
|
if (deferredBundles == null)
|
|
{
|
|
deferredBundles = new List<string>();
|
|
htmlHelper.ViewContext.HttpContext.Items["Bundles.Deferred"] = deferredBundles;
|
|
}
|
|
if (!deferredBundles.Contains(BundleUrl))
|
|
deferredBundles.Add(BundleUrl);
|
|
}
|
|
public static HtmlString BundleRenderDeferred(this HtmlHelper htmlHelper)
|
|
{
|
|
var deferredBundles = htmlHelper.ViewContext.HttpContext.Items["Bundles.Deferred"] as List<string>;
|
|
|
|
var uiExtensionScripts = htmlHelper.ViewContext.HttpContext.Items["Bundles.UIExtensionScripts"] as List<HtmlString>;
|
|
var uiExtensionCss = htmlHelper.ViewContext.HttpContext.Items["Bundles.UIExtensionCss"] as List<HtmlString>;
|
|
|
|
if (deferredBundles != null || uiExtensionScripts != null || uiExtensionCss != null)
|
|
{
|
|
StringBuilder bundleUrls = new StringBuilder();
|
|
|
|
if (deferredBundles != null)
|
|
{
|
|
deferredBundles.Reverse();
|
|
foreach (string bundleUrl in deferredBundles)
|
|
{
|
|
bundleUrls.AppendLine(BundleTable.ResolveBundleHtmlElement(bundleUrl));
|
|
}
|
|
}
|
|
if (uiExtensionCss != null)
|
|
{
|
|
foreach (HtmlString extensionUrl in uiExtensionCss)
|
|
bundleUrls.Append("<link href=\"").Append(extensionUrl).AppendLine("\" rel=\"stylesheet\" type=\"text/css\" />");
|
|
}
|
|
if (uiExtensionScripts != null)
|
|
{
|
|
foreach (HtmlString extensionUrl in uiExtensionScripts)
|
|
bundleUrls.Append("<script src=\"").Append(extensionUrl).AppendLine("\" type=\"text/javascript\"></script>");
|
|
}
|
|
|
|
return new HtmlString(bundleUrls.ToString());
|
|
}
|
|
else
|
|
{
|
|
return new HtmlString(string.Empty);
|
|
}
|
|
}
|
|
}
|
|
}
|