mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-27 20:06:36 +08:00
294 lines
7.0 KiB
TypeScript
294 lines
7.0 KiB
TypeScript
import { computed, defineComponent, ref, type ExtractPropTypes } from 'vue';
|
|
|
|
// Utils
|
|
import {
|
|
addUnit,
|
|
truthProp,
|
|
numericProp,
|
|
preventDefault,
|
|
makeStringProp,
|
|
makeNumberProp,
|
|
makeNumericProp,
|
|
createNamespace,
|
|
} from '../utils';
|
|
|
|
// Composables
|
|
import { useRect, useCustomFieldValue, useEventListener } from '@vant/use';
|
|
import { useRefs } from '../composables/use-refs';
|
|
import { useTouch } from '../composables/use-touch';
|
|
|
|
// Components
|
|
import { Icon } from '../icon';
|
|
|
|
const [name, bem] = createNamespace('rate');
|
|
|
|
type RateStatus = 'full' | 'half' | 'void';
|
|
|
|
type RateListItem = {
|
|
value: number;
|
|
status: RateStatus;
|
|
};
|
|
|
|
function getRateStatus(
|
|
value: number,
|
|
index: number,
|
|
allowHalf: boolean,
|
|
readonly: boolean
|
|
): RateListItem {
|
|
if (value >= index) {
|
|
return { status: 'full', value: 1 };
|
|
}
|
|
|
|
if (value + 0.5 >= index && allowHalf && !readonly) {
|
|
return { status: 'half', value: 0.5 };
|
|
}
|
|
|
|
if (value + 1 >= index && allowHalf && readonly) {
|
|
const cardinal = 10 ** 10;
|
|
return {
|
|
status: 'half',
|
|
value: Math.round((value - index + 1) * cardinal) / cardinal,
|
|
};
|
|
}
|
|
|
|
return { status: 'void', value: 0 };
|
|
}
|
|
|
|
const rateProps = {
|
|
size: numericProp,
|
|
icon: makeStringProp('star'),
|
|
color: String,
|
|
count: makeNumericProp(5),
|
|
gutter: numericProp,
|
|
readonly: Boolean,
|
|
disabled: Boolean,
|
|
voidIcon: makeStringProp('star-o'),
|
|
allowHalf: Boolean,
|
|
voidColor: String,
|
|
touchable: truthProp,
|
|
iconPrefix: String,
|
|
modelValue: makeNumberProp(0),
|
|
disabledColor: String,
|
|
};
|
|
|
|
export type RateProps = ExtractPropTypes<typeof rateProps>;
|
|
|
|
export default defineComponent({
|
|
name,
|
|
|
|
props: rateProps,
|
|
|
|
emits: ['change', 'update:modelValue'],
|
|
|
|
setup(props, { emit }) {
|
|
const touch = useTouch();
|
|
const [itemRefs, setItemRefs] = useRefs();
|
|
const groupRef = ref<Element>();
|
|
|
|
const untouchable = () =>
|
|
props.readonly || props.disabled || !props.touchable;
|
|
|
|
const list = computed<RateListItem[]>(() =>
|
|
Array(+props.count)
|
|
.fill('')
|
|
.map((_, i) =>
|
|
getRateStatus(
|
|
props.modelValue,
|
|
i + 1,
|
|
props.allowHalf,
|
|
props.readonly
|
|
)
|
|
)
|
|
);
|
|
|
|
let ranges: Array<{
|
|
left: number;
|
|
top: number;
|
|
height: number;
|
|
score: number;
|
|
}>;
|
|
|
|
let groupRefRect: DOMRect;
|
|
let minRectTop = Number.MAX_SAFE_INTEGER;
|
|
let maxRectTop = Number.MIN_SAFE_INTEGER;
|
|
|
|
const updateRanges = () => {
|
|
groupRefRect = useRect(groupRef);
|
|
|
|
const rects = itemRefs.value.map(useRect);
|
|
|
|
ranges = [];
|
|
rects.forEach((rect, index) => {
|
|
minRectTop = Math.min(rect.top, minRectTop);
|
|
maxRectTop = Math.max(rect.top, maxRectTop);
|
|
|
|
if (props.allowHalf) {
|
|
ranges.push(
|
|
{
|
|
score: index + 0.5,
|
|
left: rect.left,
|
|
top: rect.top,
|
|
height: rect.height,
|
|
},
|
|
{
|
|
score: index + 1,
|
|
left: rect.left + rect.width / 2,
|
|
top: rect.top,
|
|
height: rect.height,
|
|
}
|
|
);
|
|
} else {
|
|
ranges.push({
|
|
score: index + 1,
|
|
left: rect.left,
|
|
top: rect.top,
|
|
height: rect.height,
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
const getScoreByPosition = (x: number, y: number) => {
|
|
for (let i = ranges.length - 1; i > 0; i--) {
|
|
if (y >= groupRefRect.top && y <= groupRefRect.bottom) {
|
|
if (
|
|
x > ranges[i].left &&
|
|
y >= ranges[i].top &&
|
|
y <= ranges[i].top + ranges[i].height
|
|
) {
|
|
return ranges[i].score;
|
|
}
|
|
} else {
|
|
const curTop = y < groupRefRect.top ? minRectTop : maxRectTop;
|
|
|
|
if (x > ranges[i].left && ranges[i].top === curTop) {
|
|
return ranges[i].score;
|
|
}
|
|
}
|
|
}
|
|
return props.allowHalf ? 0.5 : 1;
|
|
};
|
|
|
|
const select = (index: number) => {
|
|
if (!props.disabled && !props.readonly && index !== props.modelValue) {
|
|
emit('update:modelValue', index);
|
|
emit('change', index);
|
|
}
|
|
};
|
|
|
|
const onTouchStart = (event: TouchEvent) => {
|
|
if (untouchable()) {
|
|
return;
|
|
}
|
|
|
|
touch.start(event);
|
|
updateRanges();
|
|
};
|
|
|
|
const onTouchMove = (event: TouchEvent) => {
|
|
if (untouchable()) {
|
|
return;
|
|
}
|
|
|
|
touch.move(event);
|
|
|
|
if (touch.isHorizontal()) {
|
|
const { clientX, clientY } = event.touches[0];
|
|
preventDefault(event);
|
|
select(getScoreByPosition(clientX, clientY));
|
|
}
|
|
};
|
|
|
|
const renderStar = (item: RateListItem, index: number) => {
|
|
const {
|
|
icon,
|
|
size,
|
|
color,
|
|
count,
|
|
gutter,
|
|
voidIcon,
|
|
disabled,
|
|
voidColor,
|
|
allowHalf,
|
|
iconPrefix,
|
|
disabledColor,
|
|
} = props;
|
|
const score = index + 1;
|
|
const isFull = item.status === 'full';
|
|
const isVoid = item.status === 'void';
|
|
const renderHalf = allowHalf && item.value > 0 && item.value < 1;
|
|
|
|
let style;
|
|
if (gutter && score !== +count) {
|
|
style = {
|
|
paddingRight: addUnit(gutter),
|
|
};
|
|
}
|
|
|
|
const onClickItem = (event: MouseEvent) => {
|
|
updateRanges();
|
|
select(
|
|
allowHalf ? getScoreByPosition(event.clientX, event.clientY) : score
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
key={index}
|
|
ref={setItemRefs(index)}
|
|
role="radio"
|
|
style={style}
|
|
class={bem('item')}
|
|
tabindex={disabled ? undefined : 0}
|
|
aria-setsize={count}
|
|
aria-posinset={score}
|
|
aria-checked={!isVoid}
|
|
onClick={onClickItem}
|
|
>
|
|
<Icon
|
|
size={size}
|
|
name={isFull ? icon : voidIcon}
|
|
class={bem('icon', { disabled, full: isFull })}
|
|
color={disabled ? disabledColor : isFull ? color : voidColor}
|
|
classPrefix={iconPrefix}
|
|
/>
|
|
{renderHalf && (
|
|
<Icon
|
|
size={size}
|
|
style={{ width: item.value + 'em' }}
|
|
name={isVoid ? voidIcon : icon}
|
|
class={bem('icon', ['half', { disabled, full: !isVoid }])}
|
|
color={disabled ? disabledColor : isVoid ? voidColor : color}
|
|
classPrefix={iconPrefix}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
useCustomFieldValue(() => props.modelValue);
|
|
|
|
// useEventListener will set passive to `false` to eliminate the warning of Chrome
|
|
useEventListener('touchmove', onTouchMove, {
|
|
target: groupRef,
|
|
});
|
|
|
|
return () => (
|
|
<div
|
|
ref={groupRef}
|
|
role="radiogroup"
|
|
class={bem({
|
|
readonly: props.readonly,
|
|
disabled: props.disabled,
|
|
})}
|
|
tabindex={props.disabled ? undefined : 0}
|
|
aria-disabled={props.disabled}
|
|
aria-readonly={props.readonly}
|
|
onTouchstartPassive={onTouchStart}
|
|
>
|
|
{list.value.map(renderStar)}
|
|
</div>
|
|
);
|
|
},
|
|
});
|