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.

229 lines
6.6 KiB

3 years ago
  1. <template>
  2. <view class="u-collapse-item">
  3. <u-cell
  4. :title="title"
  5. :value="value"
  6. :label="label"
  7. :icon="icon"
  8. :isLink="isLink"
  9. :clickable="clickable"
  10. :border="parentData.border && showBorder"
  11. @click="clickHandler"
  12. :arrowDirection="expanded ? 'up' : 'down'"
  13. :disabled="disabled"
  14. >
  15. <!-- #ifndef MP-WEIXIN -->
  16. <!-- 微信小程序不支持因为微信中不支持 <slot name="title" slot="title" />的写法 -->
  17. <slot
  18. name="title"
  19. slot="title"
  20. />
  21. <slot
  22. name="icon"
  23. slot="icon"
  24. />
  25. <slot
  26. name="value"
  27. slot="value"
  28. />
  29. <slot
  30. name="right-icon"
  31. slot="right-icon"
  32. />
  33. <!-- #endif -->
  34. </u-cell>
  35. <view
  36. class="u-collapse-item__content"
  37. :animation="animationData"
  38. ref="animation"
  39. >
  40. <view
  41. class="u-collapse-item__content__text content-class"
  42. :id="elId"
  43. :ref="elId"
  44. ><slot /></view>
  45. </view>
  46. <u-line v-if="parentData.border"></u-line>
  47. </view>
  48. </template>
  49. <script>
  50. import props from './props.js';
  51. // #ifdef APP-NVUE
  52. const animation = uni.requireNativePlugin('animation')
  53. const dom = uni.requireNativePlugin('dom')
  54. // #endif
  55. /**
  56. * collapseItem 折叠面板Item
  57. * @description 通过折叠面板收纳内容区域搭配u-collapse使用
  58. * @tutorial https://www.uviewui.com/components/collapse.html
  59. * @property {String} title 标题
  60. * @property {String} value 标题右侧内容
  61. * @property {String} label 标题下方的描述信息
  62. * @property {Boolean} disbled 是否禁用折叠面板 ( 默认 false )
  63. * @property {Boolean} isLink 是否展示右侧箭头并开启点击反馈 ( 默认 true )
  64. * @property {Boolean} clickable 是否开启点击反馈 ( 默认 true )
  65. * @property {Boolean} border 是否显示内边框 ( 默认 true )
  66. * @property {String} align 标题的对齐方式 ( 默认 'left' )
  67. * @property {String | Number} name 唯一标识符
  68. * @property {String} icon 标题左侧图片可为绝对路径的图片或内置图标
  69. * @event {Function} change 某个item被打开或者收起时触发
  70. * @example <u-collapse-item :title="item.head" v-for="(item, index) in itemList" :key="index">{{item.body}}</u-collapse-item>
  71. */
  72. export default {
  73. name: "u-collapse-item",
  74. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  75. data() {
  76. return {
  77. elId: uni.$u.guid(),
  78. // uni.createAnimation的导出数据
  79. animationData: {},
  80. // 是否展开状态
  81. expanded: false,
  82. // 根据expanded确定是否显示border,为了控制展开时,cell的下划线更好的显示效果,进行一定时间的延时
  83. showBorder: false,
  84. // 是否动画中,如果是则不允许继续触发点击
  85. animating: false,
  86. // 父组件u-collapse的参数
  87. parentData: {
  88. accordion: false,
  89. border: false
  90. }
  91. };
  92. },
  93. watch: {
  94. expanded(n) {
  95. clearTimeout(this.timer)
  96. this.timer = null
  97. // 这里根据expanded的值来进行一定的延时,是为了cell的下划线更好的显示效果
  98. this.timer = setTimeout(() => {
  99. this.showBorder = n
  100. }, n ? 10 : 290)
  101. }
  102. },
  103. mounted() {
  104. this.init()
  105. },
  106. methods: {
  107. // 异步获取内容,或者动态修改了内容时,需要重新初始化
  108. init() {
  109. // 初始化数据
  110. this.updateParentData()
  111. if (!this.parent) {
  112. return uni.$u.error('u-collapse-item必须要搭配u-collapse组件使用')
  113. }
  114. const {
  115. value,
  116. accordion,
  117. children = []
  118. } = this.parent
  119. if (accordion) {
  120. if (uni.$u.test.array(value)) {
  121. return uni.$u.error('手风琴模式下,u-collapse组件的value参数不能为数组')
  122. }
  123. this.expanded = this.name == value
  124. } else {
  125. if (!uni.$u.test.array(value) && value !== null) {
  126. return uni.$u.error('非手风琴模式下,u-collapse组件的value参数必须为数组')
  127. }
  128. this.expanded = (value || []).some(item => item == this.name)
  129. }
  130. // 设置组件的展开或收起状态
  131. this.$nextTick(function() {
  132. this.setContentAnimate()
  133. })
  134. },
  135. updateParentData() {
  136. // 此方法在mixin中
  137. this.getParentData('u-collapse')
  138. },
  139. async setContentAnimate() {
  140. // 每次面板打开或者收起时,都查询元素尺寸
  141. // 好处是,父组件从服务端获取内容后,变更折叠面板后可以获得最新的高度
  142. const rect = await this.queryRect()
  143. const height = this.expanded ? rect.height : 0
  144. this.animating = true
  145. // #ifdef APP-NVUE
  146. const ref = this.$refs['animation'].ref
  147. animation.transition(ref, {
  148. styles: {
  149. height: height + 'px'
  150. },
  151. duration: this.duration,
  152. // 必须设置为true,否则会到面板收起或展开时,页面其他元素不会随之调整它们的布局
  153. needLayout: true,
  154. timingFunction: 'ease-in-out',
  155. }, () => {
  156. this.animating = false
  157. })
  158. // #endif
  159. // #ifndef APP-NVUE
  160. const animation = uni.createAnimation({
  161. timingFunction: 'ease-in-out',
  162. });
  163. animation
  164. .height(height)
  165. .step({
  166. duration: this.duration,
  167. })
  168. .step()
  169. // 导出动画数据给面板的animationData值
  170. this.animationData = animation.export()
  171. // 标识动画结束
  172. uni.$u.sleep(this.duration).then(() => {
  173. this.animating = false
  174. })
  175. // #endif
  176. },
  177. // 点击collapsehead头部
  178. clickHandler() {
  179. if (this.disabled && this.animating) return
  180. // 设置本组件为相反的状态
  181. this.parent && this.parent.onChange(this)
  182. },
  183. // 查询内容高度
  184. queryRect() {
  185. // #ifndef APP-NVUE
  186. // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://www.uviewui.com/js/getRect.html
  187. // 组件内部一般用this.$uGetRect,对外的为this.$u.getRect,二者功能一致,名称不同
  188. return new Promise(resolve => {
  189. this.$uGetRect(`#${this.elId}`).then(size => {
  190. resolve(size)
  191. })
  192. })
  193. // #endif
  194. // #ifdef APP-NVUE
  195. // nvue下,使用dom模块查询元素高度
  196. // 返回一个promise,让调用此方法的主体能使用then回调
  197. return new Promise(resolve => {
  198. dom.getComponentRect(this.$refs[this.elId], res => {
  199. resolve(res.size)
  200. })
  201. })
  202. // #endif
  203. }
  204. },
  205. };
  206. </script>
  207. <style lang="scss">
  208. @import "../../libs/css/components.scss";
  209. .u-collapse-item {
  210. &__content {
  211. overflow: hidden;
  212. height: 0;
  213. &__text {
  214. padding: 12px 15px;
  215. color: $u-content-color;
  216. font-size: 14px;
  217. line-height: 18px;
  218. }
  219. }
  220. }
  221. </style>