Update #3965 - For Rating
parent
e63fd3fef2
commit
a6d6fd7562
|
@ -0,0 +1,102 @@
|
||||||
|
<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>
|
|
@ -168,6 +168,11 @@ export interface RatingProps {
|
||||||
* @type {RatingPassThroughOptions}
|
* @type {RatingPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pt?: RatingPassThroughOptions;
|
pt?: RatingPassThroughOptions;
|
||||||
|
/**
|
||||||
|
* When enabled, it removes component related styles in the core.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
unstyled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -177,7 +182,12 @@ export interface RatingSlots {
|
||||||
/**
|
/**
|
||||||
* Custom cancel icon template.
|
* Custom cancel icon template.
|
||||||
*/
|
*/
|
||||||
cancelicon(): VNode[];
|
cancelicon(scope: {
|
||||||
|
/**
|
||||||
|
* Style class of the icon.
|
||||||
|
*/
|
||||||
|
class: string;
|
||||||
|
}): VNode[];
|
||||||
/**
|
/**
|
||||||
* Custom on icon template.
|
* Custom on icon template.
|
||||||
* @param {Object} scope - on icon slot's params.
|
* @param {Object} scope - on icon slot's params.
|
||||||
|
@ -187,6 +197,10 @@ export interface RatingSlots {
|
||||||
* Item value
|
* Item value
|
||||||
*/
|
*/
|
||||||
value: number;
|
value: number;
|
||||||
|
/**
|
||||||
|
* Style class of the icon.
|
||||||
|
*/
|
||||||
|
class: string;
|
||||||
}): VNode[];
|
}): VNode[];
|
||||||
/**
|
/**
|
||||||
* Custom off icon template.
|
* Custom off icon template.
|
||||||
|
@ -197,6 +211,10 @@ export interface RatingSlots {
|
||||||
* Item value
|
* Item value
|
||||||
*/
|
*/
|
||||||
value: number;
|
value: number;
|
||||||
|
/**
|
||||||
|
* Style class of the icon.
|
||||||
|
*/
|
||||||
|
class: string;
|
||||||
}): VNode[];
|
}): VNode[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div :class="containerClass" v-bind="ptm('root')">
|
<div :class="cx('root')" v-bind="ptm('root')">
|
||||||
<div v-if="cancel" :class="['p-rating-item p-rating-cancel-item', { 'p-focus': focusedOptionIndex === 0 }]" @click="onOptionClick($event, 0)" v-bind="ptm('cancelItem')">
|
<div v-if="cancel" :class="cx('cancelItem')" @click="onOptionClick($event, 0)" v-bind="ptm('cancelItem')" :data-p-focused="focusedOptionIndex === 0">
|
||||||
<span class="p-hidden-accessible" v-bind="ptm('hiddenCancelInputWrapper')">
|
<span :class="cx('hiddenCancelInputWrapper')" :style="sx('hiddenAccessible', isUnstyled)" v-bind="ptm('hiddenCancelInputWrapper')" :data-p-hidden-accessible="true">
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
value="0"
|
value="0"
|
||||||
|
@ -16,13 +16,13 @@
|
||||||
v-bind="ptm('hiddenCancelInput')"
|
v-bind="ptm('hiddenCancelInput')"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
<slot name="cancelicon">
|
<slot name="cancelicon" :class="cx('cancelIcon')">
|
||||||
<component :is="cancelIcon ? 'span' : 'BanIcon'" :class="['p-rating-icon p-rating-cancel', cancelIcon]" v-bind="ptm('cancelIcon')" />
|
<component :is="cancelIcon ? 'span' : 'BanIcon'" :class="[cx('cancelIcon'), cancelIcon]" v-bind="ptm('cancelIcon')" />
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
<template v-for="value in stars" :key="value">
|
<template v-for="value in stars" :key="value">
|
||||||
<div :class="['p-rating-item', { 'p-rating-item-active': value <= modelValue, 'p-focus': value === focusedOptionIndex }]" @click="onOptionClick($event, value)" v-bind="getPTOptions(value, 'item')">
|
<div :class="cx('item', { value })" @click="onOptionClick($event, value)" v-bind="getPTOptions(value, 'item')" :data-p-active="value <= modelValue" :data-p-focused="value === focusedOptionIndex">
|
||||||
<span class="p-hidden-accessible" v-bind="ptm('hiddenItemInputWrapper')">
|
<span :class="cx('hiddenItemInputWrapper')" :style="sx('hiddenAccessible', isUnstyled)" v-bind="ptm('hiddenItemInputWrapper')" :data-p-hidden-accessible="true">
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
:value="value"
|
:value="value"
|
||||||
|
@ -37,11 +37,11 @@
|
||||||
v-bind="ptm('hiddenItemInput')"
|
v-bind="ptm('hiddenItemInput')"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
<slot v-if="value <= modelValue" name="onicon" :value="value">
|
<slot v-if="value <= modelValue" name="onicon" :value="value" :class="cx('onIcon')">
|
||||||
<component :is="onIcon ? 'span' : 'StarFillIcon'" :class="['p-rating-icon', onIcon]" v-bind="ptm('onIcon')" />
|
<component :is="onIcon ? 'span' : 'StarFillIcon'" :class="[cx('onIcon'), onIcon]" v-bind="ptm('onIcon')" />
|
||||||
</slot>
|
</slot>
|
||||||
<slot v-else name="officon" :value="value">
|
<slot v-else name="officon" :value="value" :class="cx('offIcon')">
|
||||||
<component :is="offIcon ? 'span' : 'StarIcon'" :class="['p-rating-icon', offIcon]" v-bind="ptm('offIcon')" />
|
<component :is="offIcon ? 'span' : 'StarIcon'" :class="[cx('offIcon'), offIcon]" v-bind="ptm('offIcon')" />
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -49,50 +49,16 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import BaseComponent from 'primevue/basecomponent';
|
|
||||||
import BanIcon from 'primevue/icons/ban';
|
import BanIcon from 'primevue/icons/ban';
|
||||||
import StarIcon from 'primevue/icons/star';
|
import StarIcon from 'primevue/icons/star';
|
||||||
import StarFillIcon from 'primevue/icons/starfill';
|
import StarFillIcon from 'primevue/icons/starfill';
|
||||||
import { DomHandler, UniqueComponentId } from 'primevue/utils';
|
import { DomHandler, UniqueComponentId } from 'primevue/utils';
|
||||||
|
import BaseRating from './BaseRating.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Rating',
|
name: 'Rating',
|
||||||
extends: BaseComponent,
|
extends: BaseRating,
|
||||||
emits: ['update:modelValue', 'change', 'focus', 'blur'],
|
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() {
|
data() {
|
||||||
return {
|
return {
|
||||||
name: this.$attrs.name,
|
name: this.$attrs.name,
|
||||||
|
@ -150,17 +116,6 @@ export default {
|
||||||
return value === 1 ? this.$primevue.config.locale.aria.star : this.$primevue.config.locale.aria.stars.replace(/{star}/g, 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: {
|
components: {
|
||||||
StarFillIcon: StarFillIcon,
|
StarFillIcon: StarFillIcon,
|
||||||
StarIcon: StarIcon,
|
StarIcon: StarIcon,
|
||||||
|
@ -168,21 +123,3 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
.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;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
Loading…
Reference in New Issue