shoelace/src/components/rating/rating.ts

265 wiersze
8.0 KiB
TypeScript
Czysty Zwykły widok Historia

2022-08-17 15:37:37 +00:00
import { html } from 'lit';
2021-05-27 21:00:43 +00:00
import { customElement, property, query, state } from 'lit/decorators.js';
2021-09-29 12:40:26 +00:00
import { classMap } from 'lit/directives/class-map.js';
import { styleMap } from 'lit/directives/style-map.js';
import { unsafeHTML } from 'lit/directives/unsafe-html.js';
2022-03-24 12:01:09 +00:00
import { clamp } from '../../internal/math';
2022-08-17 15:37:37 +00:00
import ShoelaceElement from '../../internal/shoelace-element';
2022-03-24 12:01:09 +00:00
import { watch } from '../../internal/watch';
2022-06-07 17:09:14 +00:00
import { LocalizeController } from '../../utilities/localize';
2022-08-08 14:15:41 +00:00
import '../icon/icon';
2021-07-10 00:45:44 +00:00
import styles from './rating.styles';
import type { CSSResultGroup } from 'lit';
2021-07-12 14:36:06 +00:00
2021-02-26 14:09:13 +00:00
/**
* @since 2.0
* @status stable
*
* @dependency sl-icon
*
2021-06-25 20:25:46 +00:00
* @event sl-change - Emitted when the rating's value changes.
*
2022-03-09 20:54:18 +00:00
* @csspart base - The component's internal wrapper.
*
2021-06-25 20:25:46 +00:00
* @cssproperty --symbol-color - The inactive color for symbols.
* @cssproperty --symbol-color-active - The active color for symbols.
* @cssproperty --symbol-size - The size of symbols.
* @cssproperty --symbol-spacing - The spacing to use around symbols.
2021-02-26 14:09:13 +00:00
*/
2021-03-18 13:04:23 +00:00
@customElement('sl-rating')
2022-08-17 15:37:37 +00:00
export default class SlRating extends ShoelaceElement {
static styles: CSSResultGroup = styles;
2021-03-06 17:01:39 +00:00
@query('.rating') rating: HTMLElement;
2021-02-26 14:09:13 +00:00
2022-06-07 17:09:14 +00:00
private readonly localize = new LocalizeController(this);
@state() private hoverValue = 0;
@state() private isHovering = false;
2021-02-26 14:09:13 +00:00
2022-08-11 13:17:34 +00:00
/** A label to describe the rating to assistive devices. */
@property() label = '';
2021-02-26 14:09:13 +00:00
/** The current rating. */
2021-07-01 00:04:46 +00:00
@property({ type: Number }) value = 0;
2021-02-26 14:09:13 +00:00
/** The highest rating to show. */
2021-07-01 00:04:46 +00:00
@property({ type: Number }) max = 5;
2021-02-26 14:09:13 +00:00
/** The minimum increment value allowed by the control. */
2021-07-01 00:04:46 +00:00
@property({ type: Number }) precision = 1;
2021-02-26 14:09:13 +00:00
/** Makes the rating readonly. */
2021-07-01 00:04:46 +00:00
@property({ type: Boolean, reflect: true }) readonly = false;
2021-02-26 14:09:13 +00:00
/** Disables the rating. */
2021-07-01 00:04:46 +00:00
@property({ type: Boolean, reflect: true }) disabled = false;
2021-02-26 14:09:13 +00:00
/** The name of the icon to display as the symbol. */
@property() getSymbol: (value: number) => string = () => '<sl-icon name="star-fill" library="system"></sl-icon>';
2021-03-06 17:01:39 +00:00
2021-02-26 14:09:13 +00:00
/** Sets focus on the rating. */
focus(options?: FocusOptions) {
2021-02-26 14:09:13 +00:00
this.rating.focus(options);
}
/** Removes focus from the rating. */
blur() {
2021-02-26 14:09:13 +00:00
this.rating.blur();
}
getValueFromMousePosition(event: MouseEvent) {
return this.getValueFromXCoordinate(event.clientX);
}
getValueFromTouchPosition(event: TouchEvent) {
return this.getValueFromXCoordinate(event.touches[0].clientX);
}
getValueFromXCoordinate(coordinate: number) {
2022-06-07 17:09:14 +00:00
const isRtl = this.localize.dir() === 'rtl';
const { left, right, width } = this.rating.getBoundingClientRect();
const value = isRtl
? this.roundToPrecision(((right - coordinate) / width) * this.max, this.precision)
: this.roundToPrecision(((coordinate - left) / width) * this.max, this.precision);
return clamp(value, 0, this.max);
2021-02-26 14:09:13 +00:00
}
handleClick(event: MouseEvent) {
this.setValue(this.getValueFromMousePosition(event));
}
setValue(newValue: number) {
2021-02-26 14:09:13 +00:00
if (this.disabled || this.readonly) {
return;
}
this.value = newValue === this.value ? 0 : newValue;
this.isHovering = false;
}
handleKeyDown(event: KeyboardEvent) {
2022-06-07 17:09:14 +00:00
const isLtr = this.localize.dir() === 'ltr';
const isRtl = this.localize.dir() === 'rtl';
2021-02-26 14:09:13 +00:00
if (this.disabled || this.readonly) {
return;
}
2022-08-11 13:17:34 +00:00
if (event.key === 'ArrowDown' || (isLtr && event.key === 'ArrowLeft') || (isRtl && event.key === 'ArrowRight')) {
2021-02-26 14:09:13 +00:00
const decrement = event.shiftKey ? 1 : this.precision;
this.value = Math.max(0, this.value - decrement);
event.preventDefault();
}
2022-08-11 13:17:34 +00:00
if (event.key === 'ArrowUp' || (isLtr && event.key === 'ArrowRight') || (isRtl && event.key === 'ArrowLeft')) {
2021-02-26 14:09:13 +00:00
const increment = event.shiftKey ? 1 : this.precision;
this.value = Math.min(this.max, this.value + increment);
event.preventDefault();
}
if (event.key === 'Home') {
this.value = 0;
event.preventDefault();
}
if (event.key === 'End') {
this.value = this.max;
event.preventDefault();
}
}
handleMouseEnter() {
this.isHovering = true;
}
handleMouseMove(event: MouseEvent) {
this.hoverValue = this.getValueFromMousePosition(event);
}
2021-02-26 14:09:13 +00:00
handleMouseLeave() {
this.isHovering = false;
}
handleTouchStart(event: TouchEvent) {
this.hoverValue = this.getValueFromTouchPosition(event);
// Prevent scrolling when touch is initiated
event.preventDefault();
2021-02-26 14:09:13 +00:00
}
handleTouchMove(event: TouchEvent) {
this.isHovering = true;
this.hoverValue = this.getValueFromTouchPosition(event);
}
handleTouchEnd(event: TouchEvent) {
this.isHovering = false;
this.setValue(this.hoverValue);
// Prevent click on mobile devices
event.preventDefault();
}
2021-06-15 13:26:35 +00:00
@watch('value', { waitUntilFirstUpdate: true })
2021-03-06 19:39:48 +00:00
handleValueChange() {
2022-09-16 20:21:40 +00:00
this.emit('sl-change');
2021-03-06 19:39:48 +00:00
}
2021-02-26 14:09:13 +00:00
roundToPrecision(numberToRound: number, precision = 0.5) {
const multiplier = 1 / precision;
return Math.ceil(numberToRound * multiplier) / multiplier;
}
render() {
2022-06-07 17:09:14 +00:00
const isRtl = this.localize.dir() === 'rtl';
2021-02-26 14:09:13 +00:00
const counter = Array.from(Array(this.max).keys());
let displayValue = 0;
if (this.disabled || this.readonly) {
displayValue = this.value;
} else {
displayValue = this.isHovering ? this.hoverValue : this.value;
}
return html`
<div
part="base"
class=${classMap({
rating: true,
'rating--readonly': this.readonly,
2022-06-07 17:09:14 +00:00
'rating--disabled': this.disabled,
'rating--rtl': isRtl
2021-02-26 14:09:13 +00:00
})}
2022-08-11 13:17:34 +00:00
role="slider"
aria-label=${this.label}
2021-02-26 14:09:13 +00:00
aria-disabled=${this.disabled ? 'true' : 'false'}
aria-readonly=${this.readonly ? 'true' : 'false'}
aria-valuenow=${this.value}
2021-02-26 14:09:13 +00:00
aria-valuemin=${0}
aria-valuemax=${this.max}
tabindex=${this.disabled ? '-1' : '0'}
2021-03-06 17:01:39 +00:00
@click=${this.handleClick}
@keydown=${this.handleKeyDown}
@mouseenter=${this.handleMouseEnter}
@touchstart=${this.handleTouchStart}
2021-03-06 17:01:39 +00:00
@mouseleave=${this.handleMouseLeave}
@touchend=${this.handleTouchEnd}
2021-03-06 17:01:39 +00:00
@mousemove=${this.handleMouseMove}
@touchmove=${this.handleTouchMove}
2021-02-26 14:09:13 +00:00
>
<span class="rating__symbols rating__symbols--inactive">
${counter.map(index => {
// Users can click the current value to clear the rating. When this happens, we set this.isHovering to
// false to prevent the hover state from confusing them as they move the mouse out of the control. This
// extra mouseenter will reinstate it if they happen to mouse over an adjacent symbol.
return html`
<span
class=${classMap({
rating__symbol: true,
'rating__symbol--hover': this.isHovering && Math.ceil(displayValue) === index + 1
})}
role="presentation"
2021-07-07 12:13:07 +00:00
@mouseenter=${this.handleMouseEnter}
2021-02-26 14:09:13 +00:00
>
2021-03-06 17:01:39 +00:00
${unsafeHTML(this.getSymbol(index + 1))}
2021-02-26 14:09:13 +00:00
</span>
`;
})}
</span>
<span class="rating__symbols rating__symbols--indicator">
${counter.map(index => {
return html`
<span
class=${classMap({
rating__symbol: true,
'rating__symbol--hover': this.isHovering && Math.ceil(displayValue) === index + 1
})}
style=${styleMap({
clipPath:
2022-06-07 17:09:14 +00:00
displayValue > index + 1
? 'none'
: isRtl
? `inset(0 0 0 ${100 - ((displayValue - index) / 1) * 100}%)`
: `inset(0 ${100 - ((displayValue - index) / 1) * 100}% 0 0)`
2021-02-26 14:09:13 +00:00
})}
role="presentation"
>
2021-03-06 17:01:39 +00:00
${unsafeHTML(this.getSymbol(index + 1))}
2021-02-26 14:09:13 +00:00
</span>
`;
})}
</span>
</div>
`;
}
}
2021-03-12 14:09:08 +00:00
declare global {
interface HTMLElementTagNameMap {
'sl-rating': SlRating;
}
}