-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
261 lines (226 loc) · 6.86 KB
/
scripts.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
class SelectAreaClass {
selectRow=-1
selectCol=-1
startCol=-1;
startRow=-1;
endCol=-1;
endRow=-1;
setSelect(i,j) {
this.selectCol=i;
this.selectRow=j;
this.startRow=-1
this.startCol=-1
this.endRow=-1
this.endCol=-1
}
setSelectArea(i,j) {
if(this.selctRow==-1){
this.setSelect(i,j)
}else{
this.startRow=Math.min(i,this.selectRow)
this.startCol=Math.min(j,this.selectCol)
this.endRow=Math.max(i,this.selectRow)
this.endCol=Math.max(j,this.selectCol)
}
}
thereIsSelection(){
return this.selectRow!=-1
}
getSelectArea(){
if(this.endRow==-1)
return [this.selectRow,this.selectCol,this.selectRow,this.selectCol]
return [this.startRow ,this.startCol ,this.endRow, this.endCol]
}
}
const selectArea = new SelectAreaClass();
function createTable() {
const table = parseArray().map((row,i) => {
const rowParse = row.map((cell,j) => {
return `<td>${cell}</td>`;
});
return `<tr>${rowParse.join('')}</tr>`
})
return `<table width="100%">${table.join('')}</table>`;
}
function arraysEqual(a, b) {
if (a === b) return true;
if (a == null || b == null) return false;
if (a.length !== b.length) return false;
for (var i = 0; i < a.length; ++i) {
if (a[i] !== b[i]) return false;
}
return true;
}
function setSelect(e,i,j){
applayToSelect((e)=>{
e.className=''
})
if(e.shiftKey){
selectArea.setSelectArea(i,j)
}else{
selectArea.setSelect(j,i)
}
applayToSelect((e)=>{
e.className='selectArea'
})
$('#widthinp').val(getSelectElement().clientWidth)
$('#heightinp').val(getSelectElement().clientHeight)
}
function getSelectElement(){
if(!selectArea.thereIsSelection()){
return
}
const btable=$('tbody')[0].children;
const row=btable[selectArea.selectRow].children;
return row[selectArea.selectCol];
}
function addTdEvent(){
const btable=$('tbody')[0].children;
for (let i = 0; i < btable.length; i++) {
const row=btable[i].children;
for (let j = 0; j < row.length; j++) {
row[j].onclick=(e)=>setSelect(e,i,j)
}
}
}
function applayToSelect(apply){
if(!selectArea.thereIsSelection()){
return
}
const [startRow ,startCol ,endRow, endCol] = selectArea.getSelectArea();
const btable=$('tbody')[0].children;
for (let i = startRow; i < Math.min(btable.length,endRow+1); i++) {
const row=btable[i].children;
for (let j = startCol; j < Math.min(row.length,endCol+1); j++) {
apply(row[j])
}
}
drawTable()
}
function parseArray() {
const content = $('#parseTable').val();
const rows = content.split('\n');
const table = rows.map((row) => row.split('\t'))
if( arraysEqual(table.at(-1),['']) || arraysEqual(table.at(-1),[])){
table.pop(-1)
}
return table;
}
function setTitle(title, percentual) {
$("#currentTitle").html(title);
}
function pageOne() {
setTitle('Incollare La Tabella Da Excel')
$('#previusPage').hide()
$('#nextPage').show()
$('#firstPage').show();
$('#secondPage').hide();
}
function pageTwo() {
setTitle('Modificare La Tabella')
$('#nextPage').hide()
$('#previusPage').show()
$('#firstPage').hide();
$('#secondPage').show();
const table = createTable()
drawTable(table);
setLayout()
}
function drawTable(table) {
if(table==undefined){
table=$('#containTable').html();
}else{
$('#containTable').html(table)
}
$('#copyarea').val(table)
addTdEvent()
}
function addAttr(ele,map){
for(const index in map){
ele.attr(index,map[index])
}
drawTable()
}
function remAttr(ele,map){
for(const index in map){
ele.removeAttr(map[index])
}
drawTable()
}
function addBorder() {
const ele =$('table');
if(ele[0]['border']=='')
addAttr(ele,{'border':'0','cellspacing': '0'});
else
remAttr(ele,['border','cellspacing']);
}
function copyClipboard() {
const val = $('#copyarea').val()
navigator.clipboard.writeText(val);
const copied = document.getElementById('copied');
const toastBootstrap = bootstrap.Toast.getOrCreateInstance(copied)
toastBootstrap.show()
}
function addWrappingEle(ele,wrap){
const text=delWrappingEle(ele)
ele.innerHTML=`<${wrap}>${text}</${wrap}>`
}
function delWrappingEle(ele){
if(ele.children.length>0){
const text=ele.children[0].innerHTML;
ele.innerHTML=text;
return text;
}
return ele.innerHTML;
}
function mergeCols(ele){
const row=ele.parentElement;
const numberOfCols=row.children.length;
for(let i=0;i<numberOfCols-1;i++){
row.children[1].remove();
}
ele.setAttribute('colspan',numberOfCols);
}
function setLayout(){
const btable=$('tbody')[0].children;
const lastRow=btable.length;
setSelect({shiftKey:false},0,0)
setSelect({shiftKey:true},lastRow,0)
applayToSelect((e)=>e.setAttribute('bgcolor',$('#colorBG').val()))
setSelect({shiftKey:false},lastRow-1,0)
setSelect({shiftKey:true},lastRow,btable[lastRow-1].children.length)
applayToSelect((e)=>addWrappingEle(e,'b'))
setSelect({shiftKey:false},0,0)
setSelect({shiftKey:true},0,btable[0].children.length)
applayToSelect((e)=>e.setAttribute('bgcolor',$('#colorBG').val()))
applayToSelect((e)=>e.setAttribute('align','center'));
setSelect({shiftKey:false},1,1)
setSelect({shiftKey:true},lastRow,btable[lastRow-1].children.length)
applayToSelect((e)=>e.setAttribute('align','right'));
}
function reset(){
drawTable(table);
setLayout()
}
function main() {
$('#previusPage').on('click', pageOne);
$('#nextPage').on('click', pageTwo);
$('#setBorder').on('click', addBorder);
$('#setLayout').on('click', setLayout);
$('#setRight').on('click', ()=>applayToSelect((e)=>e.setAttribute('align','right')));
$('#setCenter').on('click', ()=>applayToSelect((e)=>e.setAttribute('align','center')));
$('#setLeft').on('click', ()=>applayToSelect((e)=>e.setAttribute('align','left')));
$('#reset').on('click', reset);
$('#setBg').on('click', ()=>applayToSelect((e)=>e.setAttribute('bgcolor',$('#colorBG').val())));
$('#setBold').on('click', ()=>applayToSelect((e)=>addWrappingEle(e,'b')));
$('#setUnFormat').on('click', ()=>applayToSelect((e)=>delWrappingEle(e)));
$('#mergeCols').on('click', ()=>applayToSelect((e)=>mergeCols(e)));
for(let i=1;i<=5;i++){
$(`#setH${i}`).on('click', ()=>applayToSelect((e)=>addWrappingEle(e,`h${i}`)));
}
$('#copy').on('click', copyClipboard);
$('#heightbtn').on('click', ()=>applayToSelect((e)=>e.setAttribute('height',$('#heightinp').val())));
$('#widthbtn').on('click', ()=>applayToSelect((e)=>e.setAttribute('width',$('#widthinp').val())));
pageOne();
}
main()