init Rate component
init Rate component
This commit is contained in:
parent
1ff551864c
commit
49d380cf99
9 changed files with 193 additions and 1 deletions
2
src/components/rate/index.js
Normal file
2
src/components/rate/index.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
import Rate from './rate.vue';
|
||||
export default Rate;
|
99
src/components/rate/rate.vue
Normal file
99
src/components/rate/rate.vue
Normal file
|
@ -0,0 +1,99 @@
|
|||
<template>
|
||||
<div :class="classes" @mouseleave="handleMouseleave">
|
||||
<div v-for="item in count" :class="starCls(item)">
|
||||
<span
|
||||
:class="[prefixCls + '-star-content']"
|
||||
@mousemove="handleMousemove(item, $event)"
|
||||
@click="handleClick(item)"></span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
const prefixCls = 'ivu-rate';
|
||||
|
||||
export default {
|
||||
props: {
|
||||
count: {
|
||||
type: Number,
|
||||
default: 5
|
||||
},
|
||||
value: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
allowHalf: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
prefixCls: prefixCls,
|
||||
hoverIndex: -1
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
classes () {
|
||||
return [
|
||||
`${prefixCls}`,
|
||||
{
|
||||
[`${prefixCls}-disabled`]: this.disabled
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
starCls (value) {
|
||||
const hoverIndex = this.hoverIndex;
|
||||
let full = false;
|
||||
|
||||
if (hoverIndex >= value) {
|
||||
full = true;
|
||||
}
|
||||
|
||||
return [
|
||||
`${prefixCls}-star`,
|
||||
{
|
||||
[`${prefixCls}-star-full`]: full,
|
||||
[`${prefixCls}-star-zero`]: !full
|
||||
}
|
||||
]
|
||||
},
|
||||
handleMousemove(value, event) {
|
||||
if (this.disabled) return;
|
||||
|
||||
if (this.allowHalf) {
|
||||
// let target = event.target;
|
||||
// if (hasClass(target, 'el-rate__item')) {
|
||||
// target = target.querySelector('.el-rate__icon');
|
||||
// }
|
||||
// if (hasClass(target, 'el-rate__decimal')) {
|
||||
// target = target.parentNode;
|
||||
// }
|
||||
// this.pointerAtLeftHalf = event.offsetX * 2 <= target.clientWidth;
|
||||
// this.currentValue = this.pointerAtLeftHalf ? value - 0.5 : value;
|
||||
} else {
|
||||
this.currentValue = value;
|
||||
}
|
||||
this.hoverIndex = value;
|
||||
},
|
||||
handleMouseleave () {
|
||||
if (this.disabled) {
|
||||
return;
|
||||
}
|
||||
if (this.allowHalf) {
|
||||
// this.pointerAtLeftHalf = this.value !== Math.floor(this.value);
|
||||
}
|
||||
// this.currentValue = this.value;
|
||||
this.hoverIndex = -1;
|
||||
},
|
||||
handleClick (value) {
|
||||
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -27,6 +27,7 @@ import Page from './components/page';
|
|||
import Poptip from './components/poptip';
|
||||
import Progress from './components/progress';
|
||||
import Radio from './components/radio';
|
||||
import Rate from './components/rate';
|
||||
import Slider from './components/slider';
|
||||
import Spin from './components/spin';
|
||||
import Steps from './components/steps';
|
||||
|
@ -83,6 +84,7 @@ const iview = {
|
|||
Progress,
|
||||
Radio,
|
||||
RadioGroup: Radio.Group,
|
||||
Rate,
|
||||
Row,
|
||||
iSelect: Select,
|
||||
Slider,
|
||||
|
|
|
@ -34,4 +34,5 @@
|
|||
@import "menu";
|
||||
@import "date-picker";
|
||||
@import "time-picker";
|
||||
@import "form";
|
||||
@import "form";
|
||||
@import "rate";
|
66
src/styles/components/rate.less
Normal file
66
src/styles/components/rate.less
Normal file
|
@ -0,0 +1,66 @@
|
|||
@rate-prefix-cls: ~"@{css-prefix}rate";
|
||||
|
||||
.@{rate-prefix-cls} {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 20px;
|
||||
vertical-align: middle;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-family: 'Ionicons';
|
||||
|
||||
&-disabled &-star {
|
||||
&:before,
|
||||
&-content:before {
|
||||
cursor: default;
|
||||
}
|
||||
&:hover {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
&-star {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-right: 8px;
|
||||
position: relative;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
&:before,
|
||||
&-content:before {
|
||||
color: #e9e9e9;
|
||||
cursor: pointer;
|
||||
content: "\F4B3";
|
||||
transition: all @transition-time @ease-in-out;
|
||||
display: block;
|
||||
}
|
||||
|
||||
&-content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
&:before {
|
||||
color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
&-half &-content:before,
|
||||
&-full:before {
|
||||
color: @rate-star-color;
|
||||
}
|
||||
|
||||
&-half:hover &-content:before,
|
||||
&-full:hover:before {
|
||||
color: tint(@rate-star-color, 20%);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -14,6 +14,7 @@
|
|||
@selected-color : fade(@primary-color, 90%);
|
||||
@tooltip-color : #fff;
|
||||
@subsidiary-color : #9ea7b4;
|
||||
@rate-star-color : #f5a623;
|
||||
|
||||
// Base
|
||||
@body-background : #fff;
|
||||
|
|
|
@ -47,6 +47,7 @@ li + li {
|
|||
<li><a v-link="'/menu'">Menu</a></li>
|
||||
<li><a v-link="'/date'">Date</a></li>
|
||||
<li><a v-link="'/form'">Form</a></li>
|
||||
<li><a v-link="'/rate'">Rate</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<router-view></router-view>
|
||||
|
|
|
@ -134,6 +134,11 @@ router.map({
|
|||
require(['./routers/form.vue'], resolve);
|
||||
}
|
||||
},
|
||||
'/rate': {
|
||||
component: function (resolve) {
|
||||
require(['./routers/rate.vue'], resolve);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
router.beforeEach(function () {
|
||||
|
|
15
test/routers/rate.vue
Normal file
15
test/routers/rate.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div style="margin: 100px">
|
||||
<Rate></Rate>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {},
|
||||
data () {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Reference in a new issue