Files
webawesome/src/components/skeleton/skeleton.ts
2021-09-20 22:01:21 -04:00

47 lines
1.3 KiB
TypeScript

import { LitElement, html } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import { classMap } from 'lit-html/directives/class-map.js';
import styles from './skeleton.styles';
/**
* @since 2.0
* @status stable
*
* @csspart base - The component's base wrapper.
* @csspart indicator - The skeleton's indicator which is responsible for its color and animation.
*
* @cssproperty --border-radius - The skeleton's border radius.
* @cssproperty --color - The color of the skeleton.
* @cssproperty --sheen-color - The sheen color when the skeleton is in its loading state.
*/
@customElement('sl-skeleton')
export default class SlSkeleton extends LitElement {
static styles = styles;
/** Determines which effect the skeleton will use. */
@property() effect: 'pulse' | 'sheen' | 'none' = 'none';
render() {
return html`
<div
part="base"
class=${classMap({
skeleton: true,
'skeleton--pulse': this.effect === 'pulse',
'skeleton--sheen': this.effect === 'sheen'
})}
aria-busy="true"
aria-live="polite"
>
<div part="indicator" class="skeleton__indicator"></div>
</div>
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-skeleton': SlSkeleton;
}
}