shoelace/src/components/tag/tag.ts

93 wiersze
2.4 KiB
TypeScript

import { LitElement, html } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { emit } from '../../internal/event';
import styles from './tag.styles';
import '../icon-button/icon-button';
/**
* @since 2.0
* @status stable
*
* @dependency sl-icon-button
*
* @slot - The tag's content.
*
* @event sl-remove - Emitted when the remove button is activated.
*
* @csspart base - The component's base wrapper.
* @csspart content - The tag content.
* @csspart remove-button - The remove button.
*/
@customElement('sl-tag')
export default class SlTag extends LitElement {
static styles = styles;
/** The tag's variant. */
@property({ reflect: true }) variant: 'primary' | 'success' | 'neutral' | 'warning' | 'danger' | 'text' = 'neutral';
/** The tag's size. */
@property({ reflect: true }) size: 'small' | 'medium' | 'large' = 'medium';
/** Draws a pill-style tag with rounded edges. */
@property({ type: Boolean, reflect: true }) pill = false;
/** Makes the tag removable. */
@property({ type: Boolean }) removable = false;
handleRemoveClick() {
emit(this, 'sl-remove');
}
render() {
return html`
<span
part="base"
class=${classMap({
tag: true,
// Types
'tag--primary': this.variant === 'primary',
'tag--success': this.variant === 'success',
'tag--neutral': this.variant === 'neutral',
'tag--warning': this.variant === 'warning',
'tag--danger': this.variant === 'danger',
'tag--text': this.variant === 'text',
// Sizes
'tag--small': this.size === 'small',
'tag--medium': this.size === 'medium',
'tag--large': this.size === 'large',
// Modifiers
'tag--pill': this.pill,
'tag--removable': this.removable
})}
>
<span part="content" class="tag__content">
<slot></slot>
</span>
${this.removable
? html`
<sl-icon-button
exportparts="base:remove-button"
name="x"
library="system"
class="tag__remove"
@click=${this.handleRemoveClick}
></sl-icon-button>
`
: ''}
</span>
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-tag': SlTag;
}
}