using System;
using System.Collections.Generic;
using Oqtane.Shared;
namespace Oqtane.Models
{
///
/// Resource Objects describe a JavaScript or CSS file which is needed by the Module to work.
///
public class Resource
{
private string _url;
///
/// A to define the type of resource ie. Script or Stylesheet
///
public ResourceType ResourceType { get; set; }
///
/// Path to the resource (note that querytring parameters can be included for cache busting ie. ?v=#)
///
public string Url
{
get => _url;
set
{
_url = (value.Contains("://")) ? value : (!value.StartsWith("/") && !value.StartsWith("~") ? "/" : "") + value;
}
}
///
/// For Scripts this allows type to be specified - not applicable to Stylesheets
///
public string Type { get; set; }
///
/// Integrity checks to increase the security of resources accessed. Especially common in CDN resources.
///
public string Integrity { get; set; }
///
/// Cross-Origin rules for this Resources. Usually `anonymous`
///
public string CrossOrigin { get; set; }
///
/// For Scripts a Bundle can be used to identify dependencies and ordering in the script loading process (for Interactive rendering only)
///
public string Bundle { get; set; }
///
/// For Stylesheets this defines the relative position for cascading purposes
///
public ResourceLevel Level { get; set; }
///
/// For Scripts this defines if the resource should be included in the Head or Body
///
public ResourceLocation Location { get; set; }
///
/// For Scripts this allows for the specification of inline script - not applicable to Stylesheets
///
public string Content { get; set; }
///
/// For Scripts this defines the render mode (default is all render modes) - not applicable to Stylesheets
///
public string RenderMode { get; set; }
///
/// Specifies how a script should be loaded in Static rendering - not applicable to Stylesheets
///
public ResourceLoadBehavior LoadBehavior { get; set; }
///
/// Cusotm data-* attributes for scripts - not applicable to Stylesheets
///
public Dictionary DataAttributes { get; set; }
///
/// The namespace of the component that declared the resource - only used in SiteRouter
///
public string Namespace { get; set; }
public Resource Clone(ResourceLevel level, string name)
{
var resource = new Resource();
resource.ResourceType = ResourceType;
resource.Url = Url;
resource.Type = Type;
resource.Integrity = Integrity;
resource.CrossOrigin = CrossOrigin;
resource.Bundle = Bundle;
resource.Location = Location;
resource.Content = Content;
resource.RenderMode = RenderMode;
resource.LoadBehavior = LoadBehavior;
resource.DataAttributes = new Dictionary();
if (DataAttributes != null && DataAttributes.Count > 0)
{
foreach (var kvp in DataAttributes)
{
resource.DataAttributes.Add(kvp.Key, kvp.Value);
}
}
resource.Level = level;
resource.Namespace = name;
return resource;
}
[Obsolete("ResourceDeclaration is deprecated", false)]
public ResourceDeclaration Declaration { get; set; }
[Obsolete("ES6Module is deprecated. Use Type property instead for scripts.", false)]
public bool ES6Module
{
get => (Type == "module");
set
{
if (value)
{
Type = "module";
};
}
}
[Obsolete("Reload is deprecated. Use LoadBehavior property instead for scripts.", false)]
public bool Reload
{
get => (LoadBehavior == ResourceLoadBehavior.BlazorPageScript);
set
{
if (value)
{
LoadBehavior = ResourceLoadBehavior.BlazorPageScript;
};
}
}
}
}