UNPKG

@vaadin/grid

Version:

A free, flexible and high-quality Web Component for showing large amounts of tabular data

82 lines (76 loc) 2.57 kB
/** * @license * Copyright (c) 2016 - 2026 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { html, LitElement } from 'lit'; import { defineCustomElement } from '@vaadin/component-base/src/define.js'; import { DirMixin } from '@vaadin/component-base/src/dir-mixin.js'; import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js'; import { ThemableMixin } from '@vaadin/vaadin-themable-mixin'; import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js'; import { gridSorterStyles } from './styles/vaadin-grid-sorter-base-styles.js'; import { GridSorterMixin } from './vaadin-grid-sorter-mixin.js'; /** * `<vaadin-grid-sorter>` is a helper element for the `<vaadin-grid>` that provides out-of-the-box UI controls, * visual feedback, and handlers for sorting the grid data. * * #### Example: * ```html * <vaadin-grid-column id="column"></vaadin-grid-column> * ``` * ```js * const column = document.querySelector('#column'); * column.renderer = (root, column, model) => { * let sorter = root.firstElementChild; * if (!sorter) { * sorter = document.createElement('vaadin-grid-sorter'); * root.appendChild(sorter); * } * sorter.path = 'name.first'; * }; * ``` * * ### Styling * * The following shadow DOM parts are available for styling: * * Part name | Description * ----------------|---------------- * `content` | The slotted content wrapper * `indicators` | The internal sorter indicators. * `order` | The internal sorter order * * The following state attributes are available for styling: * * Attribute | Description * -------------|--------------------------- * `direction` | Sort direction of a sorter * * @fires {CustomEvent} direction-changed - Fired when the `direction` property changes. * @fires {CustomEvent} sorter-changed - Fired when the `path` or `direction` property changes. * * @customElement vaadin-grid-sorter * @extends HTMLElement */ class GridSorter extends GridSorterMixin(ThemableMixin(DirMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) { static get is() { return 'vaadin-grid-sorter'; } static get styles() { return gridSorterStyles; } /** @protected */ render() { return html` <div part="content"> <slot></slot> </div> <div part="indicators"> <span part="order">${this._getDisplayOrder(this._order)}</span> </div> `; } } defineCustomElement(GridSorter); export { GridSorter };