Example #1
0
        public static bool CheckTemplates()
        {
            TemplatesStack instance = getInstance();
            bool           res      = instance.Check();

            return(res);
        }
Example #2
0
        private static TemplatesStack getInstance()
        {
            TemplatesStack res = null;

            if (HttpContext.Current.Items.Contains(key))
            {
                res = HttpContext.Current.Items[key] as TemplatesStack;
            }
            else
            {
                res = new TemplatesStack();
                HttpContext.Current.Items[key] = res;
            }
            return(res);
        }
Example #3
0
        public static MvcHtmlString ClientBlockRepeater <T, F>(
            this HtmlHelper <T> htmlHelper,
            string templateName,
            Expression <Func <T, F> > expression,
            ExternalContainerType itemsContainer = ExternalContainerType.div,
            object htmlAttributes      = null,
            string afterAdd            = null,
            string beforeRemove        = null,
            string afterRender         = null,
            string afterAllRender      = null,
            object templateOptions     = null,
            bool applyClientValidation = true,
            bool fastNoJavaScript      = false,
            string templateEngine      = null
            )
            where T : class
        {
            if (expression == null)
            {
                throw (new ArgumentNullException("expression"));
            }
            if (string.IsNullOrWhiteSpace(templateName))
            {
                throw (new ArgumentNullException("templateName"));
            }
            IDictionary <string, object> attributes = null;

            if (htmlAttributes == null)
            {
                attributes = new RouteValueDictionary();
            }
            else if (htmlAttributes is IDictionary <string, object> )
            {
                attributes = htmlAttributes as IDictionary <string, object>;
            }
            else
            {
                attributes = new RouteValueDictionary(htmlAttributes);
            }
            bool writeTemplates           = !TemplatesStack.CheckTemplates();
            IBindingsBuilder <T> bindings = htmlHelper.ClientBindings();

            if (bindings == null)
            {
                throw (new ArgumentNullException("bindings"));
            }
            string templates = string.Empty;

            try
            {
                string bindingsValue = bindings.Template(
                    templateName,
                    expression,
                    afterAdd,
                    beforeRemove,
                    afterRender,
                    templateOptions,
                    null,
                    applyClientValidation,
                    fastNoJavaScript,
                    afterAllRender,
                    templateEngine).Get().ToString();

                if (attributes.ContainsKey("data-bind"))
                {
                    attributes["data-bind"] = (attributes["data-bind"] as string) + ", " + bindingsValue;
                }
                else
                {
                    attributes["data-bind"] = bindingsValue;
                }
                attributes["data-nobinding"] = "true";
            }
            finally
            {
                if (writeTemplates)
                {
                    templates = TemplatesStack.GetTemplates();
                }
            }
            string openTag;
            string closeTag;

            BasicHtmlHelper.GetContainerTags(itemsContainer, attributes, out openTag, out closeTag);
            return(MvcHtmlString.Create(openTag + closeTag + templates));
        }
Example #4
0
        public static MvcHtmlString ClientBlockRepeater <T, F>(
            this HtmlHelper <T> htmlHelper,
            Expression <Func <T, IEnumerable <F> > > expression,
            object template,
            ExternalContainerType itemsContainer = ExternalContainerType.div,
            object htmlAttributes       = null,
            F itemPrototype             = null,
            string overrideTemplateName = null,
            string afterAdd             = null,
            string beforeRemove         = null,
            string afterRender          = null,
            string afterAllRender       = null,
            object templateOptions      = null,
            bool applyClientValidation  = true,
            bool fastNoJavaScript       = false,
            string templateEngine       = null,
            string templateChoice       = null
            )
            where F : class
            where T : class
        {
            if (expression == null)
            {
                throw (new ArgumentNullException("expression"));
            }
            if (template == null)
            {
                throw (new ArgumentNullException("template"));
            }
            string templateName = null;

            if (overrideTemplateName != null)
            {
                templateName = overrideTemplateName;
            }
            else
            {
                string origName = templateName = "_Repeater_Template_";
                int    i        = 0;
                if (HttpContext.Current.Items.Contains(templateName))
                {
                    i            = ((int)(HttpContext.Current.Items[templateName])) + 1;
                    templateName = templateName + i.ToString();
                }
                HttpContext.Current.Items[origName] = i;
            }
            StringBuilder sb = new StringBuilder();

            bool writeTemplates = !TemplatesStack.CheckTemplates();

            try
            {
                string allTemplates = null;
                bool   multiple     = false;
                if (template is object[])
                {
                    multiple = true;
                    if (templateChoice == null)
                    {
                        throw (new ArgumentNullException("templateChoice"));
                    }
                    StringBuilder tb        = new StringBuilder();
                    object[]      templates = template as object[];
                    for (int i = 0; i < templates.Length; i++)
                    {
                        tb.Append(htmlHelper.ClientTemplate <F>(templateName + i.ToString(CultureInfo.InvariantCulture), templates[i], true, itemPrototype).ToString());
                    }
                    allTemplates = tb.ToString();
                }
                else
                {
                    allTemplates = htmlHelper.ClientTemplate <F>(templateName, template, true, itemPrototype).ToString();
                }
                TemplatesStack.AddTemplate(allTemplates);
                sb.Append(Environment.NewLine);
                sb.Append(
                    htmlHelper.ClientBlockRepeater <T, IEnumerable <F> >(
                        multiple ? "@" + templateChoice : templateName,
                        expression,
                        itemsContainer,
                        htmlAttributes,
                        afterAdd,
                        beforeRemove,
                        afterRender,
                        afterAllRender,
                        templateOptions,
                        applyClientValidation,
                        fastNoJavaScript,
                        templateEngine).ToString());
            }
            finally
            {
                if (writeTemplates)
                {
                    sb.Append(TemplatesStack.GetTemplates());
                }
            }
            return(MvcHtmlString.Create(sb.ToString()));
        }