Skip to content

Latest commit

 

History

History
193 lines (140 loc) · 7.16 KB

templates.md

File metadata and controls

193 lines (140 loc) · 7.16 KB

up, next

Templates

You'll learn here how to load, and render templates. Guides/runtime.md will talk about about what happens during the rendering itself.

Errors

Not funny, but those happens.

Once and for all: GRMustache methods may return errors whose domain is GRMustacheErrorDomain, and error codes interpreted with the GRMustacheErrorCode enumeration:

extern NSString* const GRMustacheErrorDomain;

typedef enum {
    GRMustacheErrorCodeParseError,
    GRMustacheErrorCodeTemplateNotFound,
} GRMustacheErrorCode;

That means that the only errors you'll ever get from GRMustache are parse errors and missing templates errors. There is no such thing as a rendering error.

On-the-fly rendering methods

There are methods for rendering from strings, files, and bundle resources:

@interface GRMustacheTemplate

// Renders the provided templateString.
+ (NSString *)renderObject:(id)object
                fromString:(NSString *)templateString
                     error:(NSError **)outError;

// Renders the template loaded from a url. (from MacOS 10.6 and iOS 4.0)
+ (NSString *)renderObject:(id)object
         fromContentsOfURL:(NSURL *)url
                     error:(NSError **)outError;

// Renders the template loaded from a path.
+ (NSString *)renderObject:(id)object
        fromContentsOfFile:(NSString *)path
                     error:(NSError **)outError;

// Renders the template loaded from a bundle resource of extension "mustache".
+ (NSString *)renderObject:(id)object
              fromResource:(NSString *)name
                    bundle:(NSBundle *)bundle   // nil stands for the main bundle
                     error:(NSError **)outError;

// Renders the template loaded from a bundle resource of provided extension.
+ (NSString *)renderObject:(id)object
              fromResource:(NSString *)name
             withExtension:(NSString *)ext
                    bundle:(NSBundle *)bundle   // nil stands for the main bundle
                     error:(NSError **)outError;

Error handling follows Cocoa conventions. Especially:

Success or failure is indicated by the return value of the method. [...] You should always check that the return value is nil or NO before attempting to do anything with the NSError object.

Parse-once-and-render-many-times methods

It's efficient to parse a template once, and then render it as often as needed:

@interface GRMustacheTemplate

// Parses the templateString.
+ (id)templateFromString:(NSString *)templateString
                   error:(NSError **)outError;

// Loads and parses the template from url. (from MacOS 10.6 and iOS 4.0)
+ (id)templateFromContentsOfURL:(NSURL *)url
                          error:(NSError **)outError;

// Loads and parses the template from path.
+ (id)templateFromContentsOfFile:(NSString *)path
                           error:(NSError **)outError;

// Loads and parses the template from a bundle resource of extension "mustache".
+ (id)templateFromResource:(NSString *)name
                    bundle:(NSBundle *)bundle  // nil stands for the main bundle
                     error:(NSError **)outError;

// Loads and parses the template from a bundle resource of provided extension.
+ (id)templateFromResource:(NSString *)name
             withExtension:(NSString *)ext
                    bundle:(NSBundle *)bundle  // nil stands for the main bundle
                     error:(NSError **)outError;

Error handling follows Cocoa conventions. Especially:

Success or failure is indicated by the return value of the method. [...] You should always check that the return value is nil or NO before attempting to do anything with the NSError object.

On success, those methods return GRMustacheTemplate instances, which render objects with the following methods:

- (NSString *)renderObject:(id)object;
- (NSString *)renderObjectsInArray:(NSArray *)objects

The latter method, which takes several arguments, is helpful when several objects should feed the template.

Partial template inclusion

When a {{>name}} Mustache tag occurs in a template, GRMustache renders in place the content of another template, the partial, identified by its name.

You can write recursive partials. Just avoid infinite loops in your context objects.

Depending on the method which has been used to create the original template, partials will be looked for in different places :

  • In the main bundle, with ".mustache" extension:
    • renderObject:fromString:error:
    • templateFromString:error:
  • In the specified bundle, with ".mustache" extension:
    • renderObject:fromResource:bundle:error:
    • templateFromResource:bundle:error:
  • In the specified bundle, with the provided extension:
    • renderObject:fromResource:withExtension:bundle:error:
    • templateFromResource:withExtension:bundle:error:
  • Relatively to the URL of the including template, with the same extension:
    • renderObject:fromContentsOfURL:error:
    • templateFromContentsOfURL:error:
  • Relatively to the path of the including template, with the same extension:
    • renderObject:fromContentsOfFile:error:
    • templateFromContentsOfFile:error:

Check Guides/template_repositories.md for more partial loading strategies.

Overriding portions of partials

Partials may contain overridable sections. Those sections start with a dollar instead of a pound. For example, let's consider the following partial:

page_layout.mustache
<html>
<head>
    <title>{{$page_title}}Default title{{/page_title}}</title>
</head>
<body>
    <h1>{{$page_title}}Default title{{/page_title}}</h1>
    {{$page_content}
        Default content
    {{/page_content}}}
</body>
</html>

You can embed such an overridable partial, and override its sections with the {{<partial}}...{{/partial}} syntax:

article_page.mustache
{{<page_layout}}

    {{! override page_title }}
    {{$page_title}}{{article.title}}{{/page_title}}
    
    {{! override page_content }}
    {{$page_content}}
        {{$article}}
            {{body}}
            by {{author}}
        {{/article}}
    {{/page_content}}
    
{{/page_layout}}

When you render article.mustache, you will get a full HTML page.

You can override a section with attached data, as well:

anonymous_article.mustache
{{<article_page}}
    {{$article}}
        {{body}}
        by anonymous coward
    {{/article}}
{{/article_page}}

More loading options

All methods above load UTF8-encoded templates and partials from disk. If this does not fulfill your needs, check Guides/template_repositories.md

up, next