Skip to content

Instantly share code, notes, and snippets.

@mohamedmansour
Last active December 29, 2020 23:48
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mohamedmansour/cd50123f8575daba7a7f12847b12da5d to your computer and use it in GitHub Desktop.
Save mohamedmansour/cd50123f8575daba7a7f12847b12da5d to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.AspNetCore.Html;
using Newtonsoft.Json;
namespace HtmlHelpers
{
/// <summary>
/// Adapted from https://github.com/madskristensen/BundlerMinifier/wiki/Unbundling-scripts-for-debugging
///
/// Areas modified:
/// - Modified it to make it work with aspnetcore.
/// - Accept both scripts and styles.
/// - Read config from wwwroot
/// - Accept baseFolder since DI not suited for static methods
/// - Style nitpicks
/// </summary>
public class Bundler
{
private const string VirtualFolder = "../wwwroot/";
/// <summary>
/// Unpacks the bundle (css/js) for debugging purposes. Makes the build faster by not bundling while debugging.
/// </summary>
/// <param name="baseFolder">The base folder for this application/</param>
/// <param name="bundlePath">The bundled file to unpack.</param>
/// <returns>Unpacked bundles</returns>
public static HtmlString Unpack(string baseFolder, string bundlePath)
{
var configFile = Path.Combine(baseFolder, "Configs/bundleconfig.json");
var bundle = GetBundle(configFile, bundlePath);
if (bundle == null)
return null;
// Clean up the bundle to remove the virtual folder that aspnetcore provides.
var inputFiles = bundle.InputFiles.Select(file => file.Substring(VirtualFolder.Length));
var outputString = bundlePath.EndsWith(".js") ?
inputFiles.Select(inputFile => $"<script src='/{inputFile}' type='text/javascript'></script>") :
inputFiles.Select(inputFile => $"<link rel='stylesheet' href='/{inputFile}' />");
return new HtmlString(string.Join("\n", outputString));
}
private static Bundle GetBundle(string configFile, string bundlePath)
{
var file = new FileInfo(configFile);
if (!file.Exists)
return null;
var bundles = JsonConvert.DeserializeObject<IEnumerable<Bundle>>(File.ReadAllText(configFile));
return (from b in bundles
where b.OutputFileName.EndsWith(bundlePath, StringComparison.InvariantCultureIgnoreCase)
select b).FirstOrDefault();
}
class Bundle
{
[JsonProperty("outputFileName")]
public string OutputFileName { get; set; }
[JsonProperty("inputFiles")]
public List<string> InputFiles { get; set; } = new List<string>();
}
}
}
@using HtmlHelpers
@inject Microsoft.AspNetCore.Hosting.IHostingEnvironment HostingEnvironment
<environment names="Development">
@Bundler.Unpack(HostingEnvironment.ContentRootPath, "/css/site.min.css")
</environment>
<environment names="Staging,Production">
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
</environment>
<environment names="Development">
@Bundler.Unpack(HostingEnvironment.ContentRootPath, "/js/site.min.js")
</environment>
<environment names="Staging,Production">
<script src="~/js/site.min.js" asp-append-version="true"></script>
</environment>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment