logo dile-components dile-components

Actions configuration

The CRUD components offer two types of actions that can be performed on resources:

Batch Action Configuration

The CRUD system includes functionality for configuring batch actions. With this feature, you can select multiple items from a list and perform an action that affects all selected items, such as deletions, mass updates, or any other operation your system may require.

Enabling Item Checkboxes Selection

To enable the selection of multiple items from a list, use the hideCheckboxSelection option in the configuration object. Set the hideCheckboxSelection property to false. You’ll find this property within the customization object inside the configuration object.

this.config.customization.hideCheckboxSelection = false;

Defining Actions for a Resource

Resources can define any number of actions in the configuration object. This is done by defining two properties on the config object.

The properties to define are:

Action Object Properties

Common properties for both batch (list) and individual (single) actions:

{
  // REQUIRED: The name of the action. Used as the identifier for the action form component.
  // This name should match the 'action' attribute of the corresponding form component.
  name: 'DeleteAction',

  // REQUIRED: A human-readable label displayed to the user in the action selection interface.
  // This text appears on buttons or selection items.
  label: 'Delete board games',

  // OPTIONAL: Boolean flag indicating whether this action is destructive (e.g., deletion, permanent changes).
  // When set to true, the action may be highlighted differently in the UI to warn the user.
  // Default: false
  destructive: true,
}

Properties specific to individual actions (actions.single only):

{
  // OPTIONAL: A function that determines whether the action should be displayed.
  // ONLY USED IN actions.single - not applicable to batch actions (actions.list).
  // The function receives the element data object as a parameter and must return a boolean.
  // - If the function returns true (or is not defined), the action is displayed.
  // - If the function returns false, the action is hidden from the UI.
  // Example: shouldAppear: (element) => element.status === 'completed'
  shouldAppear: (element) => true,

  // OPTIONAL: A callback function that will be executed when the action is selected.
  // ONLY USED IN actions.single - not applicable to batch actions (actions.list).
  // If provided, this function is executed instead of showing the action form component.
  // The function receives the current element data object as a parameter.
  // This is useful for direct actions that don't require a form dialog (e.g., quick state changes).
  // If onClick is not provided, the standard form-based action interface will be displayed.
  // Example: onClick: (element) => { /* perform action directly */ }
  onClick: (element) => {}
}

Example with both list and single actions

actions: {
  list: [
    {
      label: 'Delete resources',
      name: 'DeleteAction',
      destructive: true,
    },
    {
      label: 'Create ZIP of invoices',
      name: 'InvoiceCreateZipAction',
    },
  ],
  single: [
    {
      label: 'Create credit note',
      name: 'CreateCreditNoteFromInvoiceAction',
    },
    {
      label: 'Convert to complete invoice (F3)',
      name: 'CreateF3FromInvoiceAction',
    },
    {
      label: 'Cancel invoice',
      name: 'InvoiceCancellerAction',
      destructive: true,
    },
    {
      label: 'Create PDF',
      name: 'InvoicePdfAction',
      shouldAppear: (element) => element.status === 'completed'
    },
  ],
},

The selected action name is used in the dile-pages component as a key to determine which form component should be displayed. Each action form element is defined in a separate component, as shown in the code below.

templates: {
    // ...
    formActions: (actionName, actionIds) => html`
        <dile-pages attrForSelected="action" selected="${actionName}">
            <dile-crud-delete-action action="DeleteAction"></dile-crud-delete-action>
            <demo-change-essential-action action="DemoChangeEssentialAction" .actionIds=${actionIds}></demo-change-essential-action>
        </dile-pages>
    `,
  },

As you can note in the previous code, to configure the list actions froms the formActions template method will recive the action name and action ids array as arguments.

Action Forms

Action forms components, like dile-crud-delete-action are used to provide additional data, if needed, to the backend that will process the actions. This additional data will define the behavior of the action.

Action forms are regular forms with specifications explained in the dile-ajax-form component. The basic requirement is that the form implements the DileForm mixin, to provide various methods for setting and retrieving form data.

In the action component, you can include:

Generating action form components with the CLI

Dile Components CLI allows you to create action component scaffolding using the g-action command:

dile g-action verify-user-action

You can get the complete help for this command to see its configuration options by running:

dile g-action --help

Examples of Action Form on Crud Components

Action Without Form Fields

The backend may not need extra fields to process a batch action, such as when deleting a series of items.

The code shown below is a basic action that only includes a paragraph to understand the action and confirm it:

import { LitElement, html, css } from 'lit';
import { DileForm } from '@dile/ui/mixins/form';

export class DileCrudDeleteAction extends DileForm(LitElement) {
    static styles = [
        css`
            :host {
                display: block;
            }
        `
    ];

    render() {
        return html`
            <p>Are you sure you want to delete those items?</p>
        `;
    }
}

Action With Form Fields

Below is an example of an action with form fields, which is used when additional data needs to be sent to the backend.

import { LitElement, html, css } from 'lit';
import { DileForm } from '@dile/ui/mixins/form';
import '@dile/ui/components/select/select.js';

export class DemoChangeEssentialAction extends DileForm(LitElement) {
  static styles = [
    css`
      :host {
        display: block;
      }
    `
  ];

  static get properties() {
    return {
      actionIds: { type: Array }
    };
  }

  constructor() {
    super();
    this.actionIds = [];
  }

  render() {
    return html`
      <p>Change essential game state of ${this.actionIds.length} elements.</p>
      <dile-select name="essential">
        <select slot="select">
          <option value="0">Not Essential</option>
          <option value="1">Essential</option>
        </select>
      </dile-select>
    `;
  }
}
customElements.define('demo-change-essential-action', DemoChangeEssentialAction);

Individual Actions in the dile-crud-single Component

The dile-crud-single component can include actions that can be performed on individual items. Individual actions are configured similarly to list actions but have some specific characteristics.

Configuring Single Actions

To enable single actions on a resource, define two properties in the resource's configuration object:

Single Actions Example

actions: {
    single: [
      {
        name: "SetEurope",
        label: "Set Europe as continent"
      },
      {
        name: "SetAsia",
        label: "Set Asia as continent"
      },
      {
        name: "QuickPublish",
        label: "Quick publish item",
        onClick: (element) => {
          // Perform direct action without showing a form
          console.log('Publishing:', element.name);
          // Call API, update state, etc.
        }
      },
      {
        name: "PublishAction",
        label: "Publish item",
        shouldAppear: (element) => element.status === 'draft'
      }
    ]
  },

templates: {
    // Other templates
    formSingleActions: (actionName, element) => html`
        <dile-pages attrForSelected="action" selected="${actionName}">
            <demo-set-europe-as-continent-action action="SetEurope" .element=${element}></demo-set-europe-as-continent-action>
            <demo-set-asia-as-continent-action action="SetAsia" .element=${element}></demo-set-asia-as-continent-action>
            <demo-publish-action action="PublishAction" .element=${element}></demo-publish-action>
        </dile-pages>
    `,
  },

The formSingleActions template receives the name of the action and the element data object. The element object can be used to customize forms or add additional functionalities to the action form components.

Example of Action Form on Single Components

import { LitElement, html, css } from 'lit';
import { DileForm } from '@dile/ui/mixins/form';

class DemoSetEuropeAsContinentAction extends DileForm(LitElement) {
  static styles = [
    css`
      :host {
        display: block;
      }
    `
  ];

  static get properties() {
    return {
      country: { type: Object }
    };
  }

  render() {
    return html`
    <p>Do you really want to set Europe as continent of ${this.country?.name}?</p>
    `;
  }
}
customElements.define('demo-set-europe-as-continent-action', DemoSetEuropeAsContinentAction);

Direct Actions with onClick (without form)

For simple actions that don't require a form dialog, you can use the onClick property instead of defining a form component. When an action has an onClick callback, the action form interface is bypassed and the callback function is executed directly.

import { CrudConfigBuilder } from '@dile/crud/lib/CrudConfigBuilder';

const countryConfig = new CrudConfigBuilder('https://example.com/api/countries', {
  actions: {
    single: [
      {
        name: "MarkAsEssential",
        label: "Mark as essential",
        onClick: (element) => {
          // Perform the action directly without showing a form
          fetch(`https://example.com/api/countries/${element.id}`, {
            method: 'PATCH',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({ essential: true })
          });
        }
      },
      {
        name: "DeleteAction",
        label: "Delete country",
        destructive: true
        // No onClick defined, so it will show the form component
      }
    ]
  },
  templates: {
    formSingleActions: (actionName, element) => html`
        <dile-pages attrForSelected="action" selected="${actionName}">
            <demo-delete-action action="DeleteAction" .element=${element}></demo-delete-action>
        </dile-pages>
    `,
  },
});

Note: When using onClick:

Action Handlers in the Configuration

Both the dile-crud and dile-crud-single components emit a crud-action-success custom event that can be captured in the component host tag, to create handlers affecting the application. However, when actions are executed, some operations may need to occur within the component itself, such as refreshing lists.

To support this, there are two properties in the configuration object where functions can be assigned to perform actions within the component's internal context.

These methods will be executed when successful action processes are detected. To aid in identifying the actions performed, the methods receive the detail objects of the executed actions.

{
  onActionListSuccess(actionSuccessDetail) {},
  onActionSingleSuccess(actionSuccessDetail) {},
}

Action Handler config example

The following is an example of defining behavior to be executed for specific type of action (AttachGameAction) when this action is processed successfully.

{
  // other config properties
  onActionSingleSuccess(actionDetail) {
    if(actionDetail.action == 'AttachGameAction') {
      this.shadowRoot.querySelector('mj-category-relations').refreshGames();
    }
  }
}