uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
6.0 KiB

3 years ago
  1. <template>
  2. <view
  3. class="u-grid-item"
  4. hover-class="u-grid-item--hover-class"
  5. :hover-stay-time="200"
  6. @tap="clickHandler"
  7. :class="classes"
  8. :style="[itemStyle]"
  9. >
  10. <slot />
  11. </view>
  12. </template>
  13. <script>
  14. import props from './props.js';
  15. /**
  16. * gridItem 提示
  17. * @description 宫格组件一般用于同时展示多个同类项目的场景可以给宫格的项目设置徽标组件(badge)或者图标等也可以扩展为左右滑动的轮播形式搭配u-grid使用
  18. * @tutorial https://www.uviewui.com/components/grid.html
  19. * @property {String | Number} name 宫格的name ( 默认 null )
  20. * @property {String} bgColor 宫格的背景颜色 默认 'transparent'
  21. * @property {Object} customStyle 自定义样式对象形式
  22. * @event {Function} click 点击宫格触发
  23. * @example <u-grid-item></u-grid-item>
  24. */
  25. export default {
  26. name: "u-grid-item",
  27. mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
  28. data() {
  29. return {
  30. parentData: {
  31. col: 3, // 父组件划分的宫格数
  32. border: true, // 是否显示边框,根据父组件决定
  33. },
  34. // #ifdef APP-NVUE
  35. width: 0, // nvue下才这么计算,vue下放到computed中,否则会因为延时造成闪烁
  36. // #endif
  37. classes: [], // 类名集合,用于判断是否显示右边和下边框
  38. };
  39. },
  40. mounted() {
  41. this.init()
  42. },
  43. computed: {
  44. // #ifndef APP-NVUE
  45. // vue下放到computed中,否则会因为延时造成闪烁
  46. width() {
  47. return 100 / Number(this.parentData.col) + '%'
  48. },
  49. // #endif
  50. itemStyle() {
  51. const style = {
  52. background: this.bgColor,
  53. width: this.width
  54. }
  55. return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
  56. }
  57. },
  58. methods: {
  59. init() {
  60. // 用于在父组件u-grid的children中被添加入子组件时,
  61. // 重新计算item的边框
  62. uni.$on('$uGridItem', () => {
  63. this.gridItemClasses()
  64. })
  65. // 父组件的实例
  66. this.updateParentData()
  67. // #ifdef APP-NVUE
  68. // 获取元素该有的长度,nvue下要延时才准确
  69. this.$nextTick(function(){
  70. this.getItemWidth()
  71. })
  72. // #endif
  73. // 发出事件,通知所有的grid-item都重新计算自己的边框
  74. uni.$emit('$uGridItem')
  75. this.gridItemClasses()
  76. },
  77. // 获取父组件的参数
  78. updateParentData() {
  79. // 此方法写在mixin中
  80. this.getParentData('u-grid');
  81. },
  82. clickHandler() {
  83. let name = this.name
  84. // 如果没有设置name属性,历遍父组件的children数组,判断当前的元素是否和本实例this相等,找出当前组件的索引
  85. const children = this.parent?.children
  86. if(children && this.name === null) {
  87. name = children.findIndex(child => child === this)
  88. }
  89. // 调用父组件方法,发出事件
  90. this.parent && this.parent.childClick(name)
  91. this.$emit('click', name)
  92. },
  93. async getItemWidth() {
  94. // 如果是nvue,不能使用百分比,只能使用固定宽度
  95. let width = 0
  96. if(this.parent) {
  97. // 获取父组件宽度后,除以栅格数,得出每个item的宽度
  98. const parentWidth = await this.getParentWidth()
  99. width = parentWidth / Number(this.parentData.col) + 'px'
  100. }
  101. this.width = width
  102. },
  103. // 获取父元素的尺寸
  104. getParentWidth() {
  105. // #ifdef APP-NVUE
  106. // 返回一个promise,让调用者可以用await同步获取
  107. const dom = uni.requireNativePlugin('dom')
  108. return new Promise(resolve => {
  109. // 调用父组件的ref
  110. dom.getComponentRect(this.parent.$refs['u-grid'], res => {
  111. resolve(res.size.width)
  112. })
  113. })
  114. // #endif
  115. },
  116. gridItemClasses() {
  117. if(this.parentData.border) {
  118. const classes = []
  119. this.parent.children.map((child, index) =>{
  120. if(this === child) {
  121. const len = this.parent.children.length
  122. // 贴近右边屏幕边沿的child,并且最后一个(比如只有横向2个的时候),无需右边框
  123. if((index + 1) % this.parentData.col !== 0 && index + 1 !== len) {
  124. classes.push('u-border-right')
  125. }
  126. // 总的宫格数量对列数取余的值
  127. // 如果取余后,值为0,则意味着要将最后一排的宫格,都不需要下边框
  128. const lessNum = len % this.parentData.col === 0 ? this.parentData.col : len % this.parentData.col
  129. // 最下面的一排child,无需下边框
  130. if(index < len - lessNum) {
  131. classes.push('u-border-bottom')
  132. }
  133. }
  134. })
  135. // 支付宝,头条小程序无法动态绑定一个数组类名,否则解析出来的结果会带有",",而导致失效
  136. // #ifdef MP-ALIPAY || MP-TOUTIAO
  137. classes = classes.join(' ')
  138. // #endif
  139. this.classes = classes
  140. }
  141. }
  142. },
  143. beforeDestroy() {
  144. // 移除事件监听,释放性能
  145. uni.$off('$uGridItem')
  146. }
  147. };
  148. </script>
  149. <style lang="scss">
  150. @import "../../libs/css/components.scss";
  151. $u-grid-item-hover-class-opcatiy:.5 !default;
  152. $u-grid-item-margin-top:1rpx !default;
  153. $u-grid-item-border-right-width:0.5px !default;
  154. $u-grid-item-border-bottom-width:0.5px !default;
  155. $u-grid-item-border-right-color:$u-border-color !default;
  156. $u-grid-item-border-bottom-color:$u-border-color !default;
  157. .u-grid-item {
  158. align-items: center;
  159. justify-content: center;
  160. position: relative;
  161. flex-direction: column;
  162. /* #ifndef APP-NVUE */
  163. box-sizing: border-box;
  164. display: flex;
  165. /* #endif */
  166. /* #ifdef MP */
  167. position: relative;
  168. float: left;
  169. /* #endif */
  170. /* #ifdef MP-WEIXIN */
  171. margin-top:$u-grid-item-margin-top;
  172. /* #endif */
  173. &--hover-class {
  174. opacity:$u-grid-item-hover-class-opcatiy;
  175. }
  176. }
  177. /* #ifdef APP-NVUE */
  178. // 由于nvue不支持组件内引入app.vue中再引入的样式,所以需要写在这里
  179. .u-border-right {
  180. border-right-width:$u-grid-item-border-right-width;
  181. border-color: $u-grid-item-border-right-color;
  182. }
  183. .u-border-bottom {
  184. border-bottom-width:$u-grid-item-border-bottom-width;
  185. border-color:$u-grid-item-border-bottom-color;
  186. }
  187. /* #endif */
  188. </style>