-
Notifications
You must be signed in to change notification settings - Fork 0
/
copyCutpast.js
132 lines (105 loc) · 4.41 KB
/
copyCutpast.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
129
130
131
132
let ctrlKey;
document.addEventListener("keydown", (e) => {// crtl key is pressed
ctrlKey = e.ctrlKey;// Boolean
})
document.addEventListener("keyup", (e) => { // crtl key is not pressed
ctrlKey = e.ctrlKey; // Boolean
})
for (let i =0;i < rows;i++) {
for (let j = 0;j < cols;j++) { // adding event listeners to each cell to selecting end points of selected portion
let cell = document.querySelector(`.cell[rid="${i}"][cid="${j}"]`);
handleSelectedCells(cell);
}
}
let copyBtn = document.querySelector(".copy");
let cutBtn = document.querySelector(".cut");
let pasteBtn = document.querySelector(".paste");
let rangeStorage = [];
function handleSelectedCells(cell) {
cell.addEventListener("click", (e) => {
if (!ctrlKey) return; // if control is not pressed
if (rangeStorage.length >= 2) {// if two cells are already selected and we are clicking some where else range is reset
defaultSelectedCellsUI();// setting cell border back to normal
rangeStorage = [];
}
cell.style.border = "3px solid #218c74";
let rid = Number(cell.getAttribute("rid"));
let cid = Number(cell.getAttribute("cid"));
rangeStorage.push([rid, cid]);
})
}
function defaultSelectedCellsUI() { // set each selected cell borders back to normal
for (let i = 0;i < rangeStorage.length;i++) {
let cell = document.querySelector(`.cell[rid="${rangeStorage[i][0]}"][cid="${rangeStorage[i][1]}"]`);
cell.style.border = "1px solid lightgrey";
}
}
let copyData = [];
copyBtn.addEventListener("click", (e) => {
if (rangeStorage.length < 2) return; // if two cells are not selected
copyData = [];
let [strow, stcol, endrow, endcol] = [ rangeStorage[0][0], rangeStorage[0][1], rangeStorage[1][0], rangeStorage[1][1] ];
for (let i = strow;i <= endrow;i++) {
let copyRow = [];
for (let j = stcol;j <= endcol;j++) {
let cellProp = sheetDB[i][j];
copyRow.push(cellProp);// we copy all properties of cell between two endpoints
}
copyData.push(copyRow);
}
defaultSelectedCellsUI();// remove selected borders
})
cutBtn.addEventListener("click", (e) => { // same as copy feature just current cell properties to defaults
if (rangeStorage.length < 2) return;
let [strow, stcol, endrow, endcol] = [ rangeStorage[0][0], rangeStorage[0][1], rangeStorage[1][0], rangeStorage[1][1] ];
for (let i = strow;i <= endrow;i++) {
for (let j = stcol;j <= endcol;j++) {
let cell = document.querySelector(`.cell[rid="${i}"][cid="${j}"]`);
// DB
let cellProp = sheetDB[i][j];
// setting properties to default
cellProp.value = "";
cellProp.bold = false;
cellProp.italic = false;
cellProp.underline = false;
cellProp.fontSize = 14;
cellProp.fontFamily = "monospace";
cellProp.fontColor = "#000000";
cellProp.BGcolor = "#000000";
cellProp.alignment = "left";
// UI
cell.click();
}
}
defaultSelectedCellsUI();
})
pasteBtn.addEventListener("click" ,(e) => {
if (rangeStorage.length < 2) return;
let rowDiff = Math.abs(rangeStorage[0][0] - rangeStorage[1][0]);
let colDiff = Math.abs(rangeStorage[0][1] - rangeStorage[1][1]);
// finding which cell is clicked
let address = addressBar.value;
let [stRow, stCol] = decodeRIDCIDFromAddress(address);
// iterate over cell numbers of cell which were selected and set the properties
for (let i = stRow,r = 0;i <= stRow+rowDiff;i++,r++) {
for (let j = stCol,c = 0;j <= stCol+colDiff;j++,c++) {
let cell = document.querySelector(`.cell[rid="${i}"][cid="${j}"]`);
console.log(cell);
if (!cell) continue;
// DB
let data = copyData[r][c];
let cellProp = sheetDB[i][j];
// setting values for paste
cellProp.value = data.value;
cellProp.bold = data.bold;
cellProp.italic = data.italic;
cellProp.underline = data.underline;
cellProp.fontSize = data.fontSize;
cellProp.fontFamily = data.fontFamily;
cellProp.fontColor = data.fontColor;
cellProp.BGcolor = data.BGcolor;
cellProp.alignment = data.alignment;
cell.click();
}
}
})