shoelace/src/components/progress-bar/progress-bar.ts

75 wiersze
2.3 KiB
TypeScript

import { html, LitElement } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { styleMap } from 'lit/directives/style-map.js';
import { LocalizeController } from '~/utilities/localize';
import styles from './progress-bar.styles';
/**
* @since 2.0
* @status stable
*
* @slot - A label to show inside the indicator.
*
* @csspart base - The component's internal wrapper.
* @csspart indicator - The progress bar indicator.
* @csspart label - The progress bar label.
*
* @cssproperty --height - The progress bar's height.
* @cssproperty --track-color - The track color.
* @cssproperty --indicator-color - The indicator color.
* @cssproperty --label-color - The label color.
*/
@customElement('sl-progress-bar')
export default class SlProgressBar extends LitElement {
static styles = styles;
private readonly localize = new LocalizeController(this);
/** The current progress, 0 to 100. */
@property({ type: Number, reflect: true }) value = 0;
/** When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state. */
@property({ type: Boolean, reflect: true }) indeterminate = false;
/** A custom label for the progress bar's aria label. */
@property() label = '';
/** The locale to render the component in. */
@property() lang: string;
render() {
return html`
<div
part="base"
class=${classMap({
'progress-bar': true,
'progress-bar--indeterminate': this.indeterminate
})}
role="progressbar"
title=${ifDefined(this.title)}
aria-label=${this.label.length > 0 ? this.label : this.localize.term('progress')}
aria-valuemin="0"
aria-valuemax="100"
aria-valuenow=${this.indeterminate ? 0 : this.value}
>
<div part="indicator" class="progress-bar__indicator" style=${styleMap({ width: `${this.value}%` })}>
${!this.indeterminate
? html`
<span part="label" class="progress-bar__label">
<slot></slot>
</span>
`
: ''}
</div>
</div>
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-progress-bar': SlProgressBar;
}
}