-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstippets.js
128 lines (91 loc) · 2.79 KB
/
stippets.js
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
// APP.JS
handleStackSelect(block, stack, stackIndex, emptySpace) {
const {
selectedStack,
isBoardSelected,
} = this.state;
if(selectedStack === stackIndex) {
this.setState({
isBoardSelected: false,
selectedStack: null,
});
} else {
this.setState({
isBoardSelected: true,
selectedStack: stackIndex,
selectedBlock: block,
}, );
}
if (emptySpace) {
this.emptySpace = emptySpace;
}
if ( isBoardSelected && emptySpace ) {
this.moveElementInArray(stackIndex)
}
}
moveElementInArray(stackId) {
let array = this.shuffledData;
const value = this.state.selectedBlock;
const oldIndex = array.indexOf(value);
if (oldIndex > -1) {
let newIndex = ((stackId * 3) + this.emptySpace);
if (newIndex < 0){
newIndex = 0
} else if (newIndex >= array.length){
newIndex = array.length;
}
let arrayClone = array.slice();
arrayClone.splice(oldIndex,1);
arrayClone.splice(newIndex,0,value);
this.setState({
stacksData: this.groupData(arrayClone),
});
}
this.setState({
isBoardSelected: false,
selectedStack: null,
});
return array;
}
// this.moveElementInArray(this.shuffledData, block, stacksDataBlockIndex)
// moveElementInArray = (array, value, positionChange) => {
// const oldIndex = array.indexOf(value);
// if (oldIndex > -1) {
// let newIndex = (oldIndex + positionChange);
// if (newIndex < 0){
// newIndex = 0
// } else if (newIndex >= array.length){
// newIndex = array.length
// }
// let arrayClone = array.slice();
// arrayClone.splice(oldIndex,1);
// arrayClone.splice(newIndex,0,value);
// return arrayClone
// }
// return array
// }
// STACK.JS
renderBlocks = () => {
const stack = this.props.stack;
const blocks = stack.map((block, key) => {
if (block.isEmpty === true) {
this.emptySpace.push(key);
}
return <Block key={ key } block={ block } />
});
return blocks;
};
handleClick = () => {
const stack = this.props.stack;
const { isBoardSelected } = this.props;
const blocks = stack.find(block => {
if (block.isEmpty == null) {
return block;
}
});
if (!blocks) {
this.props.moveSelectedBlock(this.props.id);
return;
}
this.props.handleStackSelect(blocks, stack, this.props.id, this.emptySpace[this.emptySpace.length - 1]);
}