Skip to content

Commit 3e7c635

Browse files
committedFeb 23, 2024
Appends the tailwind link tag to the layout
1 parent 67a0c1b commit 3e7c635

File tree

3 files changed

+64
-41
lines changed

3 files changed

+64
-41
lines changed
 

‎src/Actions/AppendTailwindTag.php

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Tonysm\TailwindCss\Actions;
4+
5+
class AppendTailwindTag
6+
{
7+
public function __invoke(string $contents)
8+
{
9+
return preg_replace(
10+
'/(\s*)(<\/head>)/',
11+
"\n\\1 <!-- TailwindCSS Styles -->".
12+
"\\1 <link rel=\"stylesheet\" href=\"{{ tailwindcss('css/app.css') }}\" />\\1\\2",
13+
$contents,
14+
);
15+
}
16+
}

‎src/Commands/InstallCommand.php

+3-41
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use Illuminate\Support\Facades\File;
77
use Illuminate\Support\Str;
88
use Symfony\Component\Console\Terminal;
9+
use Tonysm\TailwindCss\Actions\AppendTailwindTag;
910

1011
class InstallCommand extends Command
1112
{
@@ -111,13 +112,7 @@ private function displayHeader($text, $prefix)
111112
private function addImportStylesToLayouts()
112113
{
113114
$this->displayTask('updating layouts', function () {
114-
if (File::exists(base_path('webpack.mix.js'))) {
115-
$this->replaceMixStylesToLayouts();
116-
} elseif (File::exists(base_path('vite.config.js'))) {
117-
$this->replaceViteStylesToLayouts();
118-
} else {
119-
$this->appendTailwindStylesToLayouts();
120-
}
115+
$this->appendTailwindStylesToLayouts();
121116

122117
return self::SUCCESS;
123118
});
@@ -153,45 +148,12 @@ private function installMiddlewareAfter($after, $name, $group = 'web')
153148
}
154149
}
155150

156-
private function replaceMixStylesToLayouts()
157-
{
158-
$this->existingLayoutFiles()
159-
->each(fn ($file) => File::put(
160-
$file,
161-
str_replace(
162-
"mix('css/app.css')",
163-
"tailwindcss('css/app.css')",
164-
File::get($file),
165-
),
166-
));
167-
}
168-
169-
private function replaceViteStylesToLayouts()
170-
{
171-
$this->existingLayoutFiles()
172-
->each(fn ($file) => File::put(
173-
$file,
174-
preg_replace(
175-
'/\@vite\(\[\'resources\/css\/app.css\', \'resources\/js\/app.js\'\]\)/',
176-
"@vite(['resources/js/app.js'])",
177-
File::get($file),
178-
),
179-
));
180-
181-
$this->appendTailwindStylesToLayouts();
182-
}
183-
184151
private function appendTailwindStylesToLayouts()
185152
{
186153
$this->existingLayoutFiles()
187154
->each(fn ($file) => File::put(
188155
$file,
189-
preg_replace(
190-
'/(\s*)(<\/head>)/',
191-
"\\1 <!-- TailwindCSS Styles -->\\1\\2",
192-
"\\1 <link rel=\"stylesheet\" href=\"{{ tailwindcss('css/app.css') }}\" />\\1\\2",
193-
File::get($file),
194-
),
156+
(new AppendTailwindTag)(File::get($file)),
195157
));
196158
}
197159

‎tests/AppendTailwindTagTest.php

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Tonysm\TailwindCss\Tests;
4+
5+
use Tonysm\TailwindCss\Actions\AppendTailwindTag;
6+
7+
class AppendTailwindTagTest extends TestCase
8+
{
9+
/** @test */
10+
public function append_tailwind_tag_before_closing_head_tag()
11+
{
12+
$contents = <<<'BLADE'
13+
<html>
14+
<head>
15+
<title>Hello World</title>
16+
17+
@vite(['resources/js/app.js', 'resources/css/app.css'])
18+
</head>
19+
20+
<body>
21+
<!-- ... -->
22+
</body>
23+
</html>
24+
BLADE;
25+
26+
$expected = <<<'BLADE'
27+
<html>
28+
<head>
29+
<title>Hello World</title>
30+
31+
@vite(['resources/js/app.js', 'resources/css/app.css'])
32+
33+
<!-- TailwindCSS Styles -->
34+
<link rel="stylesheet" href="{{ tailwindcss('css/app.css') }}" />
35+
</head>
36+
37+
<body>
38+
<!-- ... -->
39+
</body>
40+
</html>
41+
BLADE;
42+
43+
$this->assertEquals($expected, (new AppendTailwindTag)($contents));
44+
}
45+
}

0 commit comments

Comments
 (0)