Advertisement
Guest User

Untitled

a guest
Jan 12th, 2014
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 7.63 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.IO;
  6. using System.Web.Mvc;
  7. using System.Web.Routing;
  8.  
  9. namespace Telerik.Sitefinity.UI.MVC.Helpers
  10. {
  11.   public class HybridForm : IDisposable
  12.   {
  13.     private const string defaultFormName = "defaultForm";
  14.     private const string submitScript = "<script type=\"text/javascript\">\r\n            var sfMvcInputs = document.getElementById(\"{0}\").getElementsByTagName(\"input\");\r\n            var sfMvcInputsLen = sfMvcInputs.length;\r\n            while(sfMvcInputsLen--) {{\r\n                typeAttr = sfMvcInputs[sfMvcInputsLen].getAttribute(\"type\");\r\n                if(typeAttr == \"submit\") {{\r\n                    sfMvcInputs[sfMvcInputsLen].onclick = function() {{\r\n                        document.forms[\"aspnetForm\"].action = \"{1}\";\r\n                        document.forms[\"aspnetForm\"].method = \"{2}\";\r\n                        document.forms[\"aspnetForm\"].submit();\r\n                    }};\r\n                }}\r\n            }}\r\n        </script>";
  15.     private readonly TextWriter writer;
  16.     private readonly ViewContext viewContext;
  17.     private readonly string formName;
  18.     private string actionName;
  19.     private readonly bool hasRouteData;
  20.     private readonly object routeValues;
  21.     private readonly RouteValueDictionary routeValueDictionary;
  22.     private readonly FormMethod method;
  23.     private readonly object htmlAttributes;
  24.  
  25.     public bool IsInPureMode
  26.     {
  27.       get
  28.       {
  29.         if (this.viewContext != null && this.viewContext.TempData != null && this.viewContext.TempData.ContainsKey("IsInPureMode"))
  30.           return (bool) this.viewContext.TempData["IsInPureMode"];
  31.         else
  32.           return false;
  33.       }
  34.     }
  35.  
  36.     public HybridForm(ViewContext viewContext, string actionName, string formName, FormMethod method, object htmlAttributes)
  37.     {
  38.       this.formName = string.IsNullOrEmpty(formName) ? "defaultForm" : formName;
  39.       this.actionName = actionName;
  40.       this.viewContext = viewContext;
  41.       this.writer = viewContext.Writer;
  42.       this.method = method;
  43.       this.htmlAttributes = htmlAttributes;
  44.       this.WriteStartTag();
  45.     }
  46.  
  47.     public HybridForm(ViewContext viewContext, string actionName, string formName, object routeValues, FormMethod method, object htmlAttributes)
  48.       : this(viewContext, actionName, formName, method, htmlAttributes)
  49.     {
  50.       this.routeValues = routeValues;
  51.       this.hasRouteData = true;
  52.     }
  53.  
  54.     public HybridForm(ViewContext viewContext, string actionName, string formName, RouteValueDictionary routeValueDictionary, FormMethod method, object htmlAttributes)
  55.       : this(viewContext, actionName, formName, method, htmlAttributes)
  56.     {
  57.       this.routeValueDictionary = routeValueDictionary;
  58.       this.hasRouteData = true;
  59.     }
  60.  
  61.     public void WriteStartTag()
  62.     {
  63.       if (this.IsInPureMode)
  64.       {
  65.         this.writer.Write("<form ");
  66.         this.writer.Write("action=\"");
  67.         this.writer.Write(this.GenerateActionUrl());
  68.         this.writer.Write("\" ");
  69.         this.writer.Write("method=\"");
  70.         this.writer.Write(this.method == FormMethod.Post ? "POST" : "GET");
  71.         this.writer.Write("\" ");
  72.         this.writer.Write("name=\"");
  73.       }
  74.       else
  75.         this.writer.Write("<div id=\"");
  76.       this.writer.Write(this.formName);
  77.       this.writer.Write("\"");
  78.       this.WriteHtmlAttributes();
  79.       this.writer.Write(">");
  80.     }
  81.  
  82.     public void Dispose()
  83.     {
  84.       if (this.IsInPureMode)
  85.         this.writer.Write("</form>");
  86.       else
  87.         this.writer.Write("</div>");
  88.       string str1 = this.GenerateActionUrl();
  89.       string str2 = (string) null;
  90.       if (this.method == FormMethod.Post)
  91.         str2 = "POST";
  92.       else if (this.method == FormMethod.Get)
  93.         str2 = "GET";
  94.       if (this.IsInPureMode)
  95.         return;
  96.       this.writer.Write(string.Format("<script type=\"text/javascript\">\r\n            var sfMvcInputs = document.getElementById(\"{0}\").getElementsByTagName(\"input\");\r\n            var sfMvcInputsLen = sfMvcInputs.length;\r\n            while(sfMvcInputsLen--) {{\r\n                typeAttr = sfMvcInputs[sfMvcInputsLen].getAttribute(\"type\");\r\n                if(typeAttr == \"submit\") {{\r\n                    sfMvcInputs[sfMvcInputsLen].onclick = function() {{\r\n                        document.forms[\"aspnetForm\"].action = \"{1}\";\r\n                        document.forms[\"aspnetForm\"].method = \"{2}\";\r\n                        document.forms[\"aspnetForm\"].submit();\r\n                    }};\r\n                }}\r\n            }}\r\n        </script>", (object) this.formName, (object) str1, (object) str2));
  97.     }
  98.  
  99.     private string GenerateActionUrl()
  100.     {
  101.       string str1 = this.viewContext.RequestContext.HttpContext.Request.Url.AbsolutePath;
  102.       if (this.viewContext.RequestContext.RouteData.Values.ContainsKey("action"))
  103.       {
  104.         string str2 = this.viewContext.RequestContext.RouteData.Values["action"].ToString();
  105.         if (str1.IndexOf(str2) > -1)
  106.           str1 = str1.Substring(0, str1.IndexOf(str2));
  107.         str1 = str1.Replace("//", "/");
  108.       }
  109.       if (!str1.StartsWith("/"))
  110.         str1 = "/" + str1;
  111.       if (string.IsNullOrEmpty(this.actionName))
  112.         this.actionName = "Index";
  113.       string str3 = !str1.EndsWith("/") ? str1 + "/" + this.actionName : str1 + this.actionName;
  114.       if (this.hasRouteData)
  115.       {
  116.         string str2 = str3 + "?";
  117.         Dictionary<string, string> routeValues = this.GetRouteValues();
  118.         foreach (string index in routeValues.Keys)
  119.         {
  120.           str2 = str2 + index;
  121.           str2 = str2 + "=";
  122.           str2 = str2 + routeValues[index];
  123.           str2 = str2 + "&";
  124.         }
  125.         str3 = str2.Remove(str2.Length - 1);
  126.       }
  127.       return str3;
  128.     }
  129.  
  130.     private Dictionary<string, string> GetRouteValues()
  131.     {
  132.       Dictionary<string, string> dictionary = new Dictionary<string, string>();
  133.       if (this.routeValues != null)
  134.       {
  135.         foreach (PropertyDescriptor propertyDescriptor in TypeDescriptor.GetProperties(this.routeValues))
  136.           dictionary.Add(propertyDescriptor.Name, propertyDescriptor.GetValue(this.routeValues).ToString());
  137.       }
  138.       else if (this.routeValueDictionary != null)
  139.       {
  140.         foreach (string key in this.routeValueDictionary.Keys)
  141.           dictionary.Add(key, this.routeValueDictionary[key].ToString());
  142.       }
  143.       return dictionary;
  144.     }
  145.  
  146.     private void WriteHtmlAttributes()
  147.     {
  148.       if (this.htmlAttributes == null)
  149.         return;
  150.       IDictionary dictionary = this.htmlAttributes as IDictionary;
  151.       if (dictionary != null)
  152.       {
  153.         foreach (object index in (IEnumerable) dictionary.Keys)
  154.         {
  155.           this.writer.Write(" ");
  156.           string str = index.ToString();
  157.           if (str.StartsWith("@"))
  158.             str = str.Substring(1);
  159.           this.writer.Write(str);
  160.           this.writer.Write("=\"");
  161.           this.writer.Write(dictionary[index].ToString());
  162.           this.writer.Write("\"");
  163.         }
  164.       }
  165.       else
  166.       {
  167.         foreach (PropertyDescriptor propertyDescriptor in TypeDescriptor.GetProperties(this.htmlAttributes))
  168.         {
  169.           this.writer.Write(" ");
  170.           string str = propertyDescriptor.Name;
  171.           if (str.StartsWith("@"))
  172.             str = str.Substring(1);
  173.           this.writer.Write(str);
  174.           this.writer.Write("=\"");
  175.           this.writer.Write(propertyDescriptor.GetValue(this.htmlAttributes));
  176.           this.writer.Write("\"");
  177.         }
  178.       }
  179.     }
  180.   }
  181. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement