primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 8.45 kB
JavaScript
import BaseComponent from 'primevue/basecomponent';
import BanIcon from 'primevue/icons/ban';
import StarIcon from 'primevue/icons/star';
import StarFillIcon from 'primevue/icons/starfill';
import { UniqueComponentId, DomHandler } from 'primevue/utils';
import { openBlock, createElementBlock, mergeProps, createElementVNode, renderSlot, createBlock, resolveDynamicComponent, createCommentVNode, Fragment, renderList } from 'vue';
var script = {
name: 'Rating',
extends: BaseComponent,
emits: ['update:modelValue', 'change', 'focus', 'blur'],
props: {
modelValue: {
type: Number,
default: null
},
disabled: {
type: Boolean,
default: false
},
readonly: {
type: Boolean,
default: false
},
stars: {
type: Number,
default: 5
},
cancel: {
type: Boolean,
default: true
},
onIcon: {
type: String,
default: undefined
},
offIcon: {
type: String,
default: undefined
},
cancelIcon: {
type: String,
default: undefined
}
},
data() {
return {
name: this.$attrs.name,
focusedOptionIndex: -1
};
},
watch: {
'$attrs.name': function (newValue) {
this.name = newValue || UniqueComponentId();
}
},
mounted() {
this.name = this.name || UniqueComponentId();
},
methods: {
getPTOptions(value, key) {
return this.ptm(key, {
context: {
active: value <= this.modelValue,
focused: value === this.focusedOptionIndex
}
});
},
onOptionClick(event, value) {
if (!this.readonly && !this.disabled) {
this.onOptionSelect(event, value);
const firstFocusableEl = DomHandler.getFirstFocusableElement(event.currentTarget);
firstFocusableEl && DomHandler.focus(firstFocusableEl);
}
},
onFocus(event, value) {
this.focusedOptionIndex = value;
this.$emit('focus', event);
},
onBlur(event) {
this.focusedOptionIndex = -1;
this.$emit('blur', event);
},
onChange(event, value) {
this.onOptionSelect(event, value);
},
onOptionSelect(event, value) {
this.focusedOptionIndex = value;
this.updateModel(event, value || null);
},
updateModel(event, value) {
this.$emit('update:modelValue', value);
this.$emit('change', { originalEvent: event, value });
},
cancelAriaLabel() {
return this.$primevue.config.locale.clear;
},
starAriaLabel(value) {
return value === 1 ? this.$primevue.config.locale.aria.star : this.$primevue.config.locale.aria.stars.replace(/{star}/g, value);
}
},
computed: {
containerClass() {
return [
'p-rating',
{
'p-readonly': this.readonly,
'p-disabled': this.disabled
}
];
}
},
components: {
StarFillIcon: StarFillIcon,
StarIcon: StarIcon,
BanIcon: BanIcon
}
};
const _hoisted_1 = ["name", "checked", "disabled", "readonly", "aria-label"];
const _hoisted_2 = ["onClick"];
const _hoisted_3 = ["value", "name", "checked", "disabled", "readonly", "aria-label", "onFocus", "onChange"];
function render(_ctx, _cache, $props, $setup, $data, $options) {
return (openBlock(), createElementBlock("div", mergeProps({ class: $options.containerClass }, _ctx.ptm('root')), [
($props.cancel)
? (openBlock(), createElementBlock("div", mergeProps({
key: 0,
class: ['p-rating-item p-rating-cancel-item', { 'p-focus': $data.focusedOptionIndex === 0 }],
onClick: _cache[3] || (_cache[3] = $event => ($options.onOptionClick($event, 0)))
}, _ctx.ptm('cancelItem')), [
createElementVNode("span", mergeProps({ class: "p-hidden-accessible" }, _ctx.ptm('hiddenCancelInputWrapper')), [
createElementVNode("input", mergeProps({
type: "radio",
value: "0",
name: $data.name,
checked: $props.modelValue === 0,
disabled: $props.disabled,
readonly: $props.readonly,
"aria-label": $options.cancelAriaLabel(),
onFocus: _cache[0] || (_cache[0] = $event => ($options.onFocus($event, 0))),
onBlur: _cache[1] || (_cache[1] = (...args) => ($options.onBlur && $options.onBlur(...args))),
onChange: _cache[2] || (_cache[2] = $event => ($options.onChange($event, 0)))
}, _ctx.ptm('hiddenCancelInput')), null, 16, _hoisted_1)
], 16),
renderSlot(_ctx.$slots, "cancelicon", {}, () => [
(openBlock(), createBlock(resolveDynamicComponent($props.cancelIcon ? 'span' : 'BanIcon'), mergeProps({
class: ['p-rating-icon p-rating-cancel', $props.cancelIcon]
}, _ctx.ptm('cancelIcon')), null, 16, ["class"]))
])
], 16))
: createCommentVNode("", true),
(openBlock(true), createElementBlock(Fragment, null, renderList($props.stars, (value) => {
return (openBlock(), createElementBlock("div", mergeProps({
key: value,
class: ['p-rating-item', { 'p-rating-item-active': value <= $props.modelValue, 'p-focus': value === $data.focusedOptionIndex }],
onClick: $event => ($options.onOptionClick($event, value))
}, $options.getPTOptions(value, 'item')), [
createElementVNode("span", mergeProps({ class: "p-hidden-accessible" }, _ctx.ptm('hiddenItemInputWrapper')), [
createElementVNode("input", mergeProps({
type: "radio",
value: value,
name: $data.name,
checked: $props.modelValue === value,
disabled: $props.disabled,
readonly: $props.readonly,
"aria-label": $options.starAriaLabel(value),
onFocus: $event => ($options.onFocus($event, value)),
onBlur: _cache[4] || (_cache[4] = (...args) => ($options.onBlur && $options.onBlur(...args))),
onChange: $event => ($options.onChange($event, value))
}, _ctx.ptm('hiddenItemInput')), null, 16, _hoisted_3)
], 16),
(value <= $props.modelValue)
? renderSlot(_ctx.$slots, "onicon", {
key: 0,
value: value
}, () => [
(openBlock(), createBlock(resolveDynamicComponent($props.onIcon ? 'span' : 'StarFillIcon'), mergeProps({
class: ['p-rating-icon', $props.onIcon]
}, _ctx.ptm('onIcon')), null, 16, ["class"]))
])
: renderSlot(_ctx.$slots, "officon", {
key: 1,
value: value
}, () => [
(openBlock(), createBlock(resolveDynamicComponent($props.offIcon ? 'span' : 'StarIcon'), mergeProps({
class: ['p-rating-icon', $props.offIcon]
}, _ctx.ptm('offIcon')), null, 16, ["class"]))
])
], 16, _hoisted_2))
}), 128))
], 16))
}
function styleInject(css, ref) {
if ( ref === void 0 ) ref = {};
var insertAt = ref.insertAt;
if (!css || typeof document === 'undefined') { return; }
var head = document.head || document.getElementsByTagName('head')[0];
var style = document.createElement('style');
style.type = 'text/css';
if (insertAt === 'top') {
if (head.firstChild) {
head.insertBefore(style, head.firstChild);
} else {
head.appendChild(style);
}
} else {
head.appendChild(style);
}
if (style.styleSheet) {
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
}
var css_248z = "\n.p-rating {\n position: relative;\n display: flex;\n align-items: center;\n}\n.p-rating-item {\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n}\n.p-rating.p-readonly .p-rating-item {\n cursor: default;\n}\n";
styleInject(css_248z);
script.render = render;
export { script as default };