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

51 wiersze
1.5 KiB
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';
2022-03-24 11:48:03 +00:00
import { LocalizeController } from '~/utilities/localize';
2021-02-26 14:09:13 +00:00
/**
2022-01-27 13:56:51 +00:00
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. */
2022-01-27 13:56:51 +00:00
@property() unit: 'byte' | 'bit' = 'byte';
/** Determines how to display the result, e.g. "100 bytes", "100 b", or "100b". */
@property() display: 'long' | 'short' | 'narrow' = 'short';
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() {
2022-01-27 13:56:51 +00:00
if (isNaN(this.value)) {
return '';
}
const bitPrefixes = ['', 'kilo', 'mega', 'giga', 'tera']; // petabit isn't a supported unit
const bytePrefixes = ['', 'kilo', 'mega', 'giga', 'tera', 'peta'];
const prefix = this.unit === 'bit' ? bitPrefixes : bytePrefixes;
const index = Math.max(0, Math.min(Math.floor(Math.log10(this.value) / 3), prefix.length - 1));
const unit = prefix[index] + this.unit;
const valueToFormat = parseFloat((this.value / Math.pow(1000, index)).toPrecision(3));
return this.localize.number(valueToFormat, {
style: 'unit',
unit,
unitDisplay: this.display
2021-02-26 14:09:13 +00:00
});
}
}
2021-03-12 14:09:08 +00:00
declare global {
interface HTMLElementTagNameMap {
'sl-format-bytes': SlFormatBytes;
}
}