mixin.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. import * as index from '../function/index.js';
  2. import * as test from '../function/test.js';
  3. export default {
  4. // 定义每个组件都可能需要用到的外部样式以及类名
  5. props: {
  6. // 每个组件都有的父组件传递的样式,可以为字符串或者对象形式
  7. customStyle: {
  8. type: [Object, String],
  9. default: () => ({})
  10. },
  11. customClass: {
  12. type: String,
  13. default: ''
  14. },
  15. // 跳转的页面路径
  16. url: {
  17. type: String,
  18. default: ''
  19. },
  20. // 页面跳转的类型
  21. linkType: {
  22. type: String,
  23. default: 'navigateTo'
  24. }
  25. },
  26. data() {
  27. return {}
  28. },
  29. onLoad() {
  30. // getRect挂载到$uv上,因为这方法需要使用in(this),所以无法把它独立成一个单独的文件导出
  31. this.$uv.getRect = this.$uvGetRect
  32. },
  33. created() {
  34. // 组件当中,只有created声明周期,为了能在组件使用,故也在created中将方法挂载到$uv
  35. this.$uv.getRect = this.$uvGetRect
  36. },
  37. computed: {
  38. $uv() {
  39. return {
  40. ...index,
  41. test,
  42. unit: uni?.$uv?.config?.unit
  43. }
  44. },
  45. /**
  46. * 生成bem规则类名
  47. * 由于微信小程序,H5,nvue之间绑定class的差异,无法通过:class="[bem()]"的形式进行同用
  48. * 故采用如下折中做法,最后返回的是数组(一般平台)或字符串(支付宝和字节跳动平台),类似['a', 'b', 'c']或'a b c'的形式
  49. * @param {String} name 组件名称
  50. * @param {Array} fixed 一直会存在的类名
  51. * @param {Array} change 会根据变量值为true或者false而出现或者隐藏的类名
  52. * @returns {Array|string}
  53. */
  54. bem() {
  55. return function(name, fixed, change) {
  56. // 类名前缀
  57. const prefix = `uv-${name}--`
  58. const classes = {}
  59. if (fixed) {
  60. fixed.map((item) => {
  61. // 这里的类名,会一直存在
  62. classes[prefix + this[item]] = true
  63. })
  64. }
  65. if (change) {
  66. change.map((item) => {
  67. // 这里的类名,会根据this[item]的值为true或者false,而进行添加或者移除某一个类
  68. this[item] ? (classes[prefix + item] = this[item]) : (delete classes[prefix + item])
  69. })
  70. }
  71. return Object.keys(classes)
  72. // 支付宝,头条小程序无法动态绑定一个数组类名,否则解析出来的结果会带有",",而导致失效
  73. // #ifdef MP-ALIPAY || MP-TOUTIAO || MP-LARK || MP-BAIDU
  74. .join(' ')
  75. // #endif
  76. }
  77. }
  78. },
  79. methods: {
  80. // 跳转某一个页面
  81. openPage(urlKey = 'url') {
  82. const url = this[urlKey]
  83. if (url) {
  84. // 执行类似uni.navigateTo的方法
  85. uni[this.linkType]({
  86. url
  87. })
  88. }
  89. },
  90. // 查询节点信息
  91. // 目前此方法在支付宝小程序中无法获取组件跟接点的尺寸,为支付宝的bug(2020-07-21)
  92. // 解决办法为在组件根部再套一个没有任何作用的view元素
  93. $uvGetRect(selector, all) {
  94. return new Promise((resolve) => {
  95. uni.createSelectorQuery()
  96. .in(this)[all ? 'selectAll' : 'select'](selector)
  97. .boundingClientRect((rect) => {
  98. if (all && Array.isArray(rect) && rect.length) {
  99. resolve(rect)
  100. }
  101. if (!all && rect) {
  102. resolve(rect)
  103. }
  104. })
  105. .exec()
  106. })
  107. },
  108. getParentData(parentName = '') {
  109. // 避免在created中去定义parent变量
  110. if (!this.parent) this.parent = {}
  111. // 这里的本质原理是,通过获取父组件实例(也即类似uv-radio的父组件uv-radio-group的this)
  112. // 将父组件this中对应的参数,赋值给本组件(uv-radio的this)的parentData对象中对应的属性
  113. // 之所以需要这么做,是因为所有端中,头条小程序不支持通过this.parent.xxx去监听父组件参数的变化
  114. // 此处并不会自动更新子组件的数据,而是依赖父组件uv-radio-group去监听data的变化,手动调用更新子组件的方法去重新获取
  115. this.parent = this.$uv.$parent.call(this, parentName)
  116. if (this.parent.children) {
  117. // 如果父组件的children不存在本组件的实例,才将本实例添加到父组件的children中
  118. this.parent.children.indexOf(this) === -1 && this.parent.children.push(this)
  119. }
  120. if (this.parent && this.parentData) {
  121. // 历遍parentData中的属性,将parent中的同名属性赋值给parentData
  122. Object.keys(this.parentData).map((key) => {
  123. this.parentData[key] = this.parent[key]
  124. })
  125. }
  126. },
  127. // 阻止事件冒泡
  128. preventEvent(e) {
  129. e && typeof(e.stopPropagation) === 'function' && e.stopPropagation()
  130. },
  131. // 空操作
  132. noop(e) {
  133. this.preventEvent(e)
  134. }
  135. },
  136. onReachBottom() {
  137. uni.$emit('uvOnReachBottom')
  138. },
  139. beforeDestroy() {
  140. // 判断当前页面是否存在parent和chldren,一般在checkbox和checkbox-group父子联动的场景会有此情况
  141. // 组件销毁时,移除子组件在父组件children数组中的实例,释放资源,避免数据混乱
  142. if (this.parent && test.array(this.parent.children)) {
  143. // 组件销毁时,移除父组件中的children数组中对应的实例
  144. const childrenList = this.parent.children
  145. childrenList.map((child, index) => {
  146. // 如果相等,则移除
  147. if (child === this) {
  148. childrenList.splice(index, 1)
  149. }
  150. })
  151. }
  152. },
  153. // 兼容vue3
  154. unmounted() {
  155. if (this.parent && test.array(this.parent.children)) {
  156. // 组件销毁时,移除父组件中的children数组中对应的实例
  157. const childrenList = this.parent.children
  158. childrenList.map((child, index) => {
  159. // 如果相等,则移除
  160. if (child === this) {
  161. childrenList.splice(index, 1)
  162. }
  163. })
  164. }
  165. }
  166. }