Exemplo n.º 1
0
        public void Parse()
        {
            if (this._Parent.UpdateBlockIds.Count > 0)
            {
                this._Settings.Updates.Setup(string.Join(">", this._Parent.UpdateBlockIds.ToArray()));
            }

            this._Parent.Bag.Add("text", this._Settings.Text, this._Parent.Arguments);
            foreach (Attribute item in this._Settings.Attributes)
            {
                this._Parent.Bag.Add(item.Key, item.Value, this._Parent.Arguments);
            }

            // href attribute is disabled always, use url attribute instead of...
            this._Settings.Attributes.Remove("href");
            this._Settings.Attributes.Remove("value");

            string parsedUrl = this._Settings.Url;

            if (!string.IsNullOrEmpty(parsedUrl))
            {
                if (parsedUrl.IndexOf("~/", StringComparison.InvariantCulture) == 0)
                {
                    parsedUrl = parsedUrl.Remove(0, 2);
                    parsedUrl = parsedUrl.Insert(0, Configurations.Xeora.Application.Main.ApplicationRoot.BrowserImplementation);
                }
                else if (parsedUrl.IndexOf("¨/", StringComparison.InvariantCulture) == 0)
                {
                    parsedUrl = parsedUrl.Remove(0, 2);
                    parsedUrl = parsedUrl.Insert(0, Configurations.Xeora.Application.Main.VirtualRoot);
                }

                this._Parent.Bag.Add("url", parsedUrl, this._Parent.Arguments);
            }

            this._Parent.Bag.Render();

            for (int aC = 0; aC < this._Settings.Attributes.Count; aC++)
            {
                Attribute item = this._Settings.Attributes[aC];
                this._Settings.Attributes[aC] =
                    new Attribute(item.Key, this._Parent.Bag[item.Key].Result);
            }

            string renderedText =
                this._Parent.Bag["text"].Result;
            string renderedUrl = string.Empty;

            if (this._Parent.Bag.ContainsKey("url"))
            {
                renderedUrl = this._Parent.Bag["url"].Result;
            }

            if (!string.IsNullOrEmpty(renderedUrl))
            {
                this._Settings.Attributes["href"] = renderedUrl;
            }
            else
            {
                this._Settings.Attributes["href"] = "#_action0";
            }

            // Define OnClick Server event for Button
            if (this._Settings.Bind != null)
            {
                this._Settings.Attributes["href"] = "#_action1";

                // Render Bind Parameters
                this._Settings.Bind.Parameters.Prepare(
                    parameter =>
                {
                    Tuple <bool, object> result =
                        Property.Render(this._Parent, parameter.Query);
                    return(result.Item2);
                });

                ICryptography cryptography =
                    CryptographyProvider.Current.Get(Helpers.Context.Session.SessionId);
                string xeoraCall;

                if (this._Parent.UpdateBlockIds.Count > 0)
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.update('{1}', '{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            ),
                        string.Join(",", this._Settings.Updates.Blocks)
                        );
                }
                else
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.post('{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            )
                        );
                }

                if (string.IsNullOrEmpty(this._Settings.Attributes["onclick"]))
                {
                    this._Settings.Attributes["onclick"] = $"javascript:{xeoraCall};";
                }
                else
                {
                    this._Settings.Attributes["onclick"] =
                        ControlHelper.CleanJavascriptSignature(this._Settings.Attributes["onclick"]);

                    this._Settings.Attributes["onclick"] =
                        string.Format(
                            "javascript:try{{{0};{1};}}catch(ex){{}};",
                            this._Settings.Attributes["onclick"], xeoraCall
                            );
                }
            }
            // !--

            if (this._Settings.Security.Disabled.Set &&
                this._Settings.Security.Disabled.Type == SecurityDefinition.DisabledDefinition.Types.Dynamic)
            {
                if (!string.IsNullOrEmpty(this._Settings.Security.Disabled.Value))
                {
                    this._Parent.Children.Add(new Static(this._Settings.Security.Disabled.Value));
                }
                return;
            }

            this._Parent.Children.Add(
                new Static(
                    string.Format(
                        "<a name=\"{0}\" id=\"{0}\"{1}>{2}</a>",
                        this._Parent.DirectiveId, this._Settings.Attributes, renderedText
                        )
                    )
                );
        }
Exemplo n.º 2
0
        public void Parse()
        {
            if (this._Parent.UpdateBlockIds.Count > 0)
            {
                this._Settings.Updates.Setup(string.Join(">", this._Parent.UpdateBlockIds.ToArray()));
            }

            this._Parent.Bag.Add("text", this._Settings.Text, this._Parent.Arguments);
            foreach (Attribute item in this._Settings.Attributes)
            {
                this._Parent.Bag.Add(item.Key, item.Value, this._Parent.Arguments);
            }
            this._Parent.Bag.Render();

            for (int aC = 0; aC < this._Settings.Attributes.Count; aC++)
            {
                Attribute item = this._Settings.Attributes[aC];
                this._Settings.Attributes[aC] =
                    new Attribute(item.Key, this._Parent.Bag[item.Key].Result);
            }

            string renderedText =
                this._Parent.Bag["text"].Result;

            if (!string.IsNullOrEmpty(renderedText))
            {
                this._Settings.Attributes["value"] = renderedText;
            }
            else
            {
                this._Settings.Attributes.Remove("value");
            }

            ICryptography cryptography =
                CryptographyProvider.Current.Get(Helpers.Context.Session.SessionId);
            // Define onKeyDown Server event for Button
            string xeoraCall = string.Empty;

            if (this._Settings.Bind != null)
            {
                // Render Bind Parameters
                this._Settings.Bind.Parameters.Prepare(
                    parameter =>
                {
                    Tuple <bool, object> result =
                        Property.Render(this._Parent, parameter.Query);
                    return(result.Item2);
                });

                if (this._Parent.UpdateBlockIds.Count > 0)
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.update('{1}', '{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            ),
                        string.Join(",", this._Settings.Updates.Blocks)
                        );
                }
                else
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.post('{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            )
                        );
                }
            }

            string keydownEvent =
                ControlHelper.CleanJavascriptSignature(this._Settings.Attributes["onkeydown"]);

            if (!string.IsNullOrEmpty(xeoraCall))
            {
                keydownEvent = $"{keydownEvent}{xeoraCall};";
            }

            if (!string.IsNullOrEmpty(this._Settings.DefaultButtonId))
            {
                keydownEvent =
                    string.Format(
                        "{0}if(event.keyCode==13){{document.getElementById('{1}').click();}};",
                        keydownEvent, this._Settings.DefaultButtonId
                        );
            }

            if (!string.IsNullOrEmpty(keydownEvent))
            {
                keydownEvent = $"javascript:try{{{keydownEvent}}}catch(ex){{}};";
            }

            this._Settings.Attributes["onkeydown"] = keydownEvent;
            // !--

            if (this._Settings.Security.Disabled.Set &&
                this._Settings.Security.Disabled.Type == SecurityDefinition.DisabledDefinition.Types.Dynamic)
            {
                if (!string.IsNullOrEmpty(this._Settings.Security.Disabled.Value))
                {
                    this._Parent.Children.Add(new Static(this._Settings.Security.Disabled.Value));
                }
                return;
            }

            this._Parent.Children.Add(
                new Static(
                    string.Format(
                        "<input type=\"text\" name=\"{0}\" id=\"{0}\"{1}>",
                        this._Parent.DirectiveId, this._Settings.Attributes
                        )
                    )
                );
        }
Exemplo n.º 3
0
        public void Parse()
        {
            if (this._Parent.UpdateBlockIds.Count > 0)
            {
                this._Settings.Updates.Setup(string.Join(">", this._Parent.UpdateBlockIds.ToArray()));
            }

            this._Parent.Bag.Add("text", this._Settings.Text, this._Parent.Arguments);
            foreach (Attribute item in this._Settings.Attributes)
            {
                this._Parent.Bag.Add(item.Key, item.Value, this._Parent.Arguments);
            }
            this._Parent.Bag.Render();

            string renderedText = this._Parent.Bag["text"].Result;

            for (int aC = 0; aC < this._Settings.Attributes.Count; aC++)
            {
                Attribute item = this._Settings.Attributes[aC];
                this._Settings.Attributes[aC] =
                    new Attribute(item.Key, this._Parent.Bag[item.Key].Result);
            }

            string itemIndex =
                Convert.ToString(this._Parent.Arguments["_sys_ItemIndex"]);
            string checkBoxId = this._Parent.DirectiveId;

            if (!string.IsNullOrEmpty(itemIndex))
            {
                checkBoxId = $"{this._Parent.DirectiveId}_{itemIndex}";
            }
            string checkBoxLabel =
                $"<label for=\"{checkBoxId}\">{renderedText}</label>";

            // Define OnClick Server event for Button
            if (this._Settings.Bind != null)
            {
                // Render Bind Parameters
                this._Settings.Bind.Parameters.Prepare(
                    parameter =>
                {
                    Tuple <bool, object> result =
                        Property.Render(this._Parent, parameter.Query);
                    return(result.Item2);
                });

                ICryptography cryptography =
                    CryptographyProvider.Current.Get(Helpers.Context.Session.SessionId);
                string xeoraCall;

                if (this._Parent.UpdateBlockIds.Count > 0)
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.update('{1}', '{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            ),
                        string.Join(",", this._Settings.Updates.Blocks)
                        );
                }
                else
                {
                    xeoraCall = string.Format(
                        "__XeoraJS.post('{0}')",
                        cryptography.Encrypt(
                            this._Settings.Bind.ToString()
                            )
                        );
                }

                if (string.IsNullOrEmpty(this._Settings.Attributes["onclick"]))
                {
                    this._Settings.Attributes["onclick"] = $"javascript:{xeoraCall};";
                }
                else
                {
                    this._Settings.Attributes["onclick"] =
                        ControlHelper.CleanJavascriptSignature(this._Settings.Attributes["onclick"]);

                    this._Settings.Attributes["onclick"] =
                        string.Format(
                            "javascript:try{{{0};{1};}}catch(ex){{}};",
                            this._Settings.Attributes["onclick"], xeoraCall
                            );
                }
            }
            // !--

            if (this._Settings.Security.Disabled.Set &&
                this._Settings.Security.Disabled.Type == SecurityDefinition.DisabledDefinition.Types.Dynamic)
            {
                if (!string.IsNullOrEmpty(this._Settings.Security.Disabled.Value))
                {
                    this._Parent.Children.Add(new Static(this._Settings.Security.Disabled.Value));
                }
                return;
            }

            this._Parent.Children.Add(
                new Static(
                    string.Format(
                        "<input type=\"checkbox\" name=\"{0}\" id=\"{1}\"{2}>{3}",
                        this._Parent.DirectiveId,
                        checkBoxId,
                        this._Settings.Attributes,
                        checkBoxLabel
                        )
                    )
                );
        }