u-waterfall.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="u-waterfall">
  3. <view ref="u-left-column" id="u-left-column" class="u-column">
  4. <slot name="left" :leftList="leftList"></slot>
  5. </view>
  6. <view ref="u-right-column" id="u-right-column" class="u-column">
  7. <slot name="right" :rightList="rightList"></slot>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. /**
  13. * waterfall 瀑布流
  14. * @description 这是一个瀑布流形式的组件,内容分为左右两列,结合uview的懒加载组件效果更佳。相较于某些只是奇偶数左右分别,或者没有利用vue作用域插槽的做法,uview的瀑布流实现了真正的 组件化,搭配LazyLoad 懒加载和loadMore 加载更多组件,让您开箱即用,眼前一亮。
  15. * @tutorial https://uview-plus.jiangruyi.com/components/waterfall.html
  16. * @property {Array} flow-list 用于渲染的数据
  17. * @property {String Number} add-time 单条数据添加到队列的时间间隔,单位ms,见上方注意事项说明(默认200)
  18. * @example <u-waterfall :flowList="flowList"></u-waterfall>
  19. */
  20. import { mpMixin } from '../../libs/mixin/mpMixin';
  21. import { mixin } from '../../libs/mixin/mixin';
  22. export default {
  23. name: "u-waterfall",
  24. props: {
  25. // #ifdef VUE2
  26. value: {
  27. // 瀑布流数据
  28. type: Array,
  29. required: true,
  30. default: function() {
  31. return [];
  32. }
  33. },
  34. // #endif
  35. // #ifdef VUE3
  36. modelValue: {
  37. // 瀑布流数据
  38. type: Array,
  39. required: true,
  40. default: function() {
  41. return [];
  42. }
  43. },
  44. // #endif
  45. // 每次向结构插入数据的时间间隔,间隔越长,越能保证两列高度相近,但是对用户体验越不好
  46. // 单位ms
  47. addTime: {
  48. type: [Number, String],
  49. default: 200
  50. },
  51. // id值,用于清除某一条数据时,根据此idKey名称找到并移除,如数据为{idx: 22, name: 'lisa'}
  52. // 那么该把idKey设置为idx
  53. idKey: {
  54. type: String,
  55. default: 'id'
  56. }
  57. },
  58. mixins: [mpMixin, mixin],
  59. data() {
  60. return {
  61. leftList: [],
  62. rightList: [],
  63. tempList: [],
  64. children: []
  65. }
  66. },
  67. watch: {
  68. copyFlowList(nVal, oVal) {
  69. // 取差值,即这一次数组变化新增的部分
  70. let startIndex = Array.isArray(oVal) && oVal.length > 0 ? oVal.length : 0;
  71. // 拼接上原有数据
  72. this.tempList = this.tempList.concat(this.cloneData(nVal.slice(startIndex)));
  73. this.splitData();
  74. }
  75. },
  76. mounted() {
  77. this.tempList = this.cloneData(this.copyFlowList);
  78. this.splitData();
  79. },
  80. computed: {
  81. // 破坏flowList变量的引用,否则watch的结果新旧值是一样的
  82. copyFlowList() {
  83. // #ifdef VUE2
  84. return this.cloneData(this.value);
  85. // #endif
  86. // #ifdef VUE3
  87. return this.cloneData(this.modelValue);
  88. // #endif
  89. }
  90. },
  91. emits: ['update:modelValue'],
  92. methods: {
  93. async splitData() {
  94. if (!this.tempList.length) return;
  95. let leftRect = await this.$uGetRect('#u-left-column');
  96. let rightRect = await this.$uGetRect('#u-right-column');
  97. // 如果左边小于或等于右边,就添加到左边,否则添加到右边
  98. let item = this.tempList[0];
  99. // 解决多次快速上拉后,可能数据会乱的问题,因为经过上面的两个await节点查询阻塞一定时间,加上后面的定时器干扰
  100. // 数组可能变成[],导致此item值可能为undefined
  101. if (!item) return;
  102. if (leftRect.height < rightRect.height) {
  103. this.leftList.push(item);
  104. } else if (leftRect.height > rightRect.height) {
  105. this.rightList.push(item);
  106. } else {
  107. // 这里是为了保证第一和第二张添加时,左右都能有内容
  108. // 因为添加第一张,实际队列的高度可能还是0,这时需要根据队列元素长度判断下一个该放哪边
  109. if (this.leftList.length <= this.rightList.length) {
  110. this.leftList.push(item);
  111. } else {
  112. this.rightList.push(item);
  113. }
  114. }
  115. // 移除临时列表的第一项
  116. this.tempList.splice(0, 1);
  117. // 如果临时数组还有数据,继续循环
  118. if (this.tempList.length) {
  119. setTimeout(() => {
  120. this.splitData();
  121. }, this.addTime)
  122. }
  123. },
  124. // 复制而不是引用对象和数组
  125. cloneData(data) {
  126. return JSON.parse(JSON.stringify(data));
  127. },
  128. // 清空数据列表
  129. clear() {
  130. this.leftList = [];
  131. this.rightList = [];
  132. // 同时清除父组件列表中的数据
  133. // #ifdef VUE2
  134. this.$emit('input', []);
  135. // #endif
  136. // #ifdef VUE3
  137. this.$emit('update:modelValue', []);
  138. // #endif
  139. this.tempList = [];
  140. },
  141. // 清除某一条指定的数据,根据id实现
  142. remove(id) {
  143. // 如果findIndex找不到合适的条件,就会返回-1
  144. let index = -1;
  145. index = this.leftList.findIndex(val => val[this.idKey] == id);
  146. if (index != -1) {
  147. // 如果index不等于-1,说明已经找到了要找的id,根据index索引删除这一条数据
  148. this.leftList.splice(index, 1);
  149. } else {
  150. // 同理于上方面的方法
  151. index = this.rightList.findIndex(val => val[this.idKey] == id);
  152. if (index != -1) this.rightList.splice(index, 1);
  153. }
  154. // 同时清除父组件的数据中的对应id的条目
  155. // #ifdef VUE2
  156. index = this.value.findIndex(val => val[this.idKey] == id);
  157. if (index != -1) this.$emit('input', this.value.splice(index, 1));
  158. // #endif
  159. // #ifdef VUE3
  160. index = this.modelValue.findIndex(val => val[this.idKey] == id);
  161. if (index != -1) this.$emit('update:modelValue', this.modelValue.splice(index, 1));
  162. // #endif
  163. },
  164. // 修改某条数据的某个属性
  165. modify(id, key, value) {
  166. // 如果findIndex找不到合适的条件,就会返回-1
  167. let index = -1;
  168. index = this.leftList.findIndex(val => val[this.idKey] == id);
  169. if (index != -1) {
  170. // 如果index不等于-1,说明已经找到了要找的id,修改对应key的值
  171. this.leftList[index][key] = value;
  172. } else {
  173. // 同理于上方面的方法
  174. index = this.rightList.findIndex(val => val[this.idKey] == id);
  175. if (index != -1) this.rightList[index][key] = value;
  176. }
  177. // 修改父组件的数据中的对应id的条目
  178. // #ifdef VUE2
  179. index = this.value.findIndex(val => val[this.idKey] == id);
  180. // #endif
  181. // #ifdef VUE3
  182. index = this.modelValue.findIndex(val => val[this.idKey] == id);
  183. // #endif
  184. if (index != -1) {
  185. // 首先复制一份value的数据
  186. // #ifdef VUE2
  187. let data = this.cloneData(this.value);
  188. // #endif
  189. // #ifdef VUE3
  190. let data = this.cloneData(this.modelValue);
  191. // #endif
  192. // 修改对应索引的key属性的值为value
  193. data[index][key] = value;
  194. // 修改父组件通过v-model绑定的变量的值
  195. // #ifdef VUE2
  196. this.$emit('input', data);
  197. // #endif
  198. // #ifdef VUE3
  199. this.$emit('update:modelValue', data);
  200. // #endif
  201. }
  202. }
  203. }
  204. }
  205. </script>
  206. <style lang="scss" scoped>
  207. @import "../../libs/css/components.scss";
  208. .u-waterfall {
  209. @include flex;
  210. flex-direction: row;
  211. align-items: flex-start;
  212. }
  213. .u-column {
  214. @include flex;
  215. flex: 1;
  216. flex-direction: column;
  217. overflow: hidden;
  218. /* #ifndef APP-NVUE */
  219. height: 100%;
  220. /* #endif */
  221. }
  222. .u-image {
  223. /* #ifndef APP-NVUE */
  224. max-width: 100%;
  225. /* #endif */
  226. }
  227. </style>