u-rate.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <view
  3. class="u-rate"
  4. :id="elId"
  5. ref="u-rate"
  6. :style="[$u.addStyle(customStyle)]"
  7. >
  8. <view
  9. class="u-rate__content"
  10. @touchmove.stop="touchMove"
  11. @touchend.stop="touchEnd"
  12. >
  13. <view
  14. class="u-rate__content__item"
  15. v-for="(item, index) in Number(count)"
  16. :key="index"
  17. :class="[elClass]"
  18. >
  19. <view
  20. class="u-rate__content__item__icon-wrap"
  21. ref="u-rate__content__item__icon-wrap"
  22. @tap.stop="clickHandler($event, index + 1)"
  23. >
  24. <u-icon
  25. :name="
  26. Math.floor(activeIndex) > index
  27. ? activeIcon
  28. : inactiveIcon
  29. "
  30. :color="
  31. disabled
  32. ? '#c8c9cc'
  33. : Math.floor(activeIndex) > index
  34. ? activeColor
  35. : inactiveColor
  36. "
  37. :custom-style="{
  38. padding: `0 ${$u.addUnit(gutter / 2)}`,
  39. }"
  40. :size="size"
  41. ></u-icon>
  42. </view>
  43. <view
  44. v-if="allowHalf"
  45. @tap.stop="clickHandler($event, index + 1)"
  46. class="u-rate__content__item__icon-wrap u-rate__content__item__icon-wrap--half"
  47. :style="[{
  48. width: $u.addUnit(rateWidth / 2),
  49. }]"
  50. ref="u-rate__content__item__icon-wrap"
  51. >
  52. <u-icon
  53. :name="
  54. Math.ceil(activeIndex) > index
  55. ? activeIcon
  56. : inactiveIcon
  57. "
  58. :color="
  59. disabled
  60. ? '#c8c9cc'
  61. : Math.ceil(activeIndex) > index
  62. ? activeColor
  63. : inactiveColor
  64. "
  65. :custom-style="{
  66. padding: `0 ${$u.addUnit(gutter / 2)}`
  67. }"
  68. :size="size"
  69. ></u-icon>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. import props from './props.js';
  77. // #ifdef APP-NVUE
  78. const dom = weex.requireModule("dom");
  79. // #endif
  80. /**
  81. * rate 评分
  82. * @description 该组件一般用于满意度调查,星型评分的场景
  83. * @tutorial https://www.uviewui.com/components/rate.html
  84. * @property {String | Number} value 用于v-model双向绑定选中的星星数量 (默认 1 )
  85. * @property {String | Number} count 最多可选的星星数量 (默认 5 )
  86. * @property {Boolean} disabled 是否禁止用户操作 (默认 false )
  87. * @property {Boolean} readonly 是否只读 (默认 false )
  88. * @property {String | Number} size 星星的大小,单位px (默认 18 )
  89. * @property {String} inactiveColor 未选中星星的颜色 (默认 '#b2b2b2' )
  90. * @property {String} activeColor 选中的星星颜色 (默认 '#FA3534' )
  91. * @property {String | Number} gutter 星星之间的距离 (默认 4 )
  92. * @property {String | Number} minCount 最少选中星星的个数 (默认 1 )
  93. * @property {Boolean} allowHalf 是否允许半星选择 (默认 false )
  94. * @property {String} activeIcon 选中时的图标名,只能为uView的内置图标 (默认 'star-fill' )
  95. * @property {String} inactiveIcon 未选中时的图标名,只能为uView的内置图标 (默认 'star' )
  96. * @property {Boolean} touchable 是否可以通过滑动手势选择评分 (默认 'true' )
  97. * @property {Object} customStyle 组件的样式,对象形式
  98. * @event {Function} change 选中的星星发生变化时触发
  99. * @example <u-rate :count="count" :value="2"></u-rate>
  100. */
  101. export default {
  102. name: "u-rate",
  103. mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
  104. data() {
  105. return {
  106. // 生成一个唯一id,否则一个页面多个评分组件,会造成冲突
  107. elId: uni.$u.guid(),
  108. elClass: uni.$u.guid(),
  109. rateBoxLeft: 0, // 评分盒子左边到屏幕左边的距离,用于滑动选择时计算距离
  110. activeIndex: this.value,
  111. rateWidth: 0, // 每个星星的宽度
  112. // 标识是否正在滑动,由于iOS事件上touch比click先触发,导致快速滑动结束后,接着触发click,导致事件混乱而出错
  113. moving: false,
  114. };
  115. },
  116. watch: {
  117. value(val) {
  118. this.activeIndex = val;
  119. },
  120. activeIndex: 'emitEvent'
  121. },
  122. methods: {
  123. init() {
  124. uni.$u.sleep().then(() => {
  125. this.getRateItemRect();
  126. this.getRateIconWrapRect();
  127. })
  128. },
  129. // 获取评分组件盒子的布局信息
  130. async getRateItemRect() {
  131. await uni.$u.sleep();
  132. // uView封装的获取节点的方法,详见文档
  133. // #ifndef APP-NVUE
  134. this.$uGetRect("#" + this.elId).then((res) => {
  135. this.rateBoxLeft = res.left;
  136. });
  137. // #endif
  138. // #ifdef APP-NVUE
  139. dom.getComponentRect(this.$refs["u-rate"], (res) => {
  140. this.rateBoxLeft = res.size.left;
  141. });
  142. // #endif
  143. },
  144. // 获取单个星星的尺寸
  145. getRateIconWrapRect() {
  146. // uView封装的获取节点的方法,详见文档
  147. // #ifndef APP-NVUE
  148. this.$uGetRect("." + this.elClass).then((res) => {
  149. this.rateWidth = res.width;
  150. });
  151. // #endif
  152. // #ifdef APP-NVUE
  153. dom.getComponentRect(
  154. this.$refs["u-rate__content__item__icon-wrap"][0],
  155. (res) => {
  156. this.rateWidth = res.size.width;
  157. }
  158. );
  159. // #endif
  160. },
  161. // 手指滑动
  162. touchMove(e) {
  163. // 如果禁止通过手动滑动选择,返回
  164. if (!this.touchable) {
  165. return;
  166. }
  167. this.preventEvent(e);
  168. const x = e.changedTouches[0].pageX;
  169. this.getActiveIndex(x);
  170. },
  171. // 停止滑动
  172. touchEnd(e) {
  173. // 如果禁止通过手动滑动选择,返回
  174. if (!this.touchable) {
  175. return;
  176. }
  177. this.preventEvent(e);
  178. const x = e.changedTouches[0].pageX;
  179. this.getActiveIndex(x);
  180. },
  181. // 通过点击,直接选中
  182. clickHandler(e, index) {
  183. // ios上,moving状态取消事件触发
  184. if (uni.$u.os() === "ios" && this.moving) {
  185. return;
  186. }
  187. this.preventEvent(e);
  188. let x = 0;
  189. // 点击时,在nvue上,无法获得点击的坐标,所以无法实现点击半星选择
  190. // #ifndef APP-NVUE
  191. x = e.changedTouches[0].pageX;
  192. // #endif
  193. // #ifdef APP-NVUE
  194. // nvue下,无法通过点击获得坐标信息,这里通过元素的位置尺寸值模拟坐标
  195. x = index * this.rateWidth + this.rateBoxLeft;
  196. // #endif
  197. this.getActiveIndex(x,true);
  198. },
  199. // 发出事件
  200. emitEvent() {
  201. // 发出change事件
  202. this.$emit("change", this.activeIndex);
  203. // 同时修改双向绑定的value的值
  204. this.$emit("input", this.activeIndex);
  205. },
  206. // 获取当前激活的评分图标
  207. getActiveIndex(x,isClick = false) {
  208. if (this.disabled || this.readonly) {
  209. return;
  210. }
  211. // 判断当前操作的点的x坐标值,是否在允许的边界范围内
  212. const allRateWidth = this.rateWidth * this.count + this.rateBoxLeft;
  213. // 如果小于第一个图标的左边界,设置为最小值,如果大于所有图标的宽度,则设置为最大值
  214. x = uni.$u.range(this.rateBoxLeft, allRateWidth, x) - this.rateBoxLeft
  215. // 滑动点相对于评分盒子左边的距离
  216. const distance = x;
  217. // 滑动的距离,相当于多少颗星星
  218. let index;
  219. // 判断是否允许半星
  220. if (this.allowHalf) {
  221. index = Math.floor(distance / this.rateWidth);
  222. // 取余,判断小数的区间范围
  223. const decimal = distance % this.rateWidth;
  224. if (decimal <= this.rateWidth / 2 && decimal > 0) {
  225. index += 0.5;
  226. } else if (decimal > this.rateWidth / 2) {
  227. index++;
  228. }
  229. } else {
  230. index = Math.floor(distance / this.rateWidth);
  231. // 取余,判断小数的区间范围
  232. const decimal = distance % this.rateWidth;
  233. // 非半星时,只有超过了图标的一半距离,才认为是选择了这颗星
  234. if (isClick){
  235. if (decimal > 0) index++;
  236. } else {
  237. if (decimal > this.rateWidth / 2) index++;
  238. }
  239. }
  240. this.activeIndex = Math.min(index, this.count);
  241. // 对最少颗星星的限制
  242. if (this.activeIndex < this.minCount) {
  243. this.activeIndex = this.minCount;
  244. }
  245. // 设置延时为了让click事件在touchmove之前触发
  246. setTimeout(() => {
  247. this.moving = true;
  248. }, 10);
  249. // 一定时间后,取消标识为移动中状态,是为了让click事件无效
  250. setTimeout(() => {
  251. this.moving = false;
  252. }, 10);
  253. },
  254. },
  255. mounted() {
  256. this.init();
  257. },
  258. };
  259. </script>
  260. <style lang="scss" scoped>
  261. @import "../../libs/css/components.scss";
  262. $u-rate-margin: 0 !default;
  263. $u-rate-padding: 0 !default;
  264. $u-rate-item-icon-wrap-half-top: 0 !default;
  265. $u-rate-item-icon-wrap-half-left: 0 !default;
  266. .u-rate {
  267. @include flex;
  268. align-items: center;
  269. margin: $u-rate-margin;
  270. padding: $u-rate-padding;
  271. /* #ifndef APP-NVUE */
  272. touch-action: none;
  273. /* #endif */
  274. &__content {
  275. @include flex;
  276. &__item {
  277. position: relative;
  278. &__icon-wrap {
  279. &--half {
  280. position: absolute;
  281. overflow: hidden;
  282. top: $u-rate-item-icon-wrap-half-top;
  283. left: $u-rate-item-icon-wrap-half-left;
  284. }
  285. }
  286. }
  287. }
  288. }
  289. .u-icon {
  290. /* #ifndef APP-NVUE */
  291. box-sizing: border-box;
  292. /* #endif */
  293. }
  294. </style>