masonry.js
3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/**
* 瀑布流组件
*/
Component({
properties: {
intervalWidth: {
type: String,
value: "20rpx"
}
},
data: {
items: [],
stopMasonry: false
},
methods: {
goDetail(e) {
// console.log('e', e);
this.triggerEvent('go-detail',e.currentTarget.dataset)
},
/**
* 批量添加元素
*
* @param {Array} items - 新增的元素数组
*/
append(items) {
if (Object.prototype.toString.call(items) !=='[object Array]') {
console.error("[masonry]参数类型错误,渲染失败");
return false;
}
this.setData({
stopMasonry: false
})
return this._refresh(items);
},
/**
* 批量删除瀑布流中的元素
*
* @param {Number} start - 开始下标
* @param {Number} end - 结束下标
*/
delete(start, end) {
const { items } = this.data;
if (start < end && start < items.length - 1) {
let len = end- start;
let newItems = items.splice(start, len);
this._refresh(newItems)
} else {
console.error("[masonry]初始下标异常,删除失败!");
}
},
/**
* 更新数组中的某个元素
*
* @param {Object} newItem - 修改后的元素
* @param {Number} index - 需要更新的数组下标
*/
updateItem(newItem, index) {
const { items } = this.data;
if (index <= items.length - 1) {
this.setData({
items: [
...items.slice(0, index),
Object.assign(items[index], newItem),
...items.slice(index + 1)
]
})
} else {
console.error("[masonry]下标越界,修改失败!");
}
},
/**
* 删除瀑布流中的某个元素
*
* @param {Number} index - 数组下标
*/
deleteItem(index) {
const { items } = this.data;
if (index <= items.length - 1) {
let newItems = items.splice(index, 1);
this._refresh(newItems)
} else {
console.error("[masonry]下标越界,删除失败!");
}
},
/**
* 刷新瀑布流
*
* @param {Array} items - 参与渲染的元素数组
*/
start(items) {
if (Object.prototype.toString.call(items) !=='[object Array]') {
console.error("[masonry]参数类型错误,渲染失败");
return false;
}
this.setData({
items: [],
stopMasonry: false
})
return this._refresh(items);
},
/**
* 停止渲染瀑布流
*/
stop() {
this.setData({
stopMasonry: true,
items: []
})
},
/**
* 刷新瀑布流
*
* @param {Array} items - 参与渲染的元素数组
*/
_refresh(items) {
const query = wx.createSelectorQuery().in(this)
this.columnNodes = query.selectAll('#left-col-inner, #right-col-inner')
return new Promise((resolve, reject) => {
this._render(items, 0, () => {
resolve()
})
})
},
/**
* 渲染函数
*
* @param {Array} items - 正在渲染的数组
* @param {Number} i - 当前渲染元素的下标
* @param {Function} onComplete - 完成后的回调函数
*/
_render (items, i, onComplete) {
if (items.length > i && !this.data.stopMasonry) {
this.columnNodes.boundingClientRect().exec(arr => {
const item = items[i]
const rects = arr[0]
const leftColHeight = rects[0].height
const rightColHeight = rects[1].height
this.setData({
items: [...this.data.items, {
...item,
columnPosition: leftColHeight <= rightColHeight ? 'left' : 'right'
}]
}, () => {
this._render(items, ++i, onComplete)
})
})
} else {
onComplete && onComplete()
}
}
}
});