MustacheSharp/README.md

332 lines
14 KiB
Markdown
Raw Permalink Normal View History

# MustacheSharp <sup>Plus</sup>
2013-01-02 01:31:04 +00:00
2013-01-12 23:44:49 +00:00
An extension of the mustache text template engine for .NET.
## Branches
- **master-plus**: adds additional tags like `eq`, `lt`, `gt`, ... as described below. (These tags are marked as <sup>Plus</sup>)
- **master**: contains the original version forked from [jehugaleahsa/mustache-sharp](/jehugaleahsa/mustache-sharp).
2013-01-12 23:44:49 +00:00
## Overview
Generating text has always been a chore. Either you're concatenating strings like a mad man or you're getting fancy with `StringBuilder`. Either way, the logic for conditionally including values or looping over a collection really obscures the intention of the code. A more declarative approach would improve your code big time. Hey, that's why server-side scripting got popular in the first place, right?
[mustache](http://mustache.github.com/) is a really simple tool for generating text. .NET developers already had access to `String.Format` to accomplish pretty much the same thing. The only problem was that `String.Format` used indexes for placeholders: `Hello, {0}!!!`. **mustache** let you use meaningful names for placeholders: `Hello, {{name}}!!!`.
**mustache** is a logic-less text generator. However, almost every time I've ever needed to generate text I needed to turn some of it on or off depending on a value. Not having the ability to turn things off usually meant going back to building my text in parts.
2013-01-12 23:44:49 +00:00
2013-01-13 00:34:53 +00:00
Introducing [handlebars.js](http://handlebarsjs.com/)... If you've needed to generate any HTML templates, **handlebars.js** is a really awesome tool. Not only does it support an `if` and `each` tag, it lets you define your own tags! It also makes it easy to reference nested values `{{Customer.Address.ZipCode}}`.
2013-01-12 23:44:49 +00:00
**MustacheSharp** (aka. **mustache#**, **mustache-sharp**) brings the power of **handlebars.js** to .NET and then takes it a little bit further. It is geared towards building ordinary text documents, rather than just HTML. It differs from **handlebars.js** in the way it handles newlines. With **MustacheSharp**, you explicitly indicate when you want newlines - actual newlines are ignored.
```handlebars
Hello, {{Customer.Name}}
{{#newline}}
{{#newline}}
{{#with Order}}
{{#if LineItems}}
Here is a summary of your previous order:
{{#newline}}
{{#newline}}
{{#each LineItems}}
{{ProductName}}: {{UnitPrice:C}} x {{Quantity}}
2013-07-23 13:02:05 +00:00
{{#newline}}
{{/each}}
{{#newline}}
Your total was {{Total:C}}.
{{#else}}
You do not have any recent purchases.
{{/if}}
{{/with}}
```
Most of the lines in the previous example will never appear in the final output. This allows you to use **MustacheSharp** to write templates for normal text, not just HTML/XML.
**MustacheSharp <sup>Plus</sup>** is a fork of the MustacheSharp engine that adds some basic logic (eq, lt, gt, lte, gte) and some other tags.
2013-01-12 23:44:49 +00:00
## Placeholders
2016-03-21 17:41:46 +00:00
The placeholders can be any valid identifier. These map to the property names in your classes (or `Dictionary` keys).
2013-01-12 23:44:49 +00:00
### Formatting Placeholders
Each format item takes the following form and consists of the following components:
```handlebars
{{identifier[,alignment][:formatString]}}
```
2013-01-12 23:44:49 +00:00
2013-01-13 00:31:36 +00:00
The matching braces are required. Notice that they are double curly braces! The alignment and the format strings are optional and match the syntax accepted by `String.Format`. Refer to [String.Format](http://msdn.microsoft.com/en-us/library/system.string.format.aspx)'s documentation to learn more about the standard and custom format strings.
### Placeholder Scope
2013-05-03 12:35:04 +00:00
The identifier is used to find a property with a matching name. If you want to print out the object itself, you can use the special identifier `this`.
2013-01-13 00:31:36 +00:00
```cs
FormatCompiler compiler = new FormatCompiler();
Generator generator = compiler.Compile("Hello, {{this}}!!!");
string result = generator.Render("Bob");
Console.Out.WriteLine(result); // Hello, Bob!!!
```
2013-01-13 00:31:36 +00:00
Some tags, such as `each` and `with`, change which object the values will be retrieved from.
If a property with the placeholder name can't be found at the current scope, the name will be searched for at the next highest level.
**MustacheSharp** will automatically detect when an object is a dictionary and search for a matching key. In this case, it still needs to be a valid identifier name.
2013-01-13 00:31:36 +00:00
### Nested Placeholders
If you want to grab a nested property, you can separate identifiers using `.`.
```handlebars
{{Customer.Address.ZipCode}}
```
2013-01-12 23:44:49 +00:00
## The 'if' tag
2013-01-13 00:31:36 +00:00
The **if** tag allows you to conditionally include a block of text.
```handlebars
Hello{{#if Name}}, {{Name}}{{/if}}!!!
```
2013-01-13 00:31:36 +00:00
The block will be printed if:
* The value is a non-empty string.
* The value is a non-empty collection.
* The value isn't the NUL char.
2013-01-13 00:31:36 +00:00
* The value is a non-zero number.
* The value evaluates to true.
The **if** tag has complimentary **elif** and **else** tags. There can be as many **elif** tags as desired but the **else** tag must appear only once and after all other tags.
```handlebars
{{#if Male}}Mr.{{#elif Married}}Mrs.{{#else}}Ms.{{/if}}
```
2013-01-13 00:31:36 +00:00
## The 'eq' tag <sup>Plus</sup>
2014-02-04 13:19:55 +00:00
The **eq** tag allows you to conditionally include a block of text, by comparing if two values are equal.
```handlebars
{{#eq Name UserName}}Hello {{Name}} !!!{{/eq}}
```
You can also use specific values as the target value for comparison, rather than values from the model by prefixing the value with the "_" character:
```handlebars
Hello {{#eq User.Role _admin}}Maestro!{{#else}}{{Name}}{{/eq}}
```
2014-02-04 13:19:55 +00:00
The block will be printed if:
* Both values are null
* Both values are strings, and are equal (case insensitive)
* Both values are integers or doubles, and are equal
* Both values are boolean, and are equal
## The 'lt' tag <sup>Plus</sup>
The **lt** tag allows you to conditionally include a block of text, if the first value is less than the second value.
2014-02-04 13:19:55 +00:00
```handlebars
<span {{#lt Budget BudgetLimit}} class="underBudget" {{/lt}}>{{Budget}}</span>
```
2014-02-04 13:19:55 +00:00
Again, you can use specific values as the target for the comparison parameter, by prefixing the value with the "_" character:
```handlebars
<span {{#lt Budget _500}} class="underBudget" {{/lt}}>{{Budget}}</span>
```
2014-02-04 13:19:55 +00:00
The block will be printed if:
* Both values are integers or doubles, and the first value is less than the second
## The 'lte', 'gt', 'gte' tags <sup>Plus</sup>
2014-02-04 13:19:55 +00:00
These tags work in the same way as the 'lt' tag, ('lte' = less than or equal to).
2013-01-12 23:44:49 +00:00
## The 'each' tag
2013-01-13 00:31:36 +00:00
If you need to print out a block of text for each item in a collection, use the **each** tag.
```handlebars
{{#each Customers}}
Hello, {{Name}}!!
{{/each}}
```
2013-01-13 00:31:36 +00:00
Within the context of the **each** block, the scope changes to the current item. So, in the example above, `Name` would refer to a property in the `Customer` class.
Additionally, you can access the current index into the collection being enumerated using the **index** tag.
```handlebars
<ul>
{{#each Items}}
<li class="list-item{{#index}}" value="{{Value}}">{{Description}}</li>
{{/each}}
</ul>
```
This will build an HTML list, building a list of items with `Description` and `Value` properties. Additionally, the `index` tag is used to create a CSS class with increasing numbers.
2013-01-12 23:44:49 +00:00
## The 'with' tag
2013-01-13 00:31:36 +00:00
Within a block of text, you may refer to a same top-level placeholder over and over. You can cut down the amount of text by using the **with** tag.
```handlebars
{{#with Customer.Address}}
{{FirstName}} {{LastName}}
{{Line1}}
{{#if Line2}}
{{Line2}}
{{/if}}
{{#if Line3}}
{{Line3}}
{{/if}}
{{City}} {{State}}, {{ZipCode}}
{{/with}}
```
2013-01-13 00:31:36 +00:00
Here, the `Customer.Address` property will be searched first for the placeholders. If a property cannot be found in the `Address` object, it will be searched for in the `Customer` object and on up.
2013-01-13 00:59:57 +00:00
## The 'set' tag
**MustacheSharp** provides limited support for variables through use of the `set` tag. Once a variable is declared, it is visible to all child scopes. Multiple definitions of a variable with the same name cannot be created within the same scope. In fact, I highly recommend making variable names unique to the entire template just to prevent unexpected behavior!
The following example will print out "EvenOddEvenOdd" by toggling a variable called `even`:
```cs
FormatCompiler compiler = new FormatCompiler();
const string format = @"{{#set even}}
{{#each this}}
{{#if @even}}
Even
{{#else}}
Odd
{{/if}}
{{#set even}}
{{/each}}";
Generator generator = compiler.Compile(format);
generator.ValueRequested += (sender, e) =>
{
e.Value = !(bool)(e.Value ?? false);
};
string result = generator.Render(new int[] { 0, 1, 2, 3 });
```
This code works by specifying a function to call whenever a value is needed for the `even` variable. The first time the function is called, `e.Value` will be null. All additional calls will hold the last known value of the variable.
Notice that when you set the variable, you don't qualify it with an `@`. You only need the `@` when you request its value, like in the `if` statement above.
You should attempt to limit your use of variables within templates. Instead, perform as many up-front calculations as possible and make sure your view model closely represents its final appearance. In this case, it would make more sense to first convert the array into strings of "Even" and "Odd".
```cs
FormatCompiler compiler = new FormatCompiler();
const string format = @"{{#each this}}{{this}}{{/each}}";
Generator generator = compiler.Compile(format);
string result = generator.Render(new string[] { "Even", "Odd", "Even", "Odd" });
```
This code is much easier to read and understand. It is also going to run significantly faster. In cases where you also need the original value, you can create an array containing objects with properties for the original value *and* `Even`/`Odd`.
2013-01-13 00:59:57 +00:00
## Defining Your Own Tags
If you need to define your own tags, **MustacheSharp** has everything you need.
2013-01-13 00:59:57 +00:00
Once you define your own tags, you can register them with the compiler using the `RegisterTag` method.
FormatCompiler compiler = new FormatCompiler();
compiler.RegisterTag(myTag);
2013-01-13 00:59:57 +00:00
Your tag can be referenced within the template by leading its name with a `#`.
Custom tags can take any number of parameters. Parameters can have default values if you don't want to pass them all the time. Arguments are passed by specifying a placeholder.
### Multi-line Tags
Here's an example of a tag that will make all of its content upper case:
```cs
public class UpperTagDefinition : ContentTagDefinition
{
public UpperTagDefinition()
: base("upper")
2013-01-13 00:59:57 +00:00
{
}
public override IEnumerable<NestedContext> GetChildContext(TextWriter writer, KeyScope scope, Dictionary<string, object> arguments)
{
NestedContext context = new NestedContext()
2013-01-13 00:59:57 +00:00
{
KeyScope = scope,
Writer = new StringWriter(),
WriterNeedsConsolidated = true,
};
yield return context;
2013-01-13 00:59:57 +00:00
}
public override string ConsolidateWriter(TextWriter writer, Dictionary<string, object> arguments)
{
return writer.ToString().ToUpperInvariant();
}
}
```
2013-01-16 21:03:02 +00:00
Another solution is to wrap the given TextWriter with another TextWriter that will change the case of the strings passed to it. This approach requires more work, but would be more efficient. You should attempt to wrap or reuse the text writer passed to the tag.
2013-01-13 00:59:57 +00:00
### In-line Tags
Here's an example of a tag that will join the items of a collection:
```cs
public class JoinTagDefinition : InlineTagDefinition
{
public JoinTagDefinition()
: base("join")
2013-01-13 00:59:57 +00:00
{
}
protected override IEnumerable<TagParameter> GetParameters()
{
return new TagParameter[] { new TagParameter("collection") };
}
protected override void GetText(TextWriter writer, Dictionary<string, object> arguments)
{
IEnumerable collection = (IEnumerable)arguments["collection"];
string joined = String.Join(", ", collection.Cast<object>().Select(o => o.ToString()));
writer.Write(joined);
}
}
```
2016-03-21 17:41:46 +00:00
## HTML Support
**MustacheSharp** was not originally designed to exclusively generate HTML. However, it is by far the most common use of **MustacheSharp**. For that reason, there is a separate `HtmlFormatCompiler` class that will automatically configure the code to work with HTML documents. Particularly, this class will eliminate most newlines and escape any special HTML characters that might appear within the substituted values.
2016-03-21 17:41:46 +00:00
If you really need to embed HTML values, you can wrap placeholders in triple quotes rather than double quotes.
```cs
HtmlFormatCompiler compiler = new HtmlFormatCompiler();
const string format = @"<html><body>{{escaped}} and {{{unescaped}}}</body></html>";
Generator generator = compiler.Compile(format);
string result = generator.Render(new
{
escaped = "<b>Awesome</b>",
unescaped = "<i>sweet</i>"
});
// Generates <html><body>&lt;b&gt;Awesome&lt;/b&gt; and <i>sweet</i></body></html>
```
2014-06-20 12:57:40 +00:00
2014-06-20 13:03:59 +00:00
## License
2015-10-23 02:17:08 +00:00
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org>