mixin.js 5.6 KB

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