-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathResourceManager.cs
75 lines (62 loc) · 1.78 KB
/
ResourceManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI.WebControls;
using System.Web.UI;
namespace Dojo.Net
{
public class ResourceManager
{
protected List<string> _requires = new List<string>();
public ResourceManager()
{
Theme = DojoTheme.Claro;
}
public void Require(string feature)
{
if (_requires.Contains(feature))
return;
_requires.Add(feature);
}
public string Render(HttpContext httpContext)
{
StringBuilder output = new StringBuilder();
output.AppendFormat(@"
<script src=""{0}/dojo.axd/Scripts/dojo/dojo.js"" type=""text/javascript"" djConfig=""parseOnLoad: true""></script>
", httpContext.Request.ApplicationPath);
output.AppendFormat(@" <link rel=""stylesheet"" type=""text/css"" href=""{0}/dojo.axd/Scripts/dijit/themes/{1}/{1}.css""/>
", httpContext.Request.ApplicationPath, ThemeName ?? Theme.ToString("G").ToLower());
output.Append(@" <script type=""text/javascript"">
");
foreach (string feature in _requires)
output.AppendFormat("\t\tdojo.require(\"{0}\");\n", feature);
output.Append(@" </script>
");
return output.ToString();
}
public string ThemeName
{
get;
set;
}
public DojoTheme Theme
{
get;
set;
}
public static ResourceManager Current
{
get
{
return HttpContext.Current.Items["__DojoResourceManager"] as ResourceManager;
}
set
{
HttpContext.Current.Items["__DojoResourceManager"] = value;
}
}
}
}