103 lines
2.2 KiB
Vue
103 lines
2.2 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import { useStyle } from 'primevue/usestyle';
|
|
|
|
const styles = `
|
|
.p-rating {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.p-rating-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.p-rating.p-readonly .p-rating-item {
|
|
cursor: default;
|
|
}
|
|
`;
|
|
|
|
const classes = {
|
|
root: ({ props }) => [
|
|
'p-rating',
|
|
{
|
|
'p-readonly': props.readonly,
|
|
'p-disabled': props.disabled
|
|
}
|
|
],
|
|
cancelItem: ({ instance }) => [
|
|
'p-rating-item p-rating-cancel-item',
|
|
{
|
|
'p-focus': instance.focusedOptionIndex === 0
|
|
}
|
|
],
|
|
hiddenCancelInputWrapper: 'p-hidden-accessible',
|
|
cancelIcon: 'p-rating-icon p-rating-cancel',
|
|
item: ({ instance, props, value }) => [
|
|
'p-rating-item',
|
|
{
|
|
'p-rating-item-active': value <= props.modelValue,
|
|
'p-focus': value === instance.focusedOptionIndex
|
|
}
|
|
],
|
|
hiddenItemInputWrapper: 'p-hidden-accessible',
|
|
onIcon: 'p-rating-icon',
|
|
offIcon: 'p-rating-icon'
|
|
};
|
|
|
|
const { load: loadStyle, unload: unloadStyle } = useStyle(styles, { id: 'primevue_rating_style', manual: true });
|
|
|
|
export default {
|
|
name: 'BaseRating',
|
|
extends: BaseComponent,
|
|
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
|
|
}
|
|
},
|
|
css: {
|
|
classes
|
|
},
|
|
watch: {
|
|
isUnstyled: {
|
|
immediate: true,
|
|
handler(newValue) {
|
|
!newValue && loadStyle();
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|