u-rate.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. },
  120. data() {
  121. return {
  122. // 生成一个唯一id,否则一个页面多个评分组件,会造成冲突
  123. elId: this.$u.guid(),
  124. elClass: this.$u.guid(),
  125. starBoxLeft: 0, // 评分盒子左边到屏幕左边的距离,用于滑动选择时计算距离
  126. // 当前激活的星星的index,如果存在value,优先使用value,因为它可以双向绑定(1.4.5新增)
  127. activeIndex: this.value != -1 ? this.value : this.current,
  128. starWidth: 0, // 每个星星的宽度
  129. starWidthArr: [] //每个星星最右边到组件盒子最左边的距离
  130. }
  131. },
  132. watch: {
  133. current(val) {
  134. this.activeIndex = val
  135. },
  136. value(val) {
  137. this.activeIndex = val
  138. }
  139. },
  140. computed: {
  141. decimal() {
  142. if (this.disabled) {
  143. return this.activeIndex * 100 % 100
  144. } else if (this.allowHalf) {
  145. return 50
  146. }
  147. },
  148. elActiveIcon() {
  149. const len = this.icons.length
  150. // 此处规则类似于下方的elActiveColor参数,都是根据一定的规则,显示不同的图标
  151. // 结果可能如此:icons参数传递了3个图标,当选中两个时,用第一个图标,4个时,用第二个图标
  152. // 第三个时,用第三个图标作为激活的图标
  153. if (len && len <= this.count) {
  154. const step = Math.round(this.activeIndex / Math.round(this.count / len))
  155. if (step < 1) return this.icons[0]
  156. if (step > len) return this.icons[len - 1]
  157. return this.icons[step - 1]
  158. }
  159. return this.activeIcon
  160. },
  161. elActiveColor() {
  162. const len = this.colors.length
  163. // 如果有设置colors参数(此参数用于将图标分段,比如一共5颗星,colors传3个颜色值,那么根据一定的规则,2颗星可能为第一个颜色
  164. // 4颗星为第二个颜色值,5颗星为第三个颜色值)
  165. if (len && len <= this.count) {
  166. const step = Math.round(this.activeIndex / Math.round(this.count / len))
  167. if (step < 1) return this.colors[0]
  168. if (step > len) return this.colors[len - 1]
  169. return this.colors[step - 1]
  170. }
  171. return this.activeColor
  172. }
  173. },
  174. methods: {
  175. // 获取评分组件盒子的布局信息
  176. getElRectById() {
  177. // uView封装的获取节点的方法,详见文档
  178. this.$u.getRect('#' + this.elId).then(res => {
  179. this.starBoxLeft = res.left
  180. })
  181. },
  182. // 获取单个星星的尺寸
  183. getElRectByClass() {
  184. // uView封装的获取节点的方法,详见文档
  185. this.$u.getRect('.' + this.elClass).then(res => {
  186. this.starWidth = res.width
  187. // 把每个星星右边到组件盒子左边的距离放入数组中
  188. for (let i = 0; i < this.count; i++) {
  189. this.starWidthArr[i] = (i + 1) * this.starWidth
  190. }
  191. })
  192. },
  193. // 手指滑动
  194. touchMove(e) {
  195. if (this.disabled) {
  196. return
  197. }
  198. if (!e.changedTouches[0]) {
  199. return
  200. }
  201. const movePageX = e.changedTouches[0].pageX
  202. // 滑动点相对于评分盒子左边的距离
  203. const distance = movePageX - this.starBoxLeft
  204. // 如果滑动到了评分盒子的左边界,就设置为0星
  205. if (distance <= 0) {
  206. this.activeIndex = 0
  207. }
  208. // 滑动的距离,相当于多少颗星星
  209. let index = Math.ceil(distance / this.starWidth)
  210. this.activeIndex = index > this.count ? this.count : index
  211. // 对最少颗星星的限制
  212. if (this.activeIndex < this.minCount) this.activeIndex = this.minCount
  213. this.emitEvent()
  214. },
  215. // 通过点击,直接选中
  216. click(index, e) {
  217. if (this.disabled) {
  218. return
  219. }
  220. // 半星选择,尚未实现
  221. if (this.allowHalf) {
  222. }
  223. // 对第一个星星特殊处理,只有一个的时候,点击可以取消,否则无法作0星评价
  224. if (index == 1) {
  225. if (this.activeIndex == 1) {
  226. this.activeIndex = 0
  227. } else {
  228. this.activeIndex = 1
  229. }
  230. } else {
  231. this.activeIndex = index
  232. }
  233. // 对最少颗星星的限制
  234. if (this.activeIndex < this.minCount) this.activeIndex = this.minCount
  235. this.emitEvent()
  236. },
  237. // 发出事件
  238. emitEvent() {
  239. // 发出change事件
  240. this.$emit('change', this.activeIndex)
  241. // 同时修改双向绑定的value的值
  242. if (this.value != -1) {
  243. this.$emit('input', this.activeIndex)
  244. }
  245. },
  246. showDecimalIcon(index) {
  247. return this.disabled && parseInt(this.activeIndex) === index
  248. }
  249. },
  250. mounted() {
  251. this.getElRectById()
  252. this.getElRectByClass()
  253. }
  254. }
  255. </script>
  256. <style scoped lang="scss">
  257. @import "../../libs/css/style.components.scss";
  258. .u-rate {
  259. display: -webkit-inline-flex;
  260. display: inline-flex;
  261. align-items: center;
  262. margin: 0;
  263. padding: 0;
  264. }
  265. .u-icon {
  266. box-sizing: border-box;
  267. }
  268. </style>