Skip to content

Commit 456cb00

Browse files
committed
[TwigComponent] Deprecate cva twig function
1 parent 77a6815 commit 456cb00

File tree

7 files changed

+36
-3
lines changed

7 files changed

+36
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 2.20.0
44

55
- Add Anonymous Component support for 3rd-party bundles #2019
6+
- Deprecate `cva` Twig function in favor of [`html_cva` from `twig/html-extra`](https://twig.symfony.com/html_cva) #2144
67

78
## 2.17.0
89

doc/index.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1158,6 +1158,11 @@ Component with Complex Variants (CVA)
11581158

11591159
The ``cva`` function was added in TwigComponents 2.16.
11601160

1161+
.. deprecated:: 2.20
1162+
1163+
The ``cva`` function was deprecated in TwigComponents 2.20, and will be removed in 3.0.
1164+
The function is now provided by the ``twig/html-extra:^3.12`` package under the name `html_cva`_.
1165+
11611166
`CVA (Class Variant Authority)`_ is a concept from the JavaScript world and used
11621167
by the well-known `shadcn/ui`_.
11631168
CVA allows you to display a component with different variants (color, size, etc.),
@@ -1763,6 +1768,7 @@ https://symfony.com/doc/current/contributing/code/bc.html
17631768
.. _`Passing Blocks to Live Components`: https://symfony.com/bundles/ux-live-component/current/index.html#passing-blocks
17641769
.. _`Stimulus controller`: https://symfony.com/bundles/StimulusBundle/current/index.html
17651770
.. _`CVA (Class Variant Authority)`: https://cva.style/docs/getting-started/variants
1771+
.. _`html_cva`: https://twig.symfony.com/doc/3.x/functions/html_cva.html
17661772
.. _`shadcn/ui`: https://ui.shadcn.com
17671773
.. _`tales-from-a-dev/twig-tailwind-extra`: https://github.com/tales-from-a-dev/twig-tailwind-extra
1768-
.. _`ignore not defined options`: https://symfony.com/doc/current/components/options_resolver.html#ignore-not-defined-options
1774+
.. _`ignore not defined options`: https://symfony.com/doc/current/components/options_resolver.html#ignore-not-defined-options

src/CVA.php

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
* @author Mathéo Daninos <[email protected]>
2525
*
2626
* @experimental
27+
*
28+
* @deprecated since TwigComponent 2.20, use CVA from the "twig/html-extra:^3.12.0" package instead.
2729
*/
2830
final class CVA
2931
{

src/Twig/ComponentExtension.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
use Symfony\UX\TwigComponent\ComponentRenderer;
1717
use Symfony\UX\TwigComponent\CVA;
1818
use Symfony\UX\TwigComponent\Event\PreRenderEvent;
19+
use Twig\DeprecatedCallableInfo;
1920
use Twig\Error\RuntimeError;
2021
use Twig\Extension\AbstractExtension;
2122
use Twig\TwigFunction;
@@ -42,7 +43,11 @@ public function getFunctions(): array
4243
{
4344
return [
4445
new TwigFunction('component', [$this, 'render'], ['is_safe' => ['all']]),
45-
new TwigFunction('cva', [$this, 'cva']),
46+
new TwigFunction('cva', [$this, 'cva'], [
47+
...(class_exists(DeprecatedCallableInfo::class)
48+
? ['deprecation_info' => new DeprecatedCallableInfo('symfony/ux-twig-component', '2.20', 'html_cva', 'twig/html-extra')]
49+
: ['deprecated' => '2.20', 'deprecating_package' => 'symfony/ux-twig-component', 'alternative' => 'html_cva']),
50+
]),
4651
];
4752
}
4853

@@ -105,6 +110,8 @@ public function finishEmbeddedComponentRender(): void
105110
*/
106111
public function cva(array $cva): CVA
107112
{
113+
trigger_deprecation('symfony/ux-twig-component', '2.20', 'Twig Function "cva" is deprecated; use "html_cva" from the "twig/html-extra" package (available since version 3.12) instead.');
114+
108115
return new CVA(
109116
$cva['base'] ?? '',
110117
$cva['variants'] ?? [],

tests/Fixtures/templates/components/Alert.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
<div class="{{ alert.apply({color, size}, attributes.render('class'), 'flex p-4') }}">
3434
{% block content %}
3535
{% endblock %}
36-
</div>
36+
</div>

tests/Integration/ComponentExtensionTest.php

+13
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Symfony\UX\TwigComponent\Tests\Integration;
1313

14+
use Symfony\Bridge\PhpUnit\ExpectDeprecationTrait;
1415
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
1516
use Symfony\UX\TwigComponent\Tests\Fixtures\User;
1617
use Twig\Environment;
@@ -21,6 +22,8 @@
2122
*/
2223
final class ComponentExtensionTest extends KernelTestCase
2324
{
25+
use ExpectDeprecationTrait;
26+
2427
public function testCanRenderComponent(): void
2528
{
2629
$output = $this->renderComponent('component_a', [
@@ -264,8 +267,13 @@ class="block"
264267
];
265268
}
266269

270+
/**
271+
* @group legacy
272+
*/
267273
public function testComponentWithClassMerge(): void
268274
{
275+
$this->expectDeprecation('Since symfony/ux-twig-component 2.20: Twig Function "cva" is deprecated; use "html_cva" from the "twig/html-extra" package (available since version 3.12) instead.');
276+
269277
$output = self::getContainer()->get(Environment::class)->render('class_merge.html.twig');
270278

271279
$this->assertStringContainsString('class="alert alert-red alert-lg font-semibold rounded-md dark:bg-gray-600 flex p-4"', $output);
@@ -373,8 +381,13 @@ public function testComponentWithEmptyProps(): void
373381
$this->assertStringContainsString('I have an empty props tag', $output);
374382
}
375383

384+
/**
385+
* @group legacy
386+
*/
376387
public function testAnonymousComponentWithPropsOverwriteParentsProps(): void
377388
{
389+
$this->expectDeprecation('Since symfony/ux-twig-component 2.20: Twig Function "cva" is deprecated; use "html_cva" from the "twig/html-extra" package (available since version 3.12) instead.');
390+
378391
$output = self::getContainer()->get(Environment::class)->render('anonymous_component_with_props_overwrite_parents_props.html.twig');
379392

380393
$this->assertStringContainsString('I am an icon', $output);

tests/Unit/CVATest.php

+4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
use Symfony\UX\TwigComponent\CVA;
1616

1717
/**
18+
* To remove in TwigComponent 3.0.
19+
*
1820
* @author Mathéo Daninos <[email protected]>
21+
*
22+
* @group legacy
1923
*/
2024
class CVATest extends TestCase
2125
{

0 commit comments

Comments
 (0)