| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580 |
- // ------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码由工具生成。
- // 运行时版本: 17.0.0.0
- //
- // 对此文件的更改可能导致不正确的行为,如果
- // 重新生成代码,这些更改将会丢失。
- // </auto-generated>
- // ------------------------------------------------------------------------------
- namespace VberAdmin.Templates.V4
- {
- using System.Linq;
- using System.Text;
- using System.Collections.Generic;
- using System;
-
- /// <summary>
- /// Class to produce the template output
- /// </summary>
-
- #line 1 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")]
- public partial class WebView : WebViewBase
- {
- #line hidden
- /// <summary>
- /// Create the template output
- /// </summary>
- public virtual string TransformText()
- {
- this.Write("@using ");
-
- #line 6 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.ProjectName));
-
- #line default
- #line hidden
- this.Write(".Web.Models.Input\r\n@using ");
-
- #line 7 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.ProjectName));
-
- #line default
- #line hidden
- this.Write(".Web.Models.Modals\r\n@using ");
-
- #line 8 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.ProjectName));
-
- #line default
- #line hidden
- this.Write(".Web.Models.Search\r\n@using ");
-
- #line 9 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.ProjectName));
-
- #line default
- #line hidden
- this.Write(".Web.Models.Table\r\n\r\n@using VberZero\r\n\r\n@{\r\n ViewBag.Title = \"");
-
- #line 14 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.HtmlPageTitle));
-
- #line default
- #line hidden
- this.Write("\";\r\n string activeMenu = PermissionNames.Vber");
-
- #line 15 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.ParentPath));
-
- #line default
- #line hidden
-
- #line 15 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.FileName));
-
- #line default
- #line hidden
- this.Write("Mg; //The menu item will be active for this page.\r\n ViewBag.ActiveMenu = activ" +
- "eMenu;\r\n\tvar searchForm = new VmSearch(new List<VmSearchItem>()\r\n {\r\n");
-
- #line 19 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- foreach (var item in Model.Columns)
- {
- if(!item.IsGenreated) continue;
- if(item.IsSearch)
- {
- var typeStr= item.AttrType=="int"?"FType.I": item.AttrType=="int"?"FType.In": item.AttrType=="DateTime"?"FType.D": item.AttrType=="DateTime?"?"FType.Dn":"";
- typeStr= string.IsNullOrEmpty(typeStr)?"":".WithFieldType("+typeStr+")";
-
-
- #line default
- #line hidden
- this.Write(" new VmSearchItem(\"");
-
- #line 27 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.CamelColumnName));
-
- #line default
- #line hidden
- this.Write("\",\"");
-
- #line 27 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.Comment));
-
- #line default
- #line hidden
- this.Write("\")");
-
- #line 27 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(typeStr));
-
- #line default
- #line hidden
- this.Write(", \r\n");
-
- #line 28 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- }
- }
-
- #line default
- #line hidden
- this.Write(" });\r\n\r\n var table = new VmTable(VzConsts.ApiAppUrl + \"");
-
- #line 33 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.FileName));
-
- #line default
- #line hidden
- this.Write("/GetAll\", activeMenu, searchForm)\r\n\t.AddItems(new List<VmTableItem>()\r\n {\r\n");
-
- #line 36 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- foreach (var item in Model.Columns)
- {
- if(!item.IsGenreated) continue;
- if(item.IsTable)
- {
-
- #line default
- #line hidden
- this.Write(" new VmTableItem(\"");
-
- #line 41 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.CamelColumnName));
-
- #line default
- #line hidden
- this.Write("\", \"");
-
- #line 41 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.Comment));
-
- #line default
- #line hidden
- this.Write("\"),\r\n");
-
- #line 42 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- }
- }
-
- #line default
- #line hidden
- this.Write(" });\r\n var modalBody = new VmModalBody() \r\n .AddInputs(new List<VmIn" +
- "putBase>\r\n {\r\n new VmInputHidden(\"id\"),\r\n })\r\n ." +
- "AddGroup(new List<VmInputBase>\r\n {\r\n");
-
- #line 53 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- foreach (var item in Model.Columns)
- {
- if(!item.IsGenreated) continue;
- if(!item.IsModal) continue;
- var inputType=item.AttrType=="int"?"VmInputNumber": item.AttrType=="int?"?"VmInputNumber": item.AttrType=="DateTime"?"VmInputDate": item.AttrType=="DateTime?"?"VmInputDate":"VmInput";
- if(item.IsRequired) {
-
- #line default
- #line hidden
- this.Write(" new ");
-
- #line 59 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(inputType));
-
- #line default
- #line hidden
- this.Write("(\"");
-
- #line 59 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.CamelColumnName));
-
- #line default
- #line hidden
- this.Write("\", \"");
-
- #line 59 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.Comment));
-
- #line default
- #line hidden
- this.Write("\").WithRequired(), \r\n");
-
- #line 60 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- }else{
-
- #line default
- #line hidden
- this.Write(" new ");
-
- #line 62 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(inputType));
-
- #line default
- #line hidden
- this.Write("(\"");
-
- #line 62 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.CamelColumnName));
-
- #line default
- #line hidden
- this.Write("\", \"");
-
- #line 62 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(item.Comment));
-
- #line default
- #line hidden
- this.Write("\"), \r\n");
-
- #line 63 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- }
-
- #line default
- #line hidden
-
- #line 66 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- }
-
- #line default
- #line hidden
- this.Write(" },2);\r\n var modal = new VmModal().WithHeaderAndFooter(\"");
-
- #line 69 "D:\02Study\ABP\VberAdminBaseSystem\Template\VberAdminTemplate\CodeGenerator\Templates\V4\WebView.tt"
- this.Write(this.ToStringHelper.ToStringWithCulture(Model.HtmlModalTitle));
-
- #line default
- #line hidden
- this.Write(@""","""").WithBody(modalBody);
- }
- @section styles{
-
- }
- @await Html.PartialAsync(""_Table"", table)
- <!--Modal Start-->
- @await Html.PartialAsync(""_Modal"", modal)
- <!--Modal End-->
- @section scripts
- {
- <script type=""text/javascript"">
- var $table = $('#table');
- $(function () {
- var funs = LoadTable();
- funs[""btnCreate""] = function() { BtnCreate({ data: { id: """" } }); }
- funs[""btnUpdate""] = function () {
- //var row = $table.VbTable(""getSelection"");
- BtnUpdate({ disabled: """" });
- };
- });
- </script>
- <!--格式化-->
- <script id=""formatter-script"" type=""text/javascript"">
- function TypeFormatter(v) {
- var name = $('#hid-type option[value=""' + v + '""]').text();
- switch (v) {
- case 0:
- return '<span class=""label label-danger"">' + name +'</span>';
- default:
- return '<span class=""label label-info"">' + name +'</span>';
- }
- }
- </script>
- }
- <section style=""display: none"">
- <select id=""hid-type"">
- <option value=""""></option>
- </select>
- </section>");
- return this.GenerationEnvironment.ToString();
- }
- }
-
- #line default
- #line hidden
- #region Base class
- /// <summary>
- /// Base class for this transformation
- /// </summary>
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")]
- public class WebViewBase
- {
- #region Fields
- private global::System.Text.StringBuilder generationEnvironmentField;
- private global::System.CodeDom.Compiler.CompilerErrorCollection errorsField;
- private global::System.Collections.Generic.List<int> indentLengthsField;
- private string currentIndentField = "";
- private bool endsWithNewline;
- private global::System.Collections.Generic.IDictionary<string, object> sessionField;
- #endregion
- #region Properties
- /// <summary>
- /// The string builder that generation-time code is using to assemble generated output
- /// </summary>
- protected System.Text.StringBuilder GenerationEnvironment
- {
- get
- {
- if ((this.generationEnvironmentField == null))
- {
- this.generationEnvironmentField = new global::System.Text.StringBuilder();
- }
- return this.generationEnvironmentField;
- }
- set
- {
- this.generationEnvironmentField = value;
- }
- }
- /// <summary>
- /// The error collection for the generation process
- /// </summary>
- public System.CodeDom.Compiler.CompilerErrorCollection Errors
- {
- get
- {
- if ((this.errorsField == null))
- {
- this.errorsField = new global::System.CodeDom.Compiler.CompilerErrorCollection();
- }
- return this.errorsField;
- }
- }
- /// <summary>
- /// A list of the lengths of each indent that was added with PushIndent
- /// </summary>
- private System.Collections.Generic.List<int> indentLengths
- {
- get
- {
- if ((this.indentLengthsField == null))
- {
- this.indentLengthsField = new global::System.Collections.Generic.List<int>();
- }
- return this.indentLengthsField;
- }
- }
- /// <summary>
- /// Gets the current indent we use when adding lines to the output
- /// </summary>
- public string CurrentIndent
- {
- get
- {
- return this.currentIndentField;
- }
- }
- /// <summary>
- /// Current transformation session
- /// </summary>
- public virtual global::System.Collections.Generic.IDictionary<string, object> Session
- {
- get
- {
- return this.sessionField;
- }
- set
- {
- this.sessionField = value;
- }
- }
- #endregion
- #region Transform-time helpers
- /// <summary>
- /// Write text directly into the generated output
- /// </summary>
- public void Write(string textToAppend)
- {
- if (string.IsNullOrEmpty(textToAppend))
- {
- return;
- }
- // If we're starting off, or if the previous text ended with a newline,
- // we have to append the current indent first.
- if (((this.GenerationEnvironment.Length == 0)
- || this.endsWithNewline))
- {
- this.GenerationEnvironment.Append(this.currentIndentField);
- this.endsWithNewline = false;
- }
- // Check if the current text ends with a newline
- if (textToAppend.EndsWith(global::System.Environment.NewLine, global::System.StringComparison.CurrentCulture))
- {
- this.endsWithNewline = true;
- }
- // This is an optimization. If the current indent is "", then we don't have to do any
- // of the more complex stuff further down.
- if ((this.currentIndentField.Length == 0))
- {
- this.GenerationEnvironment.Append(textToAppend);
- return;
- }
- // Everywhere there is a newline in the text, add an indent after it
- textToAppend = textToAppend.Replace(global::System.Environment.NewLine, (global::System.Environment.NewLine + this.currentIndentField));
- // If the text ends with a newline, then we should strip off the indent added at the very end
- // because the appropriate indent will be added when the next time Write() is called
- if (this.endsWithNewline)
- {
- this.GenerationEnvironment.Append(textToAppend, 0, (textToAppend.Length - this.currentIndentField.Length));
- }
- else
- {
- this.GenerationEnvironment.Append(textToAppend);
- }
- }
- /// <summary>
- /// Write text directly into the generated output
- /// </summary>
- public void WriteLine(string textToAppend)
- {
- this.Write(textToAppend);
- this.GenerationEnvironment.AppendLine();
- this.endsWithNewline = true;
- }
- /// <summary>
- /// Write formatted text directly into the generated output
- /// </summary>
- public void Write(string format, params object[] args)
- {
- this.Write(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args));
- }
- /// <summary>
- /// Write formatted text directly into the generated output
- /// </summary>
- public void WriteLine(string format, params object[] args)
- {
- this.WriteLine(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args));
- }
- /// <summary>
- /// Raise an error
- /// </summary>
- public void Error(string message)
- {
- System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError();
- error.ErrorText = message;
- this.Errors.Add(error);
- }
- /// <summary>
- /// Raise a warning
- /// </summary>
- public void Warning(string message)
- {
- System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError();
- error.ErrorText = message;
- error.IsWarning = true;
- this.Errors.Add(error);
- }
- /// <summary>
- /// Increase the indent
- /// </summary>
- public void PushIndent(string indent)
- {
- if ((indent == null))
- {
- throw new global::System.ArgumentNullException("indent");
- }
- this.currentIndentField = (this.currentIndentField + indent);
- this.indentLengths.Add(indent.Length);
- }
- /// <summary>
- /// Remove the last indent that was added with PushIndent
- /// </summary>
- public string PopIndent()
- {
- string returnValue = "";
- if ((this.indentLengths.Count > 0))
- {
- int indentLength = this.indentLengths[(this.indentLengths.Count - 1)];
- this.indentLengths.RemoveAt((this.indentLengths.Count - 1));
- if ((indentLength > 0))
- {
- returnValue = this.currentIndentField.Substring((this.currentIndentField.Length - indentLength));
- this.currentIndentField = this.currentIndentField.Remove((this.currentIndentField.Length - indentLength));
- }
- }
- return returnValue;
- }
- /// <summary>
- /// Remove any indentation
- /// </summary>
- public void ClearIndent()
- {
- this.indentLengths.Clear();
- this.currentIndentField = "";
- }
- #endregion
- #region ToString Helpers
- /// <summary>
- /// Utility class to produce culture-oriented representation of an object as a string.
- /// </summary>
- public class ToStringInstanceHelper
- {
- private System.IFormatProvider formatProviderField = global::System.Globalization.CultureInfo.InvariantCulture;
- /// <summary>
- /// Gets or sets format provider to be used by ToStringWithCulture method.
- /// </summary>
- public System.IFormatProvider FormatProvider
- {
- get
- {
- return this.formatProviderField ;
- }
- set
- {
- if ((value != null))
- {
- this.formatProviderField = value;
- }
- }
- }
- /// <summary>
- /// This is called from the compile/run appdomain to convert objects within an expression block to a string
- /// </summary>
- public string ToStringWithCulture(object objectToConvert)
- {
- if ((objectToConvert == null))
- {
- throw new global::System.ArgumentNullException("objectToConvert");
- }
- System.Type t = objectToConvert.GetType();
- System.Reflection.MethodInfo method = t.GetMethod("ToString", new System.Type[] {
- typeof(System.IFormatProvider)});
- if ((method == null))
- {
- return objectToConvert.ToString();
- }
- else
- {
- return ((string)(method.Invoke(objectToConvert, new object[] {
- this.formatProviderField })));
- }
- }
- }
- private ToStringInstanceHelper toStringHelperField = new ToStringInstanceHelper();
- /// <summary>
- /// Helper to produce culture-oriented representation of an object as a string
- /// </summary>
- public ToStringInstanceHelper ToStringHelper
- {
- get
- {
- return this.toStringHelperField;
- }
- }
- #endregion
- }
- #endregion
- }
|