u-rate.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <view class="u-rate" :id="elId" @touchmove.stop.prevent="touchMove">
  3. <view class="u-star-wrap" v-for="(item, index) in count" :key="index" :class="[elClass]">
  4. <u-icon
  5. :name="activeIndex > index ? elActiveIcon : inactiveIcon"
  6. @click="click(index + 1, $event)"
  7. :color="activeIndex > index ? elActiveColor : inactiveColor"
  8. :custom-style="{
  9. fontSize: size + 'rpx',
  10. padding: `0 ${gutter / 2 + 'rpx'}`
  11. }"
  12. :custom-prefix="customPrefix"
  13. :show-decimal-icon="showDecimalIcon(index)"
  14. :percent="decimal"
  15. ></u-icon>
  16. </view>
  17. </view>
  18. </template>
  19. <script>/**
  20. * rate 评分
  21. * @description 该组件一般用于满意度调查,星型评分的场景
  22. * @tutorial https://www.uviewui.com/components/rate.html
  23. * @property {String Number} count 最多可选的星星数量(默认5)
  24. * @property {String Number} current 默认选中的星星数量(默认0)
  25. * @property {Boolean} disabled 是否禁止用户操作(默认false)
  26. * @property {String Number} size 星星的大小,单位rpx(默认32)
  27. * @property {String} inactive-color 未选中星星的颜色(默认#b2b2b2)
  28. * @property {String} active-color 选中的星星颜色(默认#FA3534)
  29. * @property {String} active-icon 选中时的图标名,只能为uView的内置图标(默认star-fill)
  30. * @property {String} inactive-icon 未选中时的图标名,只能为uView的内置图标(默认star)
  31. * @property {String} gutter 星星之间的距离(默认10)
  32. * @property {String Number} min-count 最少选中星星的个数(默认0)
  33. * @property {Boolean} allow-half 是否允许半星选择(默认false)
  34. * @event {Function} change 选中的星星发生变化时触发
  35. * @example <u-rate :count="count" :current="2"></u-rate>
  36. */
  37. export default {
  38. name: 'u-rate',
  39. props: {
  40. // 用于v-model双向绑定选中的星星数量
  41. // 1.4.5版新增
  42. value: {
  43. type: [Number, String],
  44. default: -1
  45. },
  46. // 要显示的星星数量
  47. count: {
  48. type: [Number, String],
  49. default: 5
  50. },
  51. // 当前需要默认选中的星星(选中的个数)
  52. // 1.4.5后通过value双向绑定,不再建议使用此参数
  53. current: {
  54. type: [Number, String],
  55. default: 0
  56. },
  57. // 是否不可选中
  58. disabled: {
  59. type: Boolean,
  60. default: false
  61. },
  62. // 星星的大小,单位rpx
  63. size: {
  64. type: [Number, String],
  65. default: 32
  66. },
  67. // 未选中时的颜色
  68. inactiveColor: {
  69. type: String,
  70. default: '#b2b2b2'
  71. },
  72. // 选中的颜色
  73. activeColor: {
  74. type: String,
  75. default: '#FA3534'
  76. },
  77. // 星星之间的间距,单位rpx
  78. gutter: {
  79. type: [Number, String],
  80. default: 10
  81. },
  82. // 最少能选择的星星个数
  83. minCount: {
  84. type: [Number, String],
  85. default: 0
  86. },
  87. // 是否允许半星(功能尚未实现)
  88. allowHalf: {
  89. type: Boolean,
  90. default: false
  91. },
  92. // 选中时的图标(星星)
  93. activeIcon: {
  94. type: String,
  95. default: 'star-fill'
  96. },
  97. // 未选中时的图标(星星)
  98. inactiveIcon: {
  99. type: String,
  100. default: 'star'
  101. },
  102. // 自定义扩展前缀,方便用户扩展自己的图标库
  103. customPrefix: {
  104. type: String,
  105. default: 'uicon'
  106. },
  107. colors: {
  108. type: Array,
  109. default() {
  110. return []
  111. }
  112. },
  113. icons: {
  114. type: Array,
  115. default() {
  116. return []
  117. }
  118. },
  119. // 是否禁止点击(此版本disabled属性会带来样式问题)
  120. isClick: {
  121. type: Boolean,
  122. default: false
  123. }
  124. },
  125. data() {
  126. return {
  127. // 生成一个唯一id,否则一个页面多个评分组件,会造成冲突
  128. elId: this.$u.guid(),
  129. elClass: this.$u.guid(),
  130. starBoxLeft: 0, // 评分盒子左边到屏幕左边的距离,用于滑动选择时计算距离
  131. // 当前激活的星星的index,如果存在value,优先使用value,因为它可以双向绑定(1.4.5新增)
  132. activeIndex: this.value != -1 ? this.value : this.current,
  133. starWidth: 0, // 每个星星的宽度
  134. starWidthArr: [] //每个星星最右边到组件盒子最左边的距离
  135. }
  136. },
  137. watch: {
  138. current(val) {
  139. this.activeIndex = val
  140. },
  141. value(val) {
  142. this.activeIndex = val
  143. }
  144. },
  145. computed: {
  146. decimal() {
  147. if (this.disabled) {
  148. return this.activeIndex * 100 % 100
  149. } else if (this.allowHalf) {
  150. return 50
  151. }
  152. },
  153. elActiveIcon() {
  154. const len = this.icons.length
  155. // 此处规则类似于下方的elActiveColor参数,都是根据一定的规则,显示不同的图标
  156. // 结果可能如此:icons参数传递了3个图标,当选中两个时,用第一个图标,4个时,用第二个图标
  157. // 第三个时,用第三个图标作为激活的图标
  158. if (len && len <= this.count) {
  159. const step = Math.round(this.activeIndex / Math.round(this.count / len))
  160. if (step < 1) return this.icons[0]
  161. if (step > len) return this.icons[len - 1]
  162. return this.icons[step - 1]
  163. }
  164. return this.activeIcon
  165. },
  166. elActiveColor() {
  167. const len = this.colors.length
  168. // 如果有设置colors参数(此参数用于将图标分段,比如一共5颗星,colors传3个颜色值,那么根据一定的规则,2颗星可能为第一个颜色
  169. // 4颗星为第二个颜色值,5颗星为第三个颜色值)
  170. if (len && len <= this.count) {
  171. const step = Math.round(this.activeIndex / Math.round(this.count / len))
  172. if (step < 1) return this.colors[0]
  173. if (step > len) return this.colors[len - 1]
  174. return this.colors[step - 1]
  175. }
  176. return this.activeColor
  177. }
  178. },
  179. methods: {
  180. // 获取评分组件盒子的布局信息
  181. getElRectById() {
  182. // uView封装的获取节点的方法,详见文档
  183. this.$u.getRect('#' + this.elId).then(res => {
  184. this.starBoxLeft = res.left
  185. })
  186. },
  187. // 获取单个星星的尺寸
  188. getElRectByClass() {
  189. // uView封装的获取节点的方法,详见文档
  190. this.$u.getRect('.' + this.elClass).then(res => {
  191. this.starWidth = res.width
  192. // 把每个星星右边到组件盒子左边的距离放入数组中
  193. for (let i = 0; i < this.count; i++) {
  194. this.starWidthArr[i] = (i + 1) * this.starWidth
  195. }
  196. })
  197. },
  198. // 手指滑动
  199. touchMove(e) {
  200. if (this.disabled) {
  201. return
  202. }
  203. if (!e.changedTouches[0]) {
  204. return
  205. }
  206. const movePageX = e.changedTouches[0].pageX
  207. // 滑动点相对于评分盒子左边的距离
  208. const distance = movePageX - this.starBoxLeft
  209. // 如果滑动到了评分盒子的左边界,就设置为0星
  210. if (distance <= 0) {
  211. this.activeIndex = 0
  212. }
  213. // 滑动的距离,相当于多少颗星星
  214. let index = Math.ceil(distance / this.starWidth)
  215. this.activeIndex = index > this.count ? this.count : index
  216. // 对最少颗星星的限制
  217. if (this.activeIndex < this.minCount) this.activeIndex = this.minCount
  218. this.emitEvent()
  219. },
  220. // 通过点击,直接选中
  221. click(index, e) {
  222. if(this.isClick) {
  223. return
  224. }
  225. if (this.disabled) {
  226. return
  227. }
  228. // 半星选择,尚未实现
  229. if (this.allowHalf) {
  230. }
  231. // 对第一个星星特殊处理,只有一个的时候,点击可以取消,否则无法作0星评价
  232. if (index == 1) {
  233. if (this.activeIndex == 1) {
  234. this.activeIndex = 0
  235. } else {
  236. this.activeIndex = 1
  237. }
  238. } else {
  239. this.activeIndex = index
  240. }
  241. // 对最少颗星星的限制
  242. if (this.activeIndex < this.minCount) this.activeIndex = this.minCount
  243. this.emitEvent()
  244. },
  245. // 发出事件
  246. emitEvent() {
  247. // 发出change事件
  248. this.$emit('change', this.activeIndex)
  249. // 同时修改双向绑定的value的值
  250. if (this.value != -1) {
  251. this.$emit('input', this.activeIndex)
  252. }
  253. },
  254. showDecimalIcon(index) {
  255. return this.disabled && parseInt(this.activeIndex) === index
  256. }
  257. },
  258. mounted() {
  259. this.getElRectById()
  260. this.getElRectByClass()
  261. }
  262. }
  263. </script>
  264. <style scoped lang="scss">
  265. @import "../../libs/css/style.components.scss";
  266. .u-rate {
  267. display: -webkit-inline-flex;
  268. display: inline-flex;
  269. align-items: center;
  270. margin: 0;
  271. padding: 0;
  272. }
  273. .u-icon {
  274. box-sizing: border-box;
  275. }
  276. </style>