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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
// @ts-nocheck
"use client";
import * as React from "react";
import GC from "@mescius/spread-sheets";
import "@mescius/spread-sheets-resources-ko";
import { SpreadSheets } from "@mescius/spread-sheets-react";
GC.Spread.Common.CultureManager.culture("ko-kr");
GC.Spread.Sheets.LicenseKey = process.env.NEXT_PUBLIC_SPREADJS_KEY
GC.Spread.Sheets.Designer.LicenseKey = process.env.NEXT_PUBLIC_SPREADJS_KEY
const DataBinding = () => {
let spread = null;
let dataSource1 = null;
let dataSource2 = null;
const changeDataSource = () => {
if (!spread) return;
let sheet = spread.getActiveSheet();
if (sheet.getDataSource() === dataSource1) {
sheet.setDataSource(dataSource2);
} else {
sheet.setDataSource(dataSource1);
}
};
const initSpread = (currSpread) => {
spread = currSpread;
if(currSpread){
let company1 = new Company(
"Baidu",
null,
"We know everything!",
"Beijing 1st road",
"Beijing",
"010-12345678",
"baidu@baidu.com"
),
company2 = new Company(
"Tecent",
null,
"We have everything!",
"Shenzhen 2st road",
"Shenzhen",
"0755-12345678",
"tecent@qq.com"
),
company3 = new Company(
"Alibaba",
null,
"We sale everything!",
"Hangzhou 3rd road",
"Hangzhou",
"0571-12345678",
"alibaba@alibaba.com"
),
customer1 = new Customer("A1", "employee 1", company2),
customer2 = new Customer("A2", "employee 2", company3),
records1 = [
new Record("Finance charge on overdue balance at 1.5%", 1, 150),
new Record("Invoice #100 for $1000 on 2014/1/1", 1, 150),
],
records2 = [
new Record("Purchase server device", 2, 15000),
new Record("Company travel", 100, 1500),
new Record("Company Dinner", 100, 200),
new Record("Company Dinner", 100, 200),
new Record("Company Dinner", 100, 200),
new Record("Company Dinner", 100, 200),
new Record("Company Dinner", 100, 200),
new Record("Company Dinner", 100, 200),
],
invoice1 = new Invoice(
company1,
"00001",
new Date(2014, 0, 1),
customer1,
customer1,
records1
),
invoice2 = new Invoice(
company2,
"00002",
new Date(2014, 6, 6),
customer2,
customer2,
records2
);
dataSource1 = new GC.Spread.Sheets.Bindings.CellBindingSource(invoice1);
dataSource2 = new GC.Spread.Sheets.Bindings.CellBindingSource(invoice2);
//Get sheet instance
spread.suspendPaint();
let sheet = spread.sheets[0];
sheet.name("FINANCE CHARGE");
//Set value or bindingPath and style
let bindingPathCellType = new BindingPathCellType();
sheet
.getCell(1, 2)
.bindingPath("company.slogan")
.cellType(bindingPathCellType)
.vAlign(GC.Spread.Sheets.VerticalAlign.bottom);
sheet
.getCell(1, 4)
.value("INVOICE")
.foreColor("#58B6C0")
.font("33px Arial");
sheet
.getCell(3, 1)
.bindingPath("company.name")
.cellType(bindingPathCellType)
.foreColor("#58B6C0")
.font("bold 20px Arial");
sheet
.getCell(5, 1)
.bindingPath("company.address")
.cellType(bindingPathCellType);
sheet.getCell(5, 3).value("INVOICE NO.").font("bold 15px Arial");
sheet.getCell(5, 4).bindingPath("number").cellType(bindingPathCellType);
sheet
.getCell(6, 1)
.bindingPath("company.city")
.cellType(bindingPathCellType);
sheet.getCell(6, 3).value("DATE").font("bold 15px Arial");
sheet
.getCell(6, 4)
.bindingPath("date")
.cellType(bindingPathCellType)
.formatter("MM/dd/yyyy")
.hAlign(GC.Spread.Sheets.HorizontalAlign.left);
sheet
.getCell(7, 1)
.bindingPath("company.phone")
.cellType(bindingPathCellType);
sheet.getCell(7, 3).value("CUSTOMER ID").font("bold 15px Arial");
sheet
.getCell(7, 4)
.bindingPath("customer.id")
.cellType(bindingPathCellType);
sheet
.getCell(8, 1)
.bindingPath("company.email")
.cellType(bindingPathCellType);
sheet.getCell(10, 1).value("TO").font("bold 15px Arial");
sheet.getCell(10, 3).value("SHIP TO").font("bold 15px Arial");
sheet
.getCell(11, 1)
.bindingPath("customer.name")
.cellType(bindingPathCellType)
.textIndent(10);
sheet
.getCell(12, 1)
.bindingPath("customer.company.name")
.cellType(bindingPathCellType)
.textIndent(10);
sheet
.getCell(13, 1)
.bindingPath("customer.company.address")
.cellType(bindingPathCellType)
.textIndent(10);
sheet
.getCell(14, 1)
.bindingPath("customer.company.city")
.cellType(bindingPathCellType)
.textIndent(10);
sheet
.getCell(15, 1)
.bindingPath("customer.company.phone")
.cellType(bindingPathCellType)
.textIndent(10);
sheet
.getCell(11, 4)
.bindingPath("receiverCustomer.name")
.cellType(bindingPathCellType);
sheet
.getCell(12, 4)
.bindingPath("receiverCustomer.company.name")
.cellType(bindingPathCellType);
sheet
.getCell(13, 4)
.bindingPath("receiverCustomer.company.address")
.cellType(bindingPathCellType);
sheet
.getCell(14, 4)
.bindingPath("receiverCustomer.company.city")
.cellType(bindingPathCellType);
sheet
.getCell(15, 4)
.bindingPath("receiverCustomer.company.phone")
.cellType(bindingPathCellType);
sheet.addSpan(17, 1, 1, 2);
sheet
.getCell(17, 1)
.value("JOB")
.foreColor("#58B6C0")
.font("bold 12px Arial");
sheet.addSpan(17, 3, 1, 2);
sheet
.getCell(17, 3)
.value("PAYMENT TERMS")
.foreColor("#58B6C0")
.font("bold 12px Arial");
sheet.addSpan(18, 1, 1, 2);
sheet.getCell(18, 1).backColor("#DDF0F2");
sheet.addSpan(18, 3, 1, 2);
sheet
.getCell(18, 3)
.value("Due on receipt")
.backColor("#DDF0F2")
.foreColor("#58B6C0")
.font("12px Arial");
sheet
.getRange(17, 1, 2, 4)
.setBorder(
new GC.Spread.Sheets.LineBorder(
"#58B6C0",
GC.Spread.Sheets.LineStyle.thin
),
{ top: true, bottom: true, innerHorizontal: true }
);
let table = sheet.tables.add(
"tableRecordds",
20,
1,
1,
4,
GC.Spread.Sheets.Tables.TableThemes.light6
);
table.autoGenerateColumns(false);
let tableColumn1 = new GC.Spread.Sheets.Tables.TableColumn(0);
tableColumn1.name("DESCRIPTION");
tableColumn1.dataField("description");
let tableColumn2 = new GC.Spread.Sheets.Tables.TableColumn(1);
tableColumn2.name("QUANTITY");
tableColumn2.dataField("quantity");
let tableColumn3 = new GC.Spread.Sheets.Tables.TableColumn(2);
tableColumn3.name("AMOUNT");
tableColumn3.dataField("amount");
table.bindColumns([tableColumn1, tableColumn2, tableColumn3]);
table.bindingPath("records");
table.showFooter(true);
table.setColumnName(3, "TOTAL");
table.setColumnValue(2, "TOTAL DUE");
table.setColumnDataFormula(3, "=[@QUANTITY]*[@AMOUNT]");
table.setColumnFormula(3, "=SUBTOTAL(109,[TOTAL])");
sheet
.getCell(26, 1)
.formula(
'="Make all checks payable to "&B4&". THANK YOU FOR YOUR BUSINESS!"'
)
.foreColor("gray")
.font("italic 14px Arial");
sheet.options.allowCellOverflow = true;
//Adjust row height and column width
sheet.setColumnWidth(0, 5);
sheet.setColumnWidth(1, 300);
sheet.setColumnWidth(2, 115);
sheet.setColumnWidth(3, 125);
sheet.setColumnWidth(4, 155);
sheet.setRowHeight(0, 5);
sheet.setRowHeight(1, 40);
sheet.setRowHeight(2, 10);
sheet.setRowHeight(3, 28);
sheet.setRowHeight(17, 0);
sheet.setRowHeight(18, 0);
sheet.setRowHeight(19, 0);
sheet.setRowHeight(25, 10);
sheet.options.gridline = {
showHorizontalGridline: false,
showVerticalGridline: false,
};
spread.resumePaint();
}
};
return (
<div className="sample-tutorial">
<div className="sample-spreadsheets">
<SpreadSheets workbookInitialized={(spread) => initSpread(spread)} />
</div>
<div className="options-container">
<div className="option-row">
<label style={{ backgroundColor: "#F4F8EB" }}>
Click this button to set the data source for the data-bound table.
</label>
</div>
<input
type="button"
onClick={() => {
changeDataSource();
}}
id="changeDataSource"
value="Set DataSource"
title="Toggle table binding's data source"
/>
<div className="option-row">
<label style={{ backgroundColor: "#F4F8EB" }}>
데이터 바인딩 위치 확인
</label>
</div>
<input
type="button"
onClick={() => {
extractBindingPaths(spread);
}}
id="changeDataSource"
value="데이터 바인딩 위치 확인"
title="Toggle table binding's data source"
/>
<div className="option-row">
<label style={{ backgroundColor: "#F4F8EB" }}>
테이블 데이터 바인딩 위치 확인
</label>
</div>
<input
type="button"
onClick={() => {
extractTableBindingPaths(spread);
}}
id="changeDataSource"
value="테이블 데이터 바인딩 위치 확인"
title="Toggle table binding's data source"
/>
<div className="option-row">
<label style={{ backgroundColor: "#F4F8EB" }}>값 가져오기</label>
</div>
<input
type="button"
onClick={() => {
extractAllCellsWithValues(spread);
}}
id="changeDataSource"
value="테이블 데이터 바인딩 위치 확인"
title="Toggle table binding's data source"
/>
</div>
</div>
);
};
export default DataBinding;
class Company {
constructor(
public name?: string | null,
public logo?: string | null,
public slogan?: string | null,
public address?: string | null,
public city?: string | null,
public phone?: string | null,
public email?: string | null
) {}
}
class Customer {
constructor(
public id?: string,
public name?: string,
public company?: Company
) {}
}
class Record {
constructor(
public description?: string,
public quantity?: number,
public amount?: number
) {}
}
class Invoice {
constructor(
public company: Company,
public number: string,
public date: Date,
public customer: Customer,
public receiverCustomer: Customer,
public records: Record[] | []
) {}
}
class BindingPathCellType extends GC.Spread.Sheets.CellTypes.Text {
constructor() {
super();
}
paint(ctx, value, x, y, w, h, style, context) {
if (value === null || value === undefined) {
let sheet = context.sheet,
row = context.row,
col = context.col;
if (sheet && (row === 0 || !!row) && (col === 0 || !!col)) {
let bindingPath = sheet.getBindingPath(context.row, context.col);
if (bindingPath) {
value = "[" + bindingPath + "]";
}
}
}
super.paint(ctx, value, x, y, w, h, style, context);
}
}
const extractBindingPaths = (spread) => {
let sheet = spread.getActiveSheet();
let bindingPaths = [];
for (let row = 0; row < sheet.getRowCount(); row++) {
for (let col = 0; col < sheet.getColumnCount(); col++) {
let bindingPath = sheet.getBindingPath(row, col);
if (bindingPath) {
bindingPaths.push({ row, col, bindingPath });
}
}
}
console.log(
"Extracted Binding Paths:",
JSON.stringify(bindingPaths, null, 2)
);
return bindingPaths;
};
const extractTableBindingPaths = (spread) => {
let sheet = spread.getActiveSheet();
let tables = sheet.tables.all();
let tableBindings = [];
tables.forEach((table) => {
let range = table.range(); // 테이블의 위치 정보 가져오기
let tableInfo = {
tableName: table.name(),
bindingPath: table.bindingPath(),
tablePosition: {
startRow: range.row,
startCol: range.col,
rowCount: range.rowCount,
colCount: range.colCount,
},
columns: [],
};
// 🔹 컬럼 바인딩 정보 직접 추출 (bindColumns() 사용 안함)
for (let c = range.col; c < range.col + range.colCount; c++) {
let bindingPath = sheet.getBindingPath(range.row, c);
let headerValue = sheet.getValue(range.row, c);
if (bindingPath) {
tableInfo.columns.push({
colIndex: c,
columnName: headerValue || `Column ${c - range.col + 1}`,
dataField: bindingPath,
});
}
}
tableBindings.push(tableInfo);
});
console.log(
"📌 바인딩된 위치 및 컬럼 정보:",
JSON.stringify(tableBindings, null, 2)
);
return tableBindings;
};
const extractAllCellsWithValues = (spread) => {
let sheet = spread.getActiveSheet();
let rowCount = sheet.getRowCount();
let colCount = sheet.getColumnCount();
let cellData = [];
for (let row = 0; row < rowCount; row++) {
for (let col = 0; col < colCount; col++) {
let value = sheet.getValue(row, col);
if (value !== null && value !== undefined && value !== "") {
cellData.push({
row: row,
col: col,
value: value,
});
}
}
}
console.log("📌 모든 값이 있는 셀 정보:", JSON.stringify(cellData, null, 2));
return cellData;
};
|