Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,5 @@ BuiltFiles_*.txt
# don't supply any 3rd party dll's
lib/*.dll
SampleLibrary/Documentation.md
SampleLibrary/TdsT4CodeGeneratedFile.cs
SampleLibrary/TdsT4CodeGeneratedFile.cs
/.vs/CodeGeneration/v15/Server/sqlite3
256 changes: 256 additions & 0 deletions Sitecore.Master/Code Generation Templates/GlassV4Item.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,256 @@
<#@ template language="C#" #>
<#@ output encoding="utf-8"#>

<#@ include file="Helpers.tt" #>
<#@ include file="StringExtensions.tt" #>
<#@ include file="GeneralExtensions.tt" #>
<#@ include file="Inflector.tt" #>

<#@ assembly name="System.Core.dll" #>

<#@ import namespace="System" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models" #>

<#@ parameter name="Model" type="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models.SitecoreItem" #>
<#@ parameter name="DefaultNamespace" type="System.String" #>

<#
/*
This TDS Code Generation template is used to generate objects that are compatible with the
Glass Sitecore Mapper that is available @ http://www.glass.lu/

There are a few things you can put in the 'Custom Data' property of a field in TDS.
To use multiple settings put them in as a querystring (key1=value&key2=value)

ignore=true
Sets a field to be skipped over for code gen
name=[name]
Forces the name of the generated property.
If not specified, then the generated property is the name of the Sitecore field.
If the field stores multiple values, the property name is pluralized.
type=[type]
Sets the return type of the generated property
generic=[type]
In the event the type (either specificed or auto mapped) is a generic it will use this generic type. i.e. List<generic>
cachable=true
Sets a type to be cached by Glass
*/
#>

<#
// we only act on Templates
SitecoreTemplate template = Model as SitecoreTemplate;
if (template == null)
{
return "";
}

string Tool = "Team Development for Sitecore - GlassItem.tt";
string ToolVersion = "1.0";
#>

namespace <#= GetNamespace(DefaultNamespace, template)#>
{


/// <summary>
/// <#= AsInterfaceName(template.Name) #> Interface
/// <para><#= GetValue(template.SitecoreFields, "__Short description")#></para>
/// <para>Path: <#= template.Path #></para>
/// <para>ID: <#= template.ID.ToString() #></para>
/// </summary>
[SitecoreType(TemplateId=<#= AsInterfaceName(template.Name) #>Constants.TemplateIdString, <#= GetGlassCachable(template) #>)]
public partial interface <#= AsInterfaceName(template.Name) #> : IGlassBase <#=GetObjectInheritanceDefinition(DefaultNamespace, template, true, (string s) => AsInterfaceName(s))#>
{
<#foreach(SitecoreField field in GetFieldsForTemplate(template, false)){#>
/// <summary>
/// The <#=field.Name#> field.
/// <para><#= GetValue(field.SitecoreFields, "__Short description")#></para>
/// <para>Field Type: <#=field.Type#></para>
/// <para>Field ID: <#=field.ID.ToString()#></para>
/// <para>Custom Data: <#=field.Data#></para>
/// </summary>
[SitecoreField(<#= AsInterfaceName(template.Name) #>Constants.<#= GetPropertyName(field) #>FieldName)]
<#=GetGlassFieldType(field)#> <#= GetPropertyName(field) #> {get; set;}

<#}#>
}


public static partial class <#= AsInterfaceName(template.Name) #>Constants{

public const string TemplateIdString = "<#= template.ID.ToString() #>";
public static readonly ID TemplateId = new ID(TemplateIdString);
public const string TemplateName = "<#= template.Name #>";

<#foreach(SitecoreField field in GetFieldsForTemplate(template, true)){#>

public static readonly ID <#= GetPropertyName(field) #>FieldId = new ID("<#=field.ID.ToString()#>");
public const string <#= GetPropertyName(field) #>FieldName = "<#=field.Name#>";

<#}#>

}

<#
// If the name of the template looks like an Interface, then don't generate a class definition
if (!IsInterfaceWord(template.Name)){ #>
/// <summary>
/// <#= AsClassName(template.Name) #>
/// <para><#= GetValue(template.SitecoreFields, "__Short description")#></para>
/// <para>Path: <#= template.Path #></para>
/// <para>ID: <#= template.ID.ToString() #></para>
/// </summary>
[SitecoreType(TemplateId=<#= AsInterfaceName(template.Name) #>Constants.TemplateIdString, <#= GetGlassCachable(template) #>)]
public partial class <#= AsClassName(template.Name) #> : GlassBase, <#=AsInterfaceName(template.Name)#>
{

<#foreach(SitecoreField field in GetFieldsForTemplate(template, true)){#>
/// <summary>
/// The <#=field.Name#> field.
/// <para><#= GetValue(field.SitecoreFields, "__Short description")#></para>
/// <para>Field Type: <#=field.Type#></para>
/// <para>Field ID: <#=field.ID.ToString()#></para>
/// <para>Custom Data: <#=field.Data#></para>
/// </summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("<#=Tool#>", "<#=ToolVersion#>")]
[SitecoreField(<#= AsInterfaceName(template.Name) #>Constants.<#= GetPropertyName(field) #>FieldName)]
public virtual <#=GetGlassFieldType(field)#> <#= GetPropertyName(field) #> {get; set;}

<#}#>
}
<#}#>
}

<#+
/// <summary>
/// Gets the inheritance string for the generated template
/// </summary>
/// <param name="defaultNamespace">The default namespace.</param>
/// <param name="template">The template to get the bases for.</param>
/// <param name="nameFunc">The function to run the base templates names through.</param>
/// <returns></returns>
public static string GetObjectInheritanceDefinition(string defaultNamespace, SitecoreTemplate item, bool includeLeadingComma, Func<string, string> nameFunc)
{
if (item.BaseTemplates.Count > 0)
{
return string.Concat(includeLeadingComma ? ", " : "",
item.BaseTemplates
.Select( bt => GetFullyQualifiedName(defaultNamespace, bt, nameFunc)) // select the name of the template with an 'I' prefix
.Aggregate( (total,next) => total + ", " + next) // basically a string.join(string[], '')
);
}
return "";
}

public static string GetGlassCachable(SitecoreTemplate item)
{

string cachable = GetCustomProperty(item.Data, "cachable");

bool isCachable;

bool.TryParse(cachable, out isCachable);

return string.Concat("Cachable=",isCachable.ToString().ToLower());



}

public static string GetGlassFieldType(SitecoreField field)
{
if (field != null && field.Type != null)
{
// Pull out any 'type' param from the custom data field on the field in TDS
string customType = GetCustomProperty(field.Data, "type");
string generic = GetCustomProperty(field.Data, "generic");

if (customType != "")
{
if (generic != "")
{
return string.Format("{0}<{1}>", customType, generic);
}
else
{
return customType;
}
}

switch(field.Type.ToLower())
{
case "tristate":
return "TriState";
case "checkbox":
return "bool";

case "date":
case "datetime":
return "DateTime";

case "number":
return "float";

case "integer":
return "int";

case "treelist with search":
case "treelist":
case "treelistex":
case "treelist descriptive":
case "checklist":
case "multilist with search":
case "multilist":
return string.Format("IEnumerable<{0}>", string.IsNullOrEmpty(generic) ? "Guid" : generic);

case "grouped droplink":
case "droplink":
case "lookup":
case "droptree":
case "reference":
case "tree":
return "Guid";

case "file":
return "File";

case "image":
return "Image";

case "general link":
case "general link with search":
return "Link";

case "password":
case "icon":
case "rich text":
case "html":
case "single-line text":
case "multi-line text":
case "frame":
case "text":
case "memo":
case "droplist":
case "grouped droplist":
case "valuelookup":
return "string";
case "attachment":
case "word document":
return "System.IO.Stream";
case "name lookup value list":
case "name value list":
return "System.Collections.Specialized.NameValueCollection";
default:
return "object /* UNKNOWN */";
}
}
else
{
throw new Exception("There is no 'Type' field on the " + field.Name + " field.");
}
}
#>
25 changes: 25 additions & 0 deletions Sitecore.Master/Code Generation Templates/HelixHeader.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<#@ template language="C#" #>
<#@ assembly name="System.Core.dll" #>

<#@ import namespace="System" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models" #>

<#@ parameter name="Model" type="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models.ProjectHeader" #>

#pragma warning disable 1591
#pragma warning disable 0108
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Team Development for Sitecore.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------


using Sitecore.Data;

57 changes: 57 additions & 0 deletions Sitecore.Master/Code Generation Templates/HelixItem.tt
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<#@ template language="C#" #>
<#@ output encoding="utf-8"#>

<#@ include file="Helpers.tt" #>
<#@ include file="StringExtensions.tt" #>
<#@ include file="GeneralExtensions.tt" #>
<#@ include file="Inflector.tt" #>

<#@ assembly name="System.Core.dll" #>

<#@ import namespace="System" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models" #>

<#@ parameter name="Model" type="HedgehogDevelopment.SitecoreProject.VSIP.CodeGeneration.Models.SitecoreItem" #>
<#@ parameter name="DefaultNamespace" type="System.String" #>

<#
/*
This TDS Code Generation template is used to generate objects that are compatible with the
Habitat Example Project based on the Helix Architecture Principles available @ https://github.com/Sitecore/Habitat
*/
#>

<#
// we only act on Templates
SitecoreTemplate template = Model as SitecoreTemplate;
if (template == null)
{
return "";
}

string Tool = "Team Development for Sitecore - HelixItem.tt";
string ToolVersion = "1.0";
#>

namespace <#= GetNamespace(DefaultNamespace, template)#>
{
public struct <#= AsStructName(template.Name) #>
{
public const string TemplateIdString = "<#= template.ID.ToString() #>";
public static readonly ID TemplateId = new ID(TemplateIdString);
public const string TemplateName = "<#= template.Name #>";

public struct Fields
{
<#foreach(SitecoreField field in GetFieldsForTemplate(template, true)){#>

public static readonly ID <#= GetPropertyName(field) #> = new ID("<#=field.ID.ToString()#>");
public const string <#= GetPropertyName(field) #>FieldName = "<#=field.Name#>";

<#}#>
}
}
}
6 changes: 6 additions & 0 deletions Sitecore.Master/Code Generation Templates/StringExtensions.tt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ public static string AsClassName(string word)
return GetFormattedWord(word, TitleCase);
}

public static string AsStructName(string word)
{
// TitleCase the word
return GetFormattedWord(word, TitleCase);
}

public static string AsPropertyName(string word, bool pluralize = false)
{
// TitleCase the word and pluralize it
Expand Down
Loading