Mail: [email protected] Phone: +1(424)231-4091

Crud: Custom Tab Component

NexoPOS provides a quick way to create a tabbed form with custom fields, but it's also possible to render a custom vue component instead of tab content. In this scenario, you control how the fields will be displayed, which gives you more leverage to create a completely unique layout for your CRUD component.

To make your component work seamlessly with NexoPOS, you need to provide validation details for your custom tab component. Remember, that the custom component should behave as a tab that has fields. This will ensure when the form is being submitted, it's checked for data safety.

Register Custom View Component

The first step is to register your component on the global component objects: nsExtraComponents. Refer to the documentation on how to register vue component globally.

Requirement For A Seamless Integration

For the custom components to work, there are a few things that need to be provided and taken into consideration:

  • the component ns-crud-form.vue provides custom props to your component named "tab". This is the definition of the form as made in the CRUD PHP class (check the getForm method).
  • your data must include an array of errors with an empty value as defined on the data() method of your view component.
  • when the component is mounted, you should define yet if it's valid or not. You'll then emit an event "invalid" with the array of errors.
  • using the "tab" props you can access the error stored on your tab component and display it (These are the errors emitted, but as it's not recommended to mutate props, we proceed with the event emittion).

Concrete Example

Here is how your custom component tab should look like.

Emit Form Data To Parent Component

Now that the user has interacted with your custom tab component, you might want to send his data to the ns-crud-form component so it can send it to the server. The better approach here is to emit a "changed" event with the fields (an array of fields with a specific definition, we'll share that later). We'll do it as the ns-crud-form component is unable to require form data on demand. Your component is then responsible for providing this.

Let's explain what's happening here:

  1. We'll load fields from our endpoint (but it can be hardcoded as you want);
  2. We'll build the fields using the FormValidation class which is globally available on the dashboard.
  3. We'll watch changes to our fields and emit changed events to the parent component so it can merge your field data with the whole form. But do it if it's valid.

Field Structure

If you don't want to use the ns-field component but instead a custom element you created, you still need to follow the field structure if you want your form data to be submitted correctly. The form data of your component should be provided as an object of fields. Here is the structure of a field:

{
    type: 'text',
    name: 'email',
    description: 'field description',
    validation: 'required', 
    value: 'field value'
}

The most important attributes here are "name" and "value".