zhangwei
2025-01-16 ea44321752674bc97efb7bfa987c19121c3d6881
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
// 本文件由FirstUI授权予四川政采招投标咨询有限公司(会员ID:16  3,营业执照号: 9 151   0 1313  3 20 0 6 19   3  K)专用,请尊重知识产权,勿私下传播,违者追究法律责任。
// #ifdef APP-NVUE
const animation = uni.requireNativePlugin('animation');
export default {
    watch: {
        list(vals) {
            this.$nextTick(() => {
                setTimeout(() => {
                    this.getRefs(vals)
                }, 50)
            })
        }
    },
    data() {
        return {
            current: -1,
            startTouch: null,
            tDragging: false,
            sId: null,
            preStartKey: null,
            isAndroid: false,
            divisor: 1/2
        }
    },
    created() {
        const res = uni.getSystemInfoSync();
        this.isAndroid = res.platform.toLocaleLowerCase() == "android"
        this.divisor = this.isAndroid ? 5/4 : 1/2
        this.allRefs = []
    },
    methods: {
        getEl(el) {
            return el.ref || el[0].ref;
        },
        getRefs(vals) {
            this.allRefs = []
            if (!vals || vals.length === 0) return;
            vals.forEach((item, index) => {
                let ref = this.getEl(this.$refs[`f_drag_${index}`])
                this.allRefs.push(ref)
                this._animation(ref, index, item.transX, item.transY)
            })
        },
        _animation(ref, index, x, y) {
            animation.transition(ref, {
                styles: {
                    transform: `translate(${x},${y})`
                },
                duration: this.current === index ? 0 : 250,
                timingFunction: 'linear',
                needLayout: false,
                delay: 0
            });
        },
        outOfRange(x1, y1, x2, y2, x3, y3) {
            return x1 < 0 || x1 >= y1 || x2 < 0 || x2 >= y2 || x3 < 0 || x3 >= y3
        },
        listSort(sKey, eKey) {
            let endRealKey = -1;
            this.list.forEach((item) => {
                if (item.sortKey === eKey) endRealKey = item.realKey;
            });
 
            return this.list.map((item) => {
                let cKey = item.sortKey;
                let rKey = item.realKey;
                if (sKey < eKey) {
                    if (cKey > sKey && cKey <= eKey) {
                        --rKey;
                        --cKey;
                    } else if (cKey === sKey) {
                        rKey = endRealKey;
                        cKey = eKey;
                    }
                } else if (sKey > eKey) {
                    if (cKey >= eKey && cKey < sKey) {
                        ++rKey;
                        ++cKey;
                    } else if (cKey === sKey) {
                        rKey = endRealKey;
                        cKey = eKey;
                    }
                }
                if (item.sortKey !== cKey) {
                    let columns = Number(this.columns)
                    item.transX = (cKey % columns) * this.cellWidth + "px";
                    item.transY = Math.floor(cKey / columns) * this.cellHeight + "px";
                    item.sortKey = cKey;
                    item.realKey = rKey;
                }
                return item;
            });
        },
        emitsEvent(list, type) {
            let changeList = [],
                itemList = [];
 
            list.forEach((item) => {
                changeList[item.sortKey] = item;
            });
 
            changeList.forEach((item) => {
                itemList.push(item.entity);
            });
            if (type == "change") {
                this.change({
                    itemList: itemList
                });
            } else {
                this.sortend({
                    itemList: itemList
                });
            }
        },
        getXY(touch) {
            if (this.isAndroid) {
                touch.pageX = touch.screenX
                touch.pageY = touch.screenY
            }
            return touch
        },
        longPress(e) {
            if (!this.isDrag) return;
            let touch = e.changedTouches && e.changedTouches[0] ? e.changedTouches[0] : this.startTouch;
            if (!touch) return;
            this.current = Number(e.currentTarget.dataset.index);
            if (this.tDragging) return;
            let ref = this.allRefs[this.current]
            if (!ref) return;
            touch = this.getXY(touch)
            let transX = this.columns == 1 ? 0 : touch.pageX - (this.cellWidth / 2 + this.wrapLeft) + 'px';
            // this.initY = touch.pageY - (this.wrapTop + this.cellHeight * (Math.ceil(this.current / this.columns)))
            let transY = touch.pageY - (this.cellHeight * this.divisor + this.wrapTop ) + 'px';
            this._animation(ref, this.current, transX, transY)
            this.sId = touch.identifier;
            this.tDragging = true;
        },
        touchstart(e) {
            if (!this.isDrag) return;
            this.startTouch = e.changedTouches[0] || e.touches[0];
        },
        touchmove(e) {
            if (!this.isDrag || !this.tDragging) return;
            let touch = e.changedTouches[0] || e.touches[0];
            // || this.sId !== touch.identifier
            if (!touch) return;
            touch = this.getXY(touch)
            let transX = this.columns == 1 ? 0 : touch.pageX - (this.cellWidth / 2 + this.wrapLeft);
            let transY = touch.pageY - (this.cellHeight * this.divisor + this.wrapTop);
            if (touch.pageY > this.windowHeight - this.cellHeight) {
                this.pageScroll({
                    scrollTop: touch.pageY + this.cellHeight - this.windowHeight
                })
            } else if (touch.pageY < this.cellHeight) {
                this.pageScroll({
                    scrollTop: touch.pageY - this.cellHeight
                })
            }
            let ref = this.allRefs[this.current]
            if (!ref) return;
            this._animation(ref, this.current, transX + 'px', transY + 'px')
            let startKey = this.list[this.current].sortKey;
            let curX = Math.round(transX / this.cellWidth);
            let curY = Math.round(transY / this.cellHeight);
            let endKey = curX + Number(this.columns) * curY;
 
            if (this.outOfRange(curX, Number(this.columns), curY, this.rows, endKey, this.list.length)) return;
            if (startKey === endKey || startKey === this.preStartKey) return;
            this.preStartKey = startKey;
            let list = this.listSort(startKey, endKey);
            this.allRefs.forEach((ins, index) => {
                var item = list[index];
                if (index !== this.current) {
                    this._animation(ins, index, item.transX, item.transY)
                }
            });
            this.listChange({
                itemList: list
            })
            this.emitsEvent(list, "change");
        },
        touchend(e) {
            if (!this.isDrag || !this.tDragging) return;
            this.emitsEvent(this.list, "sortend");
            let cur = this.current
            this.current = -1;
            let ref = this.allRefs[cur]
            if (!ref) return
            this._animation(ref, cur, this.list[cur].transX, this.list[cur].transY)
            this.preStartKey = -1;
            this.tDragging = false;
 
        }
    }
}
 
// #endif
 
// #ifndef APP-NVUE
export default {}
// #endif