shoelace/src/components/format-bytes/format-bytes.ts

36 wiersze
875 B
TypeScript
Czysty Zwykły widok Historia

import { LitElement } from 'lit';
2021-05-27 21:00:43 +00:00
import { customElement, property } from 'lit/decorators.js';
import { formatBytes } from '~/internal/number';
import { LocalizeController } from '~/utilities/localize';
2021-02-26 14:09:13 +00:00
/**
* @since 2.0
* @status stable
*/
2021-03-18 13:04:23 +00:00
@customElement('sl-format-bytes')
2021-03-09 00:14:32 +00:00
export default class SlFormatBytes extends LitElement {
private readonly localize = new LocalizeController(this);
2021-02-26 14:09:13 +00:00
/** The number to format in bytes. */
2021-07-01 00:04:46 +00:00
@property({ type: Number }) value = 0;
2021-02-26 14:09:13 +00:00
/** The unit to display. */
2021-03-06 17:01:39 +00:00
@property() unit: 'bytes' | 'bits' = 'bytes';
2021-02-26 14:09:13 +00:00
/** The locale to use when formatting the number. */
2021-12-02 15:29:04 +00:00
@property() lang: string;
2021-02-26 14:09:13 +00:00
render() {
return formatBytes(this.value, {
unit: this.unit,
formatter: num => this.localize.number(num)
2021-02-26 14:09:13 +00:00
});
}
}
2021-03-12 14:09:08 +00:00
declare global {
interface HTMLElementTagNameMap {
'sl-format-bytes': SlFormatBytes;
}
}