-
-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds a mix
Twig filter for Laravel Mix theme assets.
#1179
base: develop
Are you sure you want to change the base?
Adds a mix
Twig filter for Laravel Mix theme assets.
#1179
Conversation
@ericp-mrel are you able to add tests for this and a docs PR? |
@LukeTowers I'm trying to create some tests, but I'm running into an issue where I cannot override the base path that's used by the Do you have any tips on how I can get this to work? <?php
namespace System\Tests\Classes\Asset;
use Cms\Classes\Theme;
use System\Classes\Asset\Mix;
use System\Classes\Asset\PackageManager;
use System\Tests\Bootstrap\TestCase;
use Winter\Storm\Support\Facades\Config;
use Winter\Storm\Support\Facades\Event;
use Winter\Storm\Support\Facades\File;
class MixTest extends TestCase
{
protected string $themePath;
protected string $originalThemesPath = '';
protected function setUp(): void
{
parent::setUp();
if (!is_dir(base_path('node_modules'))) {
$this->markTestSkipped('This test requires node_modules to be installed');
}
if (!is_file(base_path('node_modules/.bin/mix'))) {
$this->markTestSkipped('This test requires the mix package to be installed');
}
$this->originalThemesPath = Config::get('cms.themesPath');
Config::set('cms.themesPath', '/modules/system/tests/fixtures/themes');
$this->themePath = base_path('modules/system/tests/fixtures/themes/mixtest');
Config::set('cms.activeTheme', 'mixtest');
Event::flush('cms.theme.getActiveTheme');
Theme::resetCache();
PackageManager::instance()->registerPackage(
'theme-mixtest',
$this->themePath . '/winter.mix.js'
);
}
protected function tearDown(): void
{
File::deleteDirectory('modules/system/tests/fixtures/themes/mixtest/assets/dist');
File::delete('modules/system/tests/fixtures/themes/mixtest/mix-manifest.json');
Config::set('cms.themesPath', $this->originalThemesPath);
parent::tearDown();
}
public function testGeneratesVersionedUrl(): void
{
$this->artisan('mix:compile', [
'theme-mixtest',
'--manifest' => 'modules/system/tests/fixtures/npm/package-mixtest.json',
'--disable-tty' => true,
])->assertExitCode(0);
$theme = Theme::getActiveTheme();
dd($theme->getPath()); // This keeps pointing to /modules/cms instead of /modules/system
}
public function testThemeCanOverrideMixManifestPath(): void
{
}
} |
@ericp-mrel this might be useful to you: d27dbbc. There's two separate config keys, |
@LukeTowers That didn't seem to make any difference, after poking around more in the container classes I found out there was a function called $this->app->setThemesPath(Config::get('cms.themesPathLocal')); I'm not sure if there's a better way to handle setting that value in the Container? Full File: <?php
namespace System\Tests\Classes\Asset;
use Cms\Classes\Theme;
use Illuminate\Support\Facades\App;
use System\Classes\Asset\Mix;
use System\Classes\Asset\PackageManager;
use System\Tests\Bootstrap\TestCase;
use Winter\Storm\Support\Facades\Config;
use Winter\Storm\Support\Facades\Event;
use Winter\Storm\Support\Facades\File;
class MixTest extends TestCase
{
protected string $themePath;
protected string $originalThemesPath = '';
protected string $originalThemesPathLocal = '';
protected function setUp(): void
{
parent::setUp();
if (!is_dir(base_path('node_modules'))) {
$this->markTestSkipped('This test requires node_modules to be installed');
}
if (!is_file(base_path('node_modules/.bin/mix'))) {
$this->markTestSkipped('This test requires the mix package to be installed');
}
$this->originalThemesPath = Config::get('cms.themesPath');
Config::set('cms.themesPath', '/modules/system/tests/fixtures/themes');
$this->originalThemesPathLocal = Config::get('cms.themesPathLocal');
Config::set('cms.themesPathLocal', base_path('modules/system/tests/fixtures/themes'));
$this->app->setThemesPath(Config::get('cms.themesPathLocal'));
$this->themePath = base_path('modules/system/tests/fixtures/themes/mixtest');
Config::set('cms.activeTheme', 'mixtest');
Event::flush('cms.theme.getActiveTheme');
Theme::resetCache();
}
protected function tearDown(): void
{
File::deleteDirectory('modules/system/tests/fixtures/themes/mixtest/assets/dist');
File::delete('modules/system/tests/fixtures/themes/mixtest/mix-manifest.json');
Config::set('cms.themesPath', $this->originalThemesPath);
parent::tearDown();
}
public function testGeneratesVersionedUrl(): void
{
$this->artisan('mix:compile', [
'theme-mixtest',
'--manifest' => 'modules/system/tests/fixtures/npm/package-mixtest.json',
'--disable-tty' => true,
])->assertExitCode(0);
$theme = Theme::getActiveTheme();
dd($this->app->make('path.themes'), $theme->getPath(), $theme->assetUrl('assets/dist/css/theme.css'), (string) Mix::mix('assets/dist/css/theme.css'));
}
public function testThemeCanOverrideMixManifestPath(): void
{
}
} |
@bennothommo or @jaxwilko might have some input here |
Hi @ericp-mrel, I've just set up a dummy test which might help you. I created a theme fixture as The mix file for this is: const mix = require('laravel-mix');
mix.setPublicPath(__dirname);
mix
.css('assets/css/theme.css', 'assets/dist/theme.css')
.js('assets/javascript/theme.js', 'assets/dist/theme.js')
.options({
manifest: true,
}); Then a custom manifest specifically for this test as {
"workspaces": {
"packages": [
"modules/system/tests/fixtures/themes/mixtest"
]
},
"devDependencies": {
"laravel-mix": "^6.0.41"
}
} Then I added the following to $this->themePath = base_path('modules/system/tests/fixtures/themes/mixtest');
// Add our testing theme because it won't be auto discovered
\System\Classes\Asset\PackageManager::instance()->registerPackage(
'theme-mixtest',
$this->themePath . '/winter.mix.js',
); Then finally the test code: public function testVersioning(): void
{
$this->artisan($this->command, [
'--manifest' => 'modules/system/tests/fixtures/npm/package-mixtheme.json',
'--package' => 'theme-mixtest',
'--disable-tty' => true
])
->assertExitCode(0);
$manifestPath = $this->themePath . '/mix-manifest.json';
// Validate the file exists
$this->assertFileExists($manifestPath);
// Check the contents of the file
$contents = File::get($manifestPath);
$this->assertStringContainsString('/assets/dist/theme.css', $contents);
// Clean up
File::deleteDirectory($this->themePath . '/assets/dist');
File::delete($manifestPath);
} If you have any questions feel free to @ me :) |
…tUrl()` function.
Also fixes code formatting errors.
{ | ||
static $manifests = []; | ||
|
||
$theme = Theme::getActiveTheme(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be in the CMS module instead since it requires the CMS module.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ericp-mrel any thoughts on the above?
This PR adds support for a Laravel mix Twig
mix
filter.