Merge branch 'feature/delimiters-partials-and-sections' into dev

This commit is contained in:
Justin Hileman
2011-06-13 02:14:22 -04:00
2 changed files with 47 additions and 32 deletions
+22 -31
View File
@@ -211,28 +211,16 @@ class Mustache {
* @return string Rendered Mustache template. * @return string Rendered Mustache template.
*/ */
protected function _renderTemplate($template) { protected function _renderTemplate($template) {
$template = $this->_renderSections($template); if ($section = $this->_findSection($template)) {
return $this->_renderTags($template); list($before, $type, $tag_name, $content, $after) = $section;
}
/** $renderedContent = '';
* Render boolean, enumerable and inverted sections.
*
* @access protected
* @param string $template
* @return string
*/
protected function _renderSections($template) {
while ($section_data = $this->_findSection($template)) {
list($section, $offset, $type, $tag_name, $content) = $section_data;
$replace = '';
$val = $this->_getVariable($tag_name); $val = $this->_getVariable($tag_name);
switch($type) { switch($type) {
// inverted section // inverted section
case '^': case '^':
if (empty($val)) { if (empty($val)) {
$replace .= $content; $renderedContent = $this->_renderTemplate($content);
} }
break; break;
@@ -241,25 +229,25 @@ class Mustache {
if ($this->_varIsIterable($val)) { if ($this->_varIsIterable($val)) {
foreach ($val as $local_context) { foreach ($val as $local_context) {
$this->_pushContext($local_context); $this->_pushContext($local_context);
$replace .= $this->_renderTemplate($content); $renderedContent .= $this->_renderTemplate($content);
$this->_popContext(); $this->_popContext();
} }
} else if ($val) { } else if ($val) {
if (is_array($val) || is_object($val)) { if (is_array($val) || is_object($val)) {
$this->_pushContext($val); $this->_pushContext($val);
$replace .= $this->_renderTemplate($content); $renderedContent = $this->_renderTemplate($content);
$this->_popContext(); $this->_popContext();
} else { } else {
$replace .= $content; $renderedContent = $this->_renderTemplate($content);
} }
} }
break; break;
} }
$template = substr_replace($template, $replace, $offset, strlen($section)); return $this->_renderTags($before) . $renderedContent . $this->_renderTemplate($after);
} }
return $template; return $this->_renderTags($template);
} }
/** /**
@@ -280,13 +268,11 @@ class Mustache {
} }
/** /**
* Extract a section from $template. * Extract the first section from $template.
*
* This is a helper function to find sections needed by _renderSections.
* *
* @access protected * @access protected
* @param string $template * @param string $template
* @return array $section, $offset, $type, $tag_name and $content * @return array $before, $type, $tag_name, $content and $after
*/ */
protected function _findSection($template) { protected function _findSection($template) {
$regEx = $this->_prepareSectionRegEx($this->_otag, $this->_ctag); $regEx = $this->_prepareSectionRegEx($this->_otag, $this->_ctag);
@@ -326,10 +312,14 @@ class Mustache {
} }
if (empty($section_stack)) { if (empty($section_stack)) {
$section = substr($template, $section_start, $search_offset - $section_start); // $before, $type, $tag_name, $content, $after
$content = substr($template, $content_start, $offset - $content_start); return array(
substr($template, 0, $section_start),
return array($section, $section_start, $section_type, $tag_name, $content); $section_type,
$tag_name,
substr($template, $content_start, $offset - $content_start),
substr($template, $search_offset),
);
} }
break; break;
} }
@@ -574,7 +564,7 @@ class Mustache {
case '#': case '#':
case '^': case '^':
case '/': case '/':
// remove any leftovers from _renderSections // remove any leftover section tags
return $leading . $trailing; return $leading . $trailing;
break; break;
default: default:
@@ -856,4 +846,5 @@ class MustacheException extends Exception {
// which can't be handled by this Mustache instance. // which can't be handled by this Mustache instance.
const UNKNOWN_PRAGMA = 4; const UNKNOWN_PRAGMA = 4;
} }
+25 -1
View File
@@ -195,6 +195,30 @@ class MustacheTest extends PHPUnit_Framework_TestCase {
$this->assertEquals('Charlie Chaplin', $m->render(null, array('first_name' => 'Charlie', 'last_name' => 'Chaplin'))); $this->assertEquals('Charlie Chaplin', $m->render(null, array('first_name' => 'Charlie', 'last_name' => 'Chaplin')));
$this->assertEquals('Zappa, Frank', $m->render('{{last_name}}, {{first_name}}', array('first_name' => 'Frank', 'last_name' => 'Zappa'))); $this->assertEquals('Zappa, Frank', $m->render('{{last_name}}, {{first_name}}', array('first_name' => 'Frank', 'last_name' => 'Zappa')));
} }
/**
* @group interpolation
* @dataProvider interpolationData
*/
public function testDoubleRenderMustacheTags($template, $context, $expected) {
$m = new Mustache($template, $context);
$this->assertEquals($expected, $m->render());
}
public function interpolationData() {
return array(
array(
'{{#a}}{{=<% %>=}}{{b}} c<%={{ }}=%>{{/a}}',
array('a' => array(array('b' => 'Do Not Render'))),
'{{b}} c'
),
array(
'{{#a}}{{b}}{{/a}}',
array('a' => array('b' => '{{c}}'), 'c' => 'FAIL'),
'{{c}}'
),
);
}
/** /**
* Mustache should allow newlines (and other whitespace) in comments and all other tags. * Mustache should allow newlines (and other whitespace) in comments and all other tags.
@@ -426,4 +450,4 @@ class MustacheExposedOptionsStub extends Mustache {
public function getDelimiters() { public function getDelimiters() {
return array($this->_otag, $this->_ctag); return array($this->_otag, $this->_ctag);
} }
} }