UNPKG

@furo/ui5

Version:
106 lines (90 loc) 2.27 kB
import { LitElement, html, css } from 'lit'; import { Env } from '@furo/framework/src/furo.js'; /** * `cell-float` * The cell-float component displays a FieldNode of type `float` in read only mode. * * Every cell-xxx component should implement the following API: * - function: bindData(fieldNode){...} * * @summary cell display renderer for `float` * @element cell float */ export class CellFloat extends LitElement { constructor() { super(); this._displayValue = ''; } static get styles() { // language=CSS return css` :host { display: block; text-align: right; white-space: nowrap; } :host([hidden]) { display: none; } :host([disabled]) { opacity: var(--_ui5_input_disabled_opacity, 0.4); } :host([data-size*='size-l']), :host([data-size*='size-xl']) { padding-top: 0.5rem; } :host([value-state='Positive']), :host([value-state='Success']) { color: var(--sapPositiveColor, #107e3e); } :host([value-state='Informative']), :host([value-state='Information']) { color: var(--sapInformativeColor, #0a6ed1); } :host([value-state='Negative']), :host([value-state='Error']) { color: var(--sapNegativeColor, #b00); } :host([value-state='Critical']), :host([value-state='Warning']) { color: var(--sapCrticalColor, #e9730c); } `; } /** * Binds a field node to the component * @param {FieldNode} fieldNode */ bindData(fieldNode) { this._field = fieldNode; if (this._field) { this._field.addEventListener('field-value-changed', () => { this._formatCell(); }); this._formatCell(); } } /** * * @private */ _formatCell() { const displayValue = new Intl.NumberFormat(Env.locale, {}).format( this._field ); if (displayValue !== 'NaN') { this._displayValue = displayValue; this.requestUpdate(); } } /** * render function * @private * @returns {TemplateResult|TemplateResult} */ render() { // language=HTML return html` ${this._displayValue} `; } } window.customElements.define('cell-float', CellFloat);