-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
218 lines (180 loc) · 6.23 KB
/
script.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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// column name generated
$(document).ready(function () {
let cellContainer = $(".input-cell-container");
for (let i = 1; i <= 100; i++) {
let ans = "";
let n = i;
while (n > 0) {
let rem = n % 26;
if (rem == 0) {
ans = "Z" + ans;
n = Math.floor(n / 26) - 1;
} else {
ans = String.fromCharCode(rem - 1 + 65) + ans;
n = Math.floor(n / 26);
}
}
// row name and column name generated
let column = $(`<div class="column-name colId-${i}" id="colCod-${ans}">${ans}</div>`);
$(".column-name-container").append(column);
let row = $(`<div class="row-name" id="rowId-${i}">${i}</div>`);
$(".row-name-container").append(row);
}
// Input row And column generation
for (let i = 1; i <= 100; i++) {
let row = $(`<div class="cell-row"></div>`);
for (let j = 1; j <= 100; j++) {
let colCode = $(`.colId-${j}`).attr("id").split("-")[1];
let column = $(`<div class="input-cell" contenteditable="false" id = "row-${i}-col-${j}" data="code-${colCode}"></div>`);
row.append(column);
}
$(".input-cell-container").append(row);
}
// eventListiner
$(".align-icon").click(function () {
$(".align-icon.selected").removeClass("selected");
$(this).addClass("selected");
});
$(".style-icon").click(function () {
$(this).toggleClass("selected");
});
// selecting multiple cells
$(".input-cell").click(function (e) {
if (e.ctrlKey) {
let [rowId, colId] = getRowCol(this);
if (rowId > 1) {
let topCellSelected = $(`#row-${rowId - 1}-col-${colId}`).hasClass("selected");
if (topCellSelected) {
$(this).addClass("top-cell-selected");
$(`#row-${rowId - 1}-col-${colId}`).addClass("bottom-cell-selected");
}
}
if (rowId < 100) {
let bottomCellSelected = $(`#row-${rowId + 1}-col-${colId}`).hasClass("selected");
if (bottomCellSelected) {
$(this).addClass("bottom-cell-selected");
$(`#row-${rowId + 1}-col-${colId}`).addClass("top-cell-selected");
}
}
if (colId > 1) {
let leftCellSelected = $(`#row-${rowId}-col-${colId - 1}`).hasClass("selected");
if (leftCellSelected) {
$(this).addClass("left-cell-selected");
$(`#row-${rowId}-col-${colId - 1}`).addClass("right-cell-selected");
}
}
if (colId < 100) {
let rightCellSelected = $(`#row-${rowId}-col-${colId + 1}`).hasClass("selected");
if (rightCellSelected) {
$(this).addClass("right-cell-selected");
$(`#row-${rowId}-col-${colId + 1}`).addClass("left-cell-selected");
}
}
$(this).addClass("selected");
}
else {
$(".input-cell.selected").removeClass("selected");
$(this).addClass("selected");
}
})
// making cells editable and remain in focus while typing
$(".input-cell").dblclick(function () {
$(".input-cell.selected").removeClass("selected");
$(this).addClass("selected");
$(this).attr("contenteditable", "true");
$(this).focus();
});
$(".input-cell").blur(function () {
$(".input-cell.selected").attr("contenteditable", "false");
});
// making row and column scrollable
$(".input-cell-container").scroll(function () {
$(".column-name-container").scrollLeft(this.scrollLeft);
$(".row-name-container").scrollTop(this.scrollTop);
});
});
function getRowCol(ele) {
let idArray = $(ele).attr("id").split("-");
let rowId = parseInt(idArray[1]);
let colId = parseInt(idArray[3]);
return [rowId, colId];
}
function updateCell(property, value) {
$(".input-cell.selected").each(function () {
$(this).css(property, value);
})
}
$(".icon-bold").click(function () {
if ($(this).hasClass("selected")) {
updateCell("font-weight", "");
} else {
updateCell("font-weight", "bold");
}
});
$(".icon-italic").click(function () {
if ($(this).hasClass("selected")) {
updateCell("font-style", "");
} else {
updateCell("font-style", "italic");
}
});
$(".icon-underline").click(function () {
if ($(this).hasClass("selected")) {
updateCell("text-decoration", "");
} else {
updateCell("text-decoration", "underline");
}
});
$(".font-size-selector").click(function () {
const font_size = $(this)[0].value;
if ($(this).hasClass("selected")) {
updateCell("font-size", "");
} else {
updateCell("font-size", `${font_size}px`);
}
})
$('.font-family-selector').click(function () {
const font_family_value = $(this)[0].value;
if ($(this).hasClass("selected")) {
updateCell("font-family", "");
} else {
updateCell("font-family", `${font_family_value}`);
}
})
$(".icon-align-left").click(function () {
if ($(this).hasClass("selected")) {
updateCell("text-align", "");
} else {
updateCell("text-align", "left");
}
});
$(".icon-align-center").click(function () {
if ($(this).hasClass("selected")) {
updateCell("text-align", "");
} else {
updateCell("text-align", "center");
}
});
$(".icon-align-right").click(function () {
if ($(this).hasClass("selected")) {
updateCell("text-align", "");
} else {
updateCell("text-align", "right");
}
});
$(".icon-color-fill").click(function () {
const color_name = $(".fill-background-selector")[0].value;
if ($(this).hasClass("selected")) {
updateCell("background-color", "");
} else {
updateCell("background-color", `${color_name}`);
}
});
$(".icon-color-text").click(function () {
const color_name = $(".text-color-selector")[0].value;
if ($(this).hasClass("selected")) {
updateCell("color", "");
} else {
updateCell("color", `${color_name}`);
}
});