%PDF- %PDF-
Direktori : /www/loslex/production/vendor/wire-elements/modal/src/ |
Current File : //www/loslex/production/vendor/wire-elements/modal/src/WireElementsModalUpgrade.php |
<?php namespace LivewireUI\Modal; use Livewire\Features\SupportConsoleCommands\Commands\Upgrade\UpgradeStep; use Livewire\Features\SupportConsoleCommands\Commands\UpgradeCommand; class WireElementsModalUpgrade extends UpgradeStep { public function handle(UpgradeCommand $console, \Closure $next) { $this->interactiveReplacement( console: $console, title: 'The $dispatch helper expects named arguments.', before: '$dispatch(\'openModal\', \'component-name\', {user: 1})', after: '$dispatch(\'openModal\', {component: \'component-name\', arguments: {user: 1}})', pattern: '/\$(?:dispatch|emit)\(\'openModal\'(?:,\s?)([^,|\)]*)(?:,\s?)?((?:(?:.|\s)*?).*)\)/', replacement: function($matches) { $component = $matches[1]; $arguments = $matches[2]; if (empty($arguments)) { return "\$dispatch('openModal', { component: $component })"; } return "\$dispatch('openModal', { component: $component, arguments: $arguments })"; }, directories: 'resources' ); $this->interactiveReplacement( console: $console, title: '$this->dispatch now expects named arguments.', before: '$this->dispatch(\'openModal\', \'component-name\', [\'user\' => 1])', after: '$this->dispatch(\'openModal\', component: \'component-name\', arguments: [\'user\' => 1])', pattern: '/\$this->(?:dispatch|emit)\(\'openModal\'(?:,\s?)([^,|\)]*)(?:,\s?)?((?:(?:.|\s)*?).*)\)/', replacement: function($matches) { $component = $matches[1]; $arguments = $matches[2]; if (empty($arguments)) { return "\$this->dispatch('openModal', component: $component)"; } return "\$this->dispatch('openModal', component: $component, arguments: $arguments)"; }, directories: ['app', 'tests'] ); $this->interactiveReplacement( console: $console, title: 'The Livewire.dispatch helper expects named arguments.', before: 'Livewire.dispatch(\'openModal\', \'component-name\', {user: 1})', after: 'Livewire.dispatch(\'openModal\', {component: \'component-name\', arguments: {user: 1}})', pattern: '/Livewire\.(?:dispatch|emit)\(\'openModal\'(?:,\s?)([^,|\)]*)(?:,\s?)?((?:(?:.|\s)*?).*)\)/', replacement: function($matches) { $component = $matches[1]; $arguments = $matches[2]; if (empty($arguments)) { return "Livewire.dispatch('openModal', { component: $component })"; } return "Livewire.dispatch('openModal', {component: $component, arguments: $arguments })"; }, directories: 'resources' ); $this->interactiveReplacement( console: $console, title: 'The modal directive has been changed.', before: '@livewire(\'livewire-ui-modal\')', after: '@livewire(\'wire-elements-modal\')', pattern: '/@livewire\([\'|"]livewire-ui-modal[\'|"]\)/', replacement: '@livewire(\'wire-elements-modal\')', directories: 'resources/views' ); return $next($console); } }