Skip to content

Commit 93dc8de

Browse files
committed
Allow constant values (integers, single quoted strings and booleans)
1 parent fe6f91d commit 93dc8de

File tree

4 files changed

+64
-10
lines changed

4 files changed

+64
-10
lines changed

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,16 @@ $result = $render->renderTemplateString(
109109

110110
### Replacement of variables
111111

112-
Values which are assigned to the template and used directly will be casted to string. For assigned objects you can call methods which return a value. Afterwards the returned value will be casted to string.
112+
Values which are assigned to the template and used directly will be casted to string.
113+
For assigned objects you can call methods which return a value.
114+
Afterwards the returned value will be casted to string.
115+
As constant values integer numbers, strings in single quotes and booleans (true, false) are supported.
113116

114117
```html
115118
{{ simpleValue }}
116119
{{ myObject.getProperty() }}
120+
{{ 'Hello World' }}
121+
{{ 12345 }}
117122
```
118123

119124
Your provided data may be a nested array which can be resolved in the template:
@@ -210,7 +215,8 @@ Multiple if statements can be nested. To invert an if condition the keyword *not
210215

211216
### function calls
212217

213-
The methods which are called on assigned objects can take parameters. Allowed parameters are variables taken out of the current scope or another function call on an object available in the current scope.
218+
The methods which are called on assigned objects can take parameters.
219+
Allowed parameters are variables taken out of the current scope or another function call on an object available in the current scope as well as the supported constant values integer numbers, strings in single quotes and booleans (true, false).
214220
As an example a ViewHelper-Object can be assigned to the render process and methods of the ViewHelper can be used in the template for advanced logic inside the template.
215221

216222
```php
@@ -222,19 +228,19 @@ use PHPMicroTemplate\Render;
222228

223229
class ViewHelper
224230
{
225-
public function count(iterable $list)
231+
public function count(iterable $list): int
226232
{
227233
return count($list);
228234
}
229235

230-
public function sum(...$values)
236+
public function sum(float ...$values): float
231237
{
232238
return array_sum($values);
233239
}
234240

235-
public function toBold($label)
241+
public function weight(string $label, int $weight = 400): string
236242
{
237-
return "<b>$label</b>";
243+
return sprintf('<span style="font-weight: %d;">%s</span>', $weight, $label);
238244
}
239245
}
240246

@@ -262,7 +268,7 @@ $result = $render->renderTemplate(
262268
<ul class="row">
263269
{% foreach products as product %}
264270
<li class="product">
265-
<span>{{ viewHelper.toBold(product.getTitle()) }}</span>
271+
<span>{{ viewHelper.weightFont(product.getTitle(), 600) }}</span>
266272
<span>Price: {{
267273
currencyFormatter.format(
268274
viewHelper.sum(

src/Render.php

+14-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class Render
2222
{
23-
private const REGEX_VARIABLE = '(?<expression>(?<variable>\w+)(?<nestedVariable>(\.\w+)*?)(\.(?<method>\w+)\((?<parameter>[^{}%]*)\))?)';
23+
private const REGEX_VARIABLE = '(?<expression>(?<variable>(\w+|\'[^\']+\'))(?<nestedVariable>(\.\w+)*?)(\.(?<method>\w+)\((?<parameter>[^{}%]*)\))?)';
2424

2525
/** @var array */
2626
private $templates = [];
@@ -237,6 +237,19 @@ protected function getValue(array $matches, array $variables)
237237

238238
if (!empty($matches['nestedVariable'])) {
239239
array_push($variablePath, ...explode('.', trim($matches['nestedVariable'], '.')));
240+
} else {
241+
$variable = trim($matches['variable']);
242+
if ($variable === 'true' || $variable === 'false') {
243+
return $variable === 'true';
244+
}
245+
246+
if (substr($variable, 0, 1) === "'" && substr($variable, -1) === "'") {
247+
return trim($variable, "'");
248+
}
249+
250+
if (is_numeric($variable)) {
251+
return +$variable;
252+
}
240253
}
241254

242255
if (!$this->resolveNestedVariable($resolved, $variablePath, $matches) || empty($matches['method'])) {

tests/RenderTest.php

+27-2
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,27 @@ public function testAccessNonExistingPropertyFails($person): void
329329
);
330330
}
331331

332+
public function testConstantExpressions(): void
333+
{
334+
$this->assertSame(
335+
'Schmidt, Hans!!;43;1;',
336+
$this->render->renderTemplateString("{{ 'Schmidt, Hans!!' }};{{ 43 }};{{ true }};{{ false }}")
337+
);
338+
}
339+
340+
public function testConstantExpressionsAsFunctionParameter(): void
341+
{
342+
$this->assertSame(
343+
'ABC;abc;10',
344+
$this->render->renderTemplateString(
345+
"{{ viewHelper.castCase( 'aBc', true ) }};{{ viewHelper.castCase( 'AbC', false ) }};{{ viewHelper.double( 5 ) }}",
346+
[
347+
'viewHelper' => new ViewHelper(),
348+
]
349+
)
350+
);
351+
}
352+
332353
public function propertyDataProvider(): array
333354
{
334355
return [
@@ -353,22 +374,26 @@ private function getArrayAccessObject(): ArrayAccess
353374
'title' => null,
354375
];
355376

377+
#[\ReturnTypeWillChange]
356378
public function offsetExists($offset)
357379
{
358380
return array_key_exists($offset, $this->data);
359381
}
360382

383+
#[\ReturnTypeWillChange]
361384
public function offsetGet($offset)
362385
{
363386
return $this->data[$offset];
364387
}
365388

366-
public function offsetSet($offset, $value)
389+
#[\ReturnTypeWillChange]
390+
public function offsetSet($offset, $value): void
367391
{
368392
$this->data[$offset] = $value;
369393
}
370394

371-
public function offsetUnset($offset)
395+
#[\ReturnTypeWillChange]
396+
public function offsetUnset($offset): void
372397
{
373398
unset($this->data[$offset]);
374399
}

tests/ViewHelper.php

+10
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,14 @@ public function toBold(string $label): string
3030
{
3131
return "<b>$label</b>";
3232
}
33+
34+
public function castCase(string $string, bool $toUpperCase): string
35+
{
36+
return $toUpperCase ? strtoupper($string) : strtolower($string);
37+
}
38+
39+
public function double(int $number): int
40+
{
41+
return $number * 2;
42+
}
3343
}

0 commit comments

Comments
 (0)