View Source PyroComponents.Components.DataTable (PyroComponents v0.1.1)

Tooling and components for rendering data tables.

Overridable Component Attributes

You can customize the components in this module by configuring overrides.

The components in this module support the following overridable attributes:

  • data_table/1

    • :class :css_classes
    • :header_class :css_classes
    • :body_class :css_classes
    • :row_class :css_classes
    • :row_actions_class :css_classes
    • :footer_class :css_classes
    • :footer_wrapper_class :css_classes
  • th/1

    • :class :css_classes
    • :btn_class :css_classes
  • cell/1

    • :class :css_classes
  • sort_icon/1

    • :sort_icon_name :string
    • :class :css_classes
    • :index_class :css_classes

Summary

Components

A complex data table component, featuring streams, multi-column sorting and pagination.

Functions

Stringifies the columns to display for storage in a url param.

Stringifies the column sorting for storage in a url param.

Toggles the column sorting.

Components

A complex data table component, featuring streams, multi-column sorting and pagination.

It is a functional component, so all emitted events are to be handled by the parent LiveView.

Attributes

  • overrides (:list) - Manually set the overrides for this component (instead of config/default). Defaults to nil.
  • id (:string) (required)
  • row_id (:any) - the function for generating the row id. Defaults to nil.
  • row_item (:any) - the function for mapping each row before calling the :col and :action slots. Defaults to &Function.identity/1.
  • rows (:list) (required)
  • page_limit_options (:list) - Defaults to [10, 25, 50, 100, 250, 500, 1000].
  • page (:map) - Defaults to nil.
  • sort (:list) (required)
  • class (:any) - (overridable, :css_classes).
  • header_class (:any) - (overridable, :css_classes).
  • body_class (:any) - (overridable, :css_classes).
  • row_class (:any) - (overridable, :css_classes).
  • row_actions_class (:any) - (overridable, :css_classes).
  • footer_class (:any) - (overridable, :css_classes).
  • footer_wrapper_class (:any) - (overridable, :css_classes).

Slots

  • col (required) - Accepts attributes:
    • label (:string)
    • class (:string)
    • cell_class (:string)
    • sort_key (:atom)
  • header_action - the slot for showing user actions in the last table column header.
  • action - the slot for showing user actions in the last table column.

Functions

Stringifies the columns to display for storage in a url param.

Stringifies the column sorting for storage in a url param.

Link to this function

toggle_sort(sort, sort_key, ctrl?, shift?)

View Source

Toggles the column sorting.