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

33 wiersze
745 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';
2021-02-26 14:09:13 +00:00
import { formatBytes } from '../../internal/number';
/**
* @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 {
2021-02-26 14:09:13 +00:00
/** The number to format in bytes. */
2021-06-28 13:23:39 +00:00
@property({ type: Number }) value: number = 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-03-06 17:01:39 +00:00
@property() locale: string;
2021-02-26 14:09:13 +00:00
render() {
return formatBytes(this.value, {
unit: this.unit,
locale: this.locale
});
}
}
2021-03-12 14:09:08 +00:00
declare global {
interface HTMLElementTagNameMap {
'sl-format-bytes': SlFormatBytes;
}
}