74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Laravel\Nova\Console;
|
|
|
|
use Illuminate\Filesystem\Filesystem;
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
|
|
#[AsCommand(name: 'nova:field')]
|
|
class FieldCommand extends ComponentGeneratorCommand
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'nova:field {name}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Create a new field';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
if (! $this->hasValidNameArgument()) {
|
|
return;
|
|
}
|
|
|
|
(new Filesystem)->copyDirectory(
|
|
__DIR__.'/field-stubs',
|
|
$this->componentPath()
|
|
);
|
|
|
|
// Field.js replacements...
|
|
$this->replace('{{ component }}', $this->componentName(), $this->componentPath().'/resources/js/field.js');
|
|
|
|
// Field.php replacements...
|
|
$this->replace('{{ namespace }}', $this->componentNamespace(), $this->componentPath().'/src/Field.stub');
|
|
$this->replace('{{ class }}', $this->componentClass(), $this->componentPath().'/src/Field.stub');
|
|
$this->replace('{{ component }}', $this->componentName(), $this->componentPath().'/src/Field.stub');
|
|
|
|
(new Filesystem)->move(
|
|
$this->componentPath().'/src/Field.stub',
|
|
$this->componentPath().'/src/'.$this->componentClass().'.php'
|
|
);
|
|
|
|
// FieldServiceProvider.php replacements...
|
|
$this->replace('{{ namespace }}', $this->componentNamespace(), $this->componentPath().'/src/FieldServiceProvider.stub');
|
|
$this->replace('{{ component }}', $this->componentName(), $this->componentPath().'/src/FieldServiceProvider.stub');
|
|
|
|
// webpack.mix.js replacements...
|
|
$this->replace('{{ name }}', $this->component(), $this->componentPath().'/webpack.mix.js');
|
|
|
|
(new Filesystem)->move(
|
|
$this->componentPath().'/src/FieldServiceProvider.stub',
|
|
$this->componentPath().'/src/FieldServiceProvider.php'
|
|
);
|
|
|
|
// Field composer.json replacements...
|
|
$this->prepareComposerReplacements();
|
|
|
|
// Register the field...
|
|
$this->installNovaNpmDependencies();
|
|
$this->buildComponent('field');
|
|
}
|
|
}
|