Skip to content

Commit 66d0409

Browse files
Add support for OctoberCMS / WinterCMS (#27)
* Update Configuration.php Add support for hint paths configuration * Update ComponentTokenParser.php Is enabled hint path support, prepare the hint path * update hint param handle style, add test * update readme for OctoberCMS and WinterCMS * update readme for OctoberCMS and WinterCMS * update readme for OctoberCMS and WinterCMS * fixes --------- Co-authored-by: Giorgio Pogliani <[email protected]>
1 parent c25a903 commit 66d0409

File tree

4 files changed

+104
-4
lines changed

4 files changed

+104
-4
lines changed

README.md

+37
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,44 @@ final class TwigEnvironmentConfigurator
9797
}
9898
```
9999

100+
### OctoberCMS / WinterCMS
101+
102+
In OctoberCMS / WinterCMS you need to hook into ```cms.page.beforedisplay``` event inside your plugin's boot method in order to access twig instance.
103+
Then you can use your plugin hint path to choose a views subfolder as component's folder.
104+
100105
## Usage
106+
es.
107+
```
108+
plugins
109+
|__namespace
110+
|__pluginname
111+
|__views
112+
|__components
113+
|__button.htm
114+
```
115+
116+
```php
117+
public function boot(): void
118+
{
119+
Event::Listen('cms.page.beforeDisplay', function ($controller, $url, $page) {
120+
$twig = $controller->getTwig();
121+
122+
Configuration::make($twig)
123+
->setTemplatesPath('namespace.pluginname::components', hint: true)
124+
->useCustomTags()
125+
->setup();
126+
});
127+
}
128+
```
129+
130+
then in your htm files
131+
132+
```
133+
<x-button>...</x-button>
134+
```
135+
136+
Alle features like subfolders are supported, like ```<x-forms.input></x-forms.input>``` will refer to ```plugins/namespace/pluginname/views/forms/input.htm```
137+
101138

102139
The components are just Twig templates in a folder of your choice (e.g. `components`) and can be used anywhere in your Twig templates. The slot variable is any content you will add between the opening and the close tag.
103140

src/Configuration.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ class Configuration
1818

1919
protected string $templatesPath = 'components';
2020

21+
protected bool $needsHintPath = false;
22+
2123
protected bool $isUsingTemplatesExtension = true;
2224

2325
protected string $templatesExtension = 'twig';
@@ -40,9 +42,10 @@ public static function make(Environment $twig): Configuration
4042
* @param string $path
4143
* @return Configuration
4244
*/
43-
public function setTemplatesPath(string $path): self
45+
public function setTemplatesPath(string $path, bool $hint = false): self
4446
{
4547
$this->templatesPath = rtrim($path, DIRECTORY_SEPARATOR);
48+
$this->needsHintPath = $hint;
4649

4750
return $this;
4851
}
@@ -52,6 +55,11 @@ public function getTemplatesPath(): string
5255
return $this->templatesPath;
5356
}
5457

58+
public function getNeedsHintPath(): bool
59+
{
60+
return $this->needsHintPath;
61+
}
62+
5563
public function useTemplatesExtension(bool $isUsing = true): self
5664
{
5765
$this->isUsingTemplatesExtension = $isUsing;

src/TokenParser/ComponentTokenParser.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,21 @@ public function getComponentPath(string $name)
3131

3232
$componentPath = rtrim($this->configuration->getTemplatesPath(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $name;
3333

34-
if ($this->configuration->isUsingTemplatesExtension()) {
35-
$componentPath .= '.' . $this->configuration->getTemplatesExtension();
34+
if ($this->configuration->getNeedsHintPath()) {
35+
$componentPath = rtrim($componentPath, '.');
36+
$componentPath = str_replace('/', '.', $componentPath);
37+
} else {
38+
if ($this->configuration->isUsingTemplatesExtension()) {
39+
$componentPath .= '.' . $this->configuration->getTemplatesExtension();
40+
}
3641
}
3742

3843
return $componentPath;
3944
}
4045

4146
public function parse(Token $token): Node
4247
{
43-
list($variables, $name) = $this->parseArguments();
48+
[$variables, $name] = $this->parseArguments();
4449

4550
$slot = $this->parser->subparse([$this, 'decideBlockEnd'], true);
4651

tests/ComponentTokenParserTest.php

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
3+
namespace Performing\TwigComponents\Tests;
4+
5+
use Performing\TwigComponents\Configuration;
6+
use Performing\TwigComponents\TokenParser\ComponentTokenParser;
7+
use PHPUnit\Framework\TestCase;
8+
9+
class ComponentTokenParserTest extends TestCase
10+
{
11+
public function testGetComponentPathWithHintPath()
12+
{
13+
$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . '/templates');
14+
$twig = new \Twig\Environment($loader);
15+
16+
$config = Configuration::make($twig)
17+
->setTemplatesPath('mynamespace.myplugin::components', hint: true)
18+
->setTemplatesExtension('twig')
19+
->useCustomTags();
20+
21+
$this->assertTrue($config->getNeedsHintPath());
22+
$this->assertEquals($config->getTemplatesPath(), 'mynamespace.myplugin::components');
23+
$this->assertEquals($config->getTemplatesExtension(), 'twig');
24+
25+
$parser = new ComponentTokenParser($config);
26+
$componentPath = $parser->getComponentPath('test/component');
27+
$this->assertEquals('mynamespace.myplugin::components.test.component', $componentPath);
28+
}
29+
30+
public function testGetComponentPathWithoutHintPath()
31+
{
32+
$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . '/templates');
33+
$twig = new \Twig\Environment($loader);
34+
35+
$config = Configuration::make($twig)
36+
->setTemplatesPath('_components', hint: false)
37+
->setTemplatesExtension('twig')
38+
->useCustomTags();
39+
40+
$this->assertFalse($config->getNeedsHintPath());
41+
$this->assertEquals($config->getTemplatesPath(), '_components');
42+
$this->assertEquals($config->getTemplatesExtension(), 'twig');
43+
44+
$parser = new ComponentTokenParser($config);
45+
46+
$componentPath = $parser->getComponentPath('test/component');
47+
48+
$this->assertEquals('_components/test/component.twig', $componentPath);
49+
}
50+
}

0 commit comments

Comments
 (0)