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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
//
// ScriptComponentDescriptor.cs
//
// Author:
// Igor Zelmanovich <igorz@mainsoft.com>
//
// (C) 2007 Mainsoft, Inc. http://www.mainsoft.com
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.Script.Serialization;
namespace System.Web.UI
{
public class ScriptComponentDescriptor : ScriptDescriptor
{
string _elementID;
string _type;
string _id;
IDictionary<string, string> _properties;
IDictionary<string, string> _events;
IDictionary<string, string> _references;
public ScriptComponentDescriptor (string type) {
if (String.IsNullOrEmpty (type))
throw new ArgumentException ("Value cannot be null or empty.", "type");
_type = type;
}
public virtual string ClientID {
get {
return ID;
}
}
internal string ElementIDInternal {
get {
return _elementID;
}
set {
_elementID = value;
}
}
public virtual string ID {
get {
if (_id == null)
return String.Empty;
return _id;
}
set {
_id = value;
}
}
public string Type {
get {
return _type;
}
set {
if (String.IsNullOrEmpty (value))
throw new ArgumentException ("Value cannot be null or empty.", "value");
_type = value;
}
}
public void AddComponentProperty (string name, string componentID) {
if (name == null)
throw new ArgumentException ("Value cannot be null or empty.", "name");
if (componentID == null)
throw new ArgumentException ("Value cannot be null or empty.", "componentID");
AddEntry (ref _references, String.Format ("\"{0}\"", name), String.Format ("\"{0}\"", componentID));
}
public void AddElementProperty (string name, string elementID) {
if (name == null)
throw new ArgumentException ("Value cannot be null or empty.", "name");
if (elementID == null)
throw new ArgumentException ("Value cannot be null or empty.", "elementID");
AddEntry (ref _properties, String.Format ("\"{0}\"", name), String.Format ("$get(\"{0}\")", elementID));
}
public void AddEvent (string name, string handler) {
if (name == null)
throw new ArgumentException ("Value cannot be null or empty.", "name");
if (handler == null)
throw new ArgumentException ("Value cannot be null or empty.", "handler");
AddEntry (ref _events, String.Format ("\"{0}\"", name), handler);
}
public void AddProperty (string name, object value) {
if (name == null)
throw new ArgumentException ("Value cannot be null or empty.", "name");
string valueString;
if (value == null)
valueString = "null";
else
valueString = JavaScriptSerializer.DefaultSerializer.Serialize (value);
AddEntry (ref _properties, String.Format ("\"{0}\"", name), valueString);
}
public void AddScriptProperty (string name, string script) {
if (name == null)
throw new ArgumentException ("Value cannot be null or empty.", "name");
if (script == null)
throw new ArgumentException ("Value cannot be null or empty.", "script");
AddEntry (ref _properties, String.Format ("\"{0}\"", name), script);
}
void AddEntry (ref IDictionary<string, string> dictionary, string key, string value) {
if (dictionary == null)
dictionary = new SortedDictionary<string, string> ();
if (!dictionary.ContainsKey (key))
dictionary.Add (key, value);
else
dictionary [key] = value;
}
protected internal override string GetScript ()
{
string id = ID;
if (id != String.Empty)
AddProperty ("id", id);
bool haveFormID = String.IsNullOrEmpty (FormID) == false;
bool haveElementID = String.IsNullOrEmpty (ElementIDInternal) == false;
var sb = new StringBuilder ("$create(");
if (haveFormID)
sb.Append ("$get(\"");
sb.Append (Type);
if (haveFormID)
sb.Append ("\")");
WriteSerializedProperties (sb);
WriteSerializedEvents (sb);
WriteSerializedReferences (sb);
if (haveElementID)
sb.AppendFormat (", $get(\"{0}\")", ElementIDInternal);
sb.Append (");");
return sb.ToString ();
}
internal static string SerializeDictionary (IDictionary<string, string> dictionary)
{
if (dictionary == null || dictionary.Count == 0)
return "null";
StringBuilder sb = new StringBuilder ("{");
foreach (string key in dictionary.Keys)
sb.AppendFormat ("{0}:{1},", key, dictionary [key]);
sb.Length--;
sb.Append ("}");
return sb.ToString ();
}
void WriteSerializedProperties (StringBuilder sb)
{
sb.Append (", ");
sb.Append (SerializeDictionary (_properties));
}
void WriteSerializedEvents (StringBuilder sb)
{
sb.Append (", ");
sb.Append (SerializeDictionary (_events));
}
void WriteSerializedReferences (StringBuilder sb)
{
sb.Append (", ");
sb.Append (SerializeDictionary (_references));
}
}
}
|