u-rate.vue 9.7 KB

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