Skip to content

Latest commit

 

History

History
120 lines (86 loc) · 3.09 KB

actions.md

File metadata and controls

120 lines (86 loc) · 3.09 KB
title github order
Actions
6

Actions are runnable tasks on a given collection of models. Actions can be registered in resources and extracts. Also, actions are easily configurable and customizable for the current user.

Creating Actions

You can generate new action classes by calling the root:action artisan command:

php artisan root:action SendPasswordResetNotification

Registering Actions

You can register actions in resources and extracts, by using the actions method.

use App\Root\Actions\SendPasswordResetNotification;
use Illuminate\Http\Request;

/**
 * Define the actions for the resource.
 */
public function actions(Request $request): array
{
    return [
        new SendPasswordResetNotification(),
    ];
}

Alternatively, you can use withActions method on an object that resolves actions. It can be useful when you just want to hook into the object for some reason.

use App\Root\Actions\SendPasswordResetNotification;
use Illuminate\Http\Request;

$resource->withActions(static function (Request $request): array {
    return [
        new SendPasswordResetNotification(),
    ];
});

Configuration

Fields

For the detailed documentation visit the fields section.

You may define fields for any action:

use Cone\Root\Actions\Action;
use Cone\Root\Fields\Date;
use Illuminate\Http\Request;

class Publish extends Action
{
    /**
     * Define the fields for the action.
     */
    public function fields(Request $request): array
    {
        return [
            Date::make('Published at')->withTime(),
        ];
    }
}

When running the action, the submitted form data will be accessible in the Request object passed to the action's handle method.

Authorization

You may allow or disallow interaction with actions. To do so, you can call the authorize method on the action instance:

$action->authorize(static function (Request $request): bool {
    return $request->user()->can('batchPublish', Post::class);
});

Visibility

You may show or hide actions based on the current resource view. For example, some actions might be visible on the index page, while others should be hidden. You can easily customize the action visibility logic using the visibleOn and hiddenOn methods:

$field->visibleOn(['index', 'show']);

$field->hiddenOn(['update', 'create']);

Destructive Actions

You may mark an action as destructive. That means, the Run button that performs the action becomes red, indicating it is a dangerous action to run.

$action->destructive();

Confirmable Actions

You may mark an action as confirmable. That means, when pressing the Run button, the user receives a confirmation popup. If it's been cancelled, the action won't run.

$action->confirmable();

Standalone Actions

You may mark an action as standalone. That means, the action does not need any selected models. Also, the $models collection in the handle method will be empty.

$action->standalone();