Skip to content

Commit 6f6fb24

Browse files
committed
[TwigComponent] Minimal support of comment lines
Twig introduced the inline comments in twigphp/Twig#4349 This PR add minimal support for it the PreLexer / HTML syntax ```twig <twig:Button # comment bar="bar" /> ``` I'd like some IRL feedbacks on this one :)
1 parent 8f756a5 commit 6f6fb24

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

src/Twig/TwigPreLexer.php

+8
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ private function consumeAttributes(string $componentName): string
233233
$isAttributeDynamic = false;
234234

235235
// :someProp="dynamicVar"
236+
$this->consumeWhitespace();
236237
if ($this->check(':')) {
237238
$this->consume(':');
238239
$isAttributeDynamic = true;
@@ -244,6 +245,7 @@ private function consumeAttributes(string $componentName): string
244245

245246
// <twig:component someProp> -> someProp: true
246247
if (!$this->check('=')) {
248+
$this->consumeWhitespace();
247249
// don't allow "<twig:component :someProp>"
248250
if ($isAttributeDynamic) {
249251
throw new SyntaxError(\sprintf('Expected "=" after ":%s" when parsing the "<twig:%s" syntax.', $key, $componentName), $this->line);
@@ -332,6 +334,12 @@ private function consumeWhitespace(): void
332334
$whitespace = substr($this->input, $this->position, strspn($this->input, " \t\n\r\0\x0B", $this->position));
333335
$this->line += substr_count($whitespace, "\n");
334336
$this->position += \strlen($whitespace);
337+
338+
if ($this->check('#')) {
339+
$this->consume('#');
340+
$this->consumeUntil("\n");
341+
$this->consumeWhitespace();
342+
}
335343
}
336344

337345
/**

tests/Unit/TwigPreLexerTest.php

+60
Original file line numberDiff line numberDiff line change
@@ -376,5 +376,65 @@ public static function getLexTests(): iterable
376376
'<twig:foobar bar="baz" {{ ...attr }}>content</twig:foobar>',
377377
'{% component \'foobar\' with { bar: \'baz\', ...attr } %}{% block content %}content{% endblock %}{% endcomponent %}',
378378
];
379+
yield 'component_with_comment_line' => [
380+
"<twig:foo \n # bar \n />",
381+
'{{ component(\'foo\') }}',
382+
];
383+
yield 'component_with_comment_line_between_args' => [
384+
<<<TWIG
385+
<twig:foo
386+
# bar
387+
bar="baz"
388+
/>
389+
TWIG,
390+
'{{ component(\'foo\', { bar: \'baz\' }) }}',
391+
];
392+
yield 'component_with_comment_lines_between_args' => [
393+
<<<TWIG
394+
<twig:foo
395+
# comment
396+
foo="foo"
397+
# comment
398+
bar="bar"
399+
/>
400+
TWIG,
401+
'{{ component(\'foo\', { foo: \'foo\', bar: \'bar\' }) }}',
402+
];
403+
yield 'component_with_comment_line_containing_ending_tag' => [
404+
<<<TWIG
405+
<twig:foo
406+
# comment /></twig:foo>
407+
bar="bar"
408+
/>
409+
TWIG,
410+
'{{ component(\'foo\', { bar: \'bar\' }) }}',
411+
];
412+
yield 'component_with_comment_line_in_argument_value' => [
413+
<<<TWIG
414+
<twig:foo
415+
bar="# bar"
416+
/>
417+
TWIG,
418+
'{{ component(\'foo\', { bar: \'# bar\' }) }}',
419+
];
420+
yield 'component_with_comment_line_in_argument_array_value_is_kept' => [
421+
<<<TWIG
422+
<twig:foo
423+
bar="{{ {
424+
a: 'b',
425+
# comment
426+
c: 'd'
427+
} }}"
428+
/>
429+
TWIG,
430+
// Twig will remove the comment, we don't need to remove it
431+
<<<TWIG
432+
{{ component('foo', { bar: ({
433+
a: 'b',
434+
# comment
435+
c: 'd'
436+
}) }) }}
437+
TWIG,
438+
];
379439
}
380440
}

0 commit comments

Comments
 (0)