Pman.Gnumeric.js
[Pman.Core] / Pman.Gnumeric.js
1 //<script type="text/javascript">
2 /**
3 * @class Pman Gnumeric.
4 *-> load up a remote xml file of a gnumeric document.
5
6 * -> convert into a usable data structure
7
8 * -> ?? apply templated values ??
9 * -> allow modification of fields
10
11 * -> render to screen.
12
13 * -> send for conversion to XLS (via ssconvert)
14
15 * Usage:
16 <pre><code>
17
18     new Pman.Gnumeric( {
19       url: rootURL + '/xxx/yyy/templates/reports/myreport.xml',
20       data: { ..... },
21       listeners : {
22           load : function()
23           {
24           
25                x.applyData({ ... }); // key value data looks for {value} in strings and replaces it..
26                
27                x.set('A3', 'test');
28                
29                mypanel.update(x.toHTML());
30                
31                x.download()       
32                
33            }
34       }
35     });
36     
37
38 </code></pre>
39
40 * @constructor
41 * @param {Object} cfg   Configuration object.
42 */
43  
44
45
46 Pman.Gnumeric = function (cfg)
47 {
48     cfg.data = cfg.data || {};
49     
50     
51     
52     
53     
54     
55     this.addEvents({
56         /**
57              * @event load
58              * Fires when source document has been loaded
59              * @param {Pman.Gnumerci} this
60              */
61             'load' : true
62     }); 
63     
64     Roo.util.Observable.call(this,cfg);
65     
66     this.defaultCell = {
67         c : 0,
68         r : 0,
69         valueType : 0,
70         valueFormat : '',
71         value : '',
72         colspan: 1,
73         rowspan: 1
74           
75     };
76      
77     this.load();
78     
79    
80     
81     
82 }
83 Roo.extend(Pman.Gnumeric, Roo.util.Observable, {
84     
85     /**
86      * @cfg {String} url the source of the Gnumeric document.
87      */
88     url : false,
89       /**
90      * @cfg {Object} data overlay data for spreadsheet - from constructor.
91      */
92     data : false,
93      /**
94      * @cfg {String} downloadURL where GnumerictoExcel.php is...
95      */
96      
97     downloadURL : false,
98     
99     /**
100      * @type {XmlDocument} doc the gnumeric xml document
101      */
102     doc : false,
103     
104     /**
105      * @type {XmlNode} sheet the 'Sheet' element 
106      */
107     sheet : false,
108     
109     /**
110      * @type {XmlNode} sheet the 'Cells' element 
111      */    
112     cellholder : false,
113     /**
114      * @type {Object} grid the map[row][col] = cellData 
115      */
116     grid : false,
117     /**
118      * @type {Object} colInfo - list of column sizes
119      */
120     colInfo : false,
121     /**
122      * @type {Object} colInfoDom - column sizes dom element
123      */
124     colInfoDom : false,
125     /**
126      * @type {Object} rowInfo - list of row sizes
127      */
128     rowInfo : false,
129      /**
130      * @type {Object} rowInfoDom - dom elements with sizes
131      */
132     rowInfoDom : false,
133     /**
134      * @type {Number} cmax - maximum number of columns
135      */
136     cmax: false,
137     /**
138      * @type {Object} rmax - maximum number of rows
139      */
140     rmax : false,
141        /**
142      * @type {String} stylesheetID id of stylesheet created to render spreadsheat
143      */
144     stylesheetID : false,
145     /**
146      * @type {Number} rowOffset - used by table importer to enable multiple tables to be improted
147      */
148     
149     rowOffset : 0,
150     
151     /**
152      * load:
153      * run the connection, parse document and fire load event..
154      * can be run multiple times with new data..
155      * 
156     */
157     
158     load : function(url)
159     {
160         this.url = url || this.url;
161         if (!this.url) {
162             return;
163         }
164         // reset stufff..
165         this.doc = false;
166         this.sheet = false;
167         this.grid = false;
168         this.colInfo = false;
169         this.colInfoDom = false;
170         this.rowInfo = false;
171         this.rowInfoDom = false;
172         this.cmax = false;
173         this.rmax = false;
174         
175         if (this.stylesheetID) {
176             
177             Roo.util.CSS.removeStyleSheet(this.stylesheetID);
178             this.stylesheetID = false;
179             
180         }
181         
182         _t = this;
183         var c = new Roo.data.Connection();
184         c.request({
185             url: this.url,
186             method:  'GET',
187             success : function(resp, opts) {
188                 _t.response = resp;
189                 _t.doc = resp.responseXML;
190                 
191                 _t.parseDoc(0);
192                 
193                 
194                 _t.applyData();
195     
196                 _t.fireEvent('load', _t);
197             },
198             failure : function()
199             {
200                 Roo.MessageBox.alert("Error", "Failed to Load Template for Spreadsheet");
201             }
202         });
203         
204
205     },
206     
207     
208      
209     RCtoCell : function(r,c)
210     {
211         // we wil only support AA not AAA
212         var top = Math.floor(c/26);
213         var bot = c % 26;
214         var cc = top > 0 ? String.fromCharCode('A'.charCodeAt(0) + top) : '';
215         cc += String.fromCharCode('A'.charCodeAt(0)  + bot);
216         return cc+'' +r;
217         
218     },
219     
220     /**
221      * toRC:
222      * convert 'A1' style position to row/column reference
223      * 
224      * @arg {String} k cell name
225      * @return {Object}  as { r: {Number} , c: {Number}  }
226      */
227     
228     toRC : function(k)
229     {
230         var c = k.charCodeAt(0)-64;
231         var n = k.substring(1);
232         if (k.charCodeAt(1) > 64) {
233             c *=26;
234             c+=k.charCodeAt(1)-64;
235             n = k.substring(2);
236         }
237         return { c:c -1 ,r: (n*1)-1 }
238     },
239       /**
240      * rangeToRC:
241      * convert 'A1:B1' style position to array of row/column references
242      * 
243      * @arg {String} k cell range
244      * @return {Array}  as [ { r: {Number} , c: {Number}  }. { r: {Number} , c: {Number}  } ]
245      */
246     rangeToRC : function(s) {
247         var ar = s.split(':');
248         return [ this.toRC(ar[0]) , this.toRC(ar[1])]
249     },
250     
251     
252     
253    
254     
255     /**
256      * parseDoc:
257      * convert XML document into cells and other data..
258      * 
259      */
260     parseDoc : function(sheetnum) 
261     {
262         var _t = this;
263         this.grid = {}
264         this.rmax = 1;
265         this.cmax = 1;
266         
267         this.sheet = _t.doc.getElementsByTagNameNS('*','Sheet')[sheetnum];
268         
269         
270         this.cellholder = this.sheet.getElementsByTagNameNS('*','Cells')[0];
271         var cells = this.sheet.getElementsByTagNameNS('*','Cell');
272
273         
274         
275         Roo.each(cells, function(c) {
276            // Roo.log(c);
277             var row = c.getAttribute('Row') * 1;
278             var col = c.getAttribute('Col') * 1;
279             _t.cmax = Math.max(col+1, _t.cmax);
280             _t.rmax = Math.max(row+1, _t.rmax);
281             var vt = c.getAttribute('ValueType');
282             var vf = c.getAttribute('ValueFormat');
283             var val = c.textContent;
284             
285             if (typeof(_t.grid[row]) == 'undefined') {
286                 _t.grid[row] ={};
287             }
288             _t.grid[row][col] = Roo.applyIf({
289                 valueType : vt,
290                 valueFormat : vf,
291                 value : val,
292                 dom: c,
293                 r: row,
294                 c: col
295             }, _t.defaultCell);
296         });
297        
298         for (var r = 0; r < this.rmax;r++) {
299             if (typeof(this.grid[r]) == 'undefined') {
300               this.grid[r] ={};
301             }
302             for (var c = 0; c < this.cmax;c++) {
303                 if (typeof(this.grid[r][c]) == 'undefined') {
304                     continue;
305                 }
306                 //this.print( "[" + r + "]["+c+"]=" + grid[r][c].value +'<br/>');
307             }
308         }
309         
310         var merge = this.sheet.getElementsByTagNameNS('*','Merge');
311
312         Roo.each(merge, function(c) {
313             var rc = _t.rangeToRC(c.textContent);
314             //Roo.log(JSON.stringify(rc))
315             if (typeof(_t.grid[rc[0].r][rc[0].c]) == 'undefined') {
316                 _t.grid[rc[0].r][rc[0].c] =  Roo.applyIf({ r : rc[0].r, c : rc[0].c }, _t.defaultCell);
317             }
318                 
319             _t.grid[rc[0].r][rc[0].c].colspan = (rc[1].c - rc[0].c) + 1;
320             _t.grid[rc[0].r][rc[0].c].rowspan = (rc[1].r - rc[0].r) + 1;
321             for(var r = (rc[0].r); r < (rc[1].r+1); r++) {
322                for(var c = rc[0].c; c < (rc[1].c+1); c++) {
323                     //Roo.log('adding alias : ' + r+','+c);
324                    _t.grid[r][c] = _t.grid[rc[0].r][rc[0].c];
325                }
326            }
327             
328             
329         });
330         // read colinfo..
331         var ci = this.sheet.getElementsByTagNameNS('*','ColInfo');
332         this.colInfo = {};
333         this.colInfoDom = {};
334         
335         Roo.each(ci, function(c) {
336             var count = c.getAttribute('Count') || 1;
337             var s =  c.getAttribute('No')*1;
338             for(var i =0; i < count; i++) {
339                 _t.colInfo[s+i] = Math.floor(c.getAttribute('Unit')*1);
340                 _t.colInfoDom[s+i] = c;
341             }
342         });
343         
344         
345         ci = this.sheet.getElementsByTagNameNS('*','RowInfo');
346         
347         this.rowInfo = {};
348         this.rowInfoDom = {};
349         Roo.each(ci, function(c) {
350             var count = c.getAttribute('Count') || 1;
351             var s =  c.getAttribute('No')*1;
352             for(var i =0; i < count; i++) {
353                 _t.rowInfoDom[s+i] = c;
354                 _t.rowInfo[s+i] = Math.floor(c.getAttribute('Unit')*1);
355             }
356         });
357     
358         _t.parseStyles();
359         _t.overlayStyles();
360                 
361         
362      
363         
364     },
365      /**
366      * overlayStyles:
367      * put the style info onto the cell data.
368      * 
369      */
370     overlayStyles : function ()
371     {
372            // apply styles.
373         var _t = this;
374         Roo.each(this.styles, function(s) {
375        
376             for (var r = s.r; r < s.r1;r++) {
377                 if (typeof(_t.grid[r]) == 'undefined') {
378                    continue;
379                 }
380                 for (var c = s.c; c < s.c1;c++) {
381                     if (c > _t.cmax) continue;
382     
383                     if (typeof(_t.grid[r][c]) == 'undefined') _t.grid[r][c] = Roo.applyIf({ r: r , c : c }, _t.defaultCell);
384                     var g=_t.grid[r][c];
385                     if (typeof(g.cls) =='undefined') {
386                         g.cls = [];
387                         g.styles = [];
388                     }
389                     if (g.cls.indexOf(s.name)  > -1) continue;
390                     g.cls.push(s.name);
391                     g.styles.push(s.dom);
392                     
393                 }
394             }
395         });
396     },
397      /**
398      * parseStyles: 
399      *  read the style information
400      * generates a stylesheet for the current file
401      * this should be disposed of really.....
402      * 
403      */
404     parseStyles : function() {
405                 
406         var srs = this.sheet.getElementsByTagNameNS('*','StyleRegion');
407         var _t  = this;
408         var ent = {};
409         
410         var map =  {
411             HAlign : function(ent,v) { 
412                 ent['text-align'] = { '1' : 'left', '8': 'center', '4' : 'right'}[v] || 'left';
413             },
414             VAlign : function(ent,v) { 
415                 ent['vertical-align'] = { '1' : 'top', '4': 'middle', '8' : 'bottom'}[v]  || 'top'
416             },
417             Fore : function(ent,v) { 
418                 var col=[];
419                 Roo.each(v.split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
420                 ent['color'] = 'rgb(' + col.join(',') + ')';
421             },
422             Back : function(ent,v) { 
423                 var col=[];
424                 Roo.each(v.split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
425                 ent['background-color'] = 'rgb(' + col.join(',') + ')';
426             },
427             FontUnit : function(ent,v) { 
428                 ent['font-size'] = v + 'px';
429             },
430             FontBold : function(ent,v) { 
431                 if (v*1 < 1) return;
432                 ent['font-weight'] = 'bold';
433             },
434             FontItalic : function(ent,v) { 
435                 if (v*0 < 1) return;
436                 //ent['font-weight'] = 'bold';
437             },
438             FontName : function(ent,v) { 
439                 ent['font-family'] = v;
440             },
441             BorderStyle : function(ent,v) { 
442                 var vv  = v.split('-');
443                 ent['border-'+vv[0]+'-style'] = 'solid';
444                 ent['border-'+vv[0]+'-width'] = vv[1]+'px';
445             },
446             BorderColor : function(ent,v) { 
447                 var vv  = v.split('-');
448                 var col=[];
449                 Roo.each(vv[1].split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
450                 ent['border-'+vv[0]+'-color'] = 'rgb(' + col.join(',') + ')';
451             }
452         }
453         function add(e, k, v) {
454             //Roo.log(k,v);
455             e.gstyle[k] = v;
456             if (typeof(map[k]) == 'undefined') {
457                 return;
458             }
459             map[k](e.style,v);    
460         }
461         var css = {};
462         var styles = [];
463         var sid= Roo.id();
464         
465         
466         Roo.each(srs, function(sr,n)
467         {
468             ent = {
469                 c : sr.getAttribute('startCol') *1,
470                 r : sr.getAttribute('startRow')*1,
471                 c1 : (sr.getAttribute('endCol')*1) +1,
472                 r1 : (sr.getAttribute('endRow')*1) +1,
473                 style : {},  // key val of style for HTML..
474                 gstyle : {}, // key val of attributes used..
475                 name : sid +'-gstyle-' + n,
476                 dom : sr
477                 
478             };
479     
480             Roo.each(sr.getElementsByTagNameNS('*','Style')[0].attributes, function(e) { 
481                 add(ent, e.name, e.value);
482             });
483             if (sr.getElementsByTagNameNS('*','Font').length) {
484                 Roo.each(sr.getElementsByTagNameNS('*','Font')[0].attributes, function(e) { 
485                      add(ent, 'Font'+e.name, e.value);
486     
487                 });
488                 add(ent, 'FontName', sr.getElementsByTagNameNS('*','Font')[0].textContent);
489     
490             }
491             if (sr.getElementsByTagNameNS('*','StyleBorder').length) {
492                 Roo.each(sr.getElementsByTagNameNS('*','StyleBorder')[0].childNodes, function(e) {
493                     if (!e.tagName) {
494                         return;
495                     }
496                     Roo.each(e.attributes, function(ea) { 
497                         add(ent, 'Border'+ea.name, e.tagName.split(':')[1].toLowerCase() + '-' + ea.value);
498                     });
499                 })
500                     
501             }
502             styles.push(ent);
503             css['.'+ent.name] = ent.style;
504         });
505         
506         this.styles = styles;
507         
508         this.stylesheetID = sid;
509         Roo.util.CSS.createStyleSheet(css, sid);
510     },
511
512     
513     
514     
515     /* ---------------------------------------  AFTER LOAD METHODS... ----------------------- */
516     /**
517      * set: 
518      * Set the value of a cell..
519      * @param {String} cell name of cell, eg. C10 or { c: 1, r :1 }
520          
521      * @param {Value} value to put in cell..
522      * @param {ValueType} type of value
523      * @param {ValueFormat} value format of cell
524      * 
525      * Cells should exist at present, we do not make them up...
526      */
527      
528     
529     set : function(cell, v, vt, vf) {
530         
531         var cs= typeof(cell) == 'string' ? this.toRC(cell) : cell;
532         
533         
534         Roo.log( cs.r+ ',' + cs.c + ' = '+ v);
535         // need to generate clell if it doe
536         if (typeof(this.grid[cs.r]) == 'undefined') {
537             Roo.log('no row:' + cell);
538             this.grid[cs.r] = []; // create a row..
539             //return;
540         }
541         if (typeof(this.grid[cs.r][cs.c]) == 'undefined') {
542             Roo.log('cell not defined:' + cell);
543             this.createCell(cs.r,cs.c);
544         }
545         if (typeof(this.grid[cs.r][cs.c].dom) == 'undefined') {
546             Roo.log('no default content for cell:' + cell);
547             //this.createCell(cs.r,cs.c);
548             //return;
549         }
550         this.grid[cs.r][cs.c].value=  v;
551         this.grid[cs.r][cs.c].dom.textContent=  v;
552         
553         if (typeof(vt) != 'undefined') {
554             this.grid[cs.r][cs.c].valueType = vt;
555             this.grid[cs.r][cs.c].dom.setAttribute('ValueType', vt);
556             if (vt === '' || vt === false) { // value type is empty for formula's
557                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueType');
558             }
559         }
560         if (typeof(vf) != 'undefined' && vf !== false) {
561             this.grid[cs.r][cs.c].valueFormat = vf;
562             this.grid[cs.r][cs.c].dom.setAttribute('ValueFormat', vf);
563             if (vf === '' || vf === false) { // value type is empty for formula's
564                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueFormat');
565             }
566         }
567         
568     },
569     
570     // private
571     copyRow : function(src, dest) {
572         if (dest == src) {
573             return;
574         }
575        // Roo.log('create Row' + dest);
576         if (typeof(this.grid[dest]) == 'undefined') {
577             this.grid[dest] = {}
578         }
579         
580            
581         for (var c = 0; c < this.cmax; c++) {
582
583             this.copyCell({ r: src, c: c } , { r: dest, c: c});
584             
585         }
586         this.rmax = Math.max(this.rmax, dest +1);
587         
588     },
589     
590     // private
591     
592     createCell: function(r,c)
593     {
594         //<gnm:Cell Row="6" Col="5" ValueType="60">Updated</gnm:Cell>    
595         var nc = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Cell');
596         this.cellholder.appendChild(nc);
597         var lb = this.doc.createTextNode("\n");// add a line break..
598         this.cellholder.appendChild(lb);
599         
600         nc.setAttribute('Row', new String(r));
601         nc.setAttribute('Col', new String(c));
602         nc.setAttribute('ValueType', '60');
603         nc.textContent = '';
604         
605         this.grid[r][c] = Roo.applyIf({
606             valueType : '60',
607             valueFormat : '',
608             value : '',
609             dom: nc,
610             r: r,
611             c: c
612             }, _t.defaultCell);
613         
614         return nc;
615
616     },
617     
618     // private
619     copyCell : function(src, dest)
620     {
621         var old = this.grid[src.r][src.c];
622         // is it an alias...
623         if ((old.c != src.c)  || (old.r != src.r)) {
624             // only really works on horizonatal merges..
625             
626             this.grid[dest.r][dest.c] = this.grid[desc.r][old.c]; // let's hope it exists.
627             return;
628         }
629         
630         
631         var nc = Roo.apply({}, this.grid[src.r][src.c]);
632         
633         nc.value = '';
634         if (typeof(old.dom) == 'undefined') {
635             Roo.log("No cell to copy for " + Roo.encode(src));
636             return;
637         }
638         this.grid[dest.r][dest.c] = nc;
639         nc.dom = old.dom.cloneNode(true);
640         nc.dom.setAttribute('Row', dest.r);
641         nc.dom.setAttribute('Cell', dest.c);
642         nc.dom.textContent = '';
643         old.dom.parentNode.appendChild(nc.dom);
644         if (!old.styles || !old.styles.length) {
645             return;
646         }
647         //Roo.log("DEST");
648         //Roo.log(dest);
649         //Roo.log("STYLES");
650         //  .styles...
651         Roo.each(old.styles, function(s) {
652             // try and extend existing styles..
653             var er = s.getAttribute('endRow') * 1;
654             var ec = s.getAttribute('endCol') * 1;
655             //Roo.log(s);
656             if (dest.r == er) {
657                 s.setAttribute('endRow', dest.r + 1);
658             }
659             if (dest.c == ec) {
660                 s.setAttribute('endCol', dest.c + 1);
661             }
662             /*var ns = s.cloneNode(true);
663             s.parentNode.appendChild(ns);
664             ns.setAttribute('startCol', dest.c);
665             ns.setAttribute('startRow', dest.r);
666             ns.setAttribute('endCol', dest.c + 1);
667             ns.setAttribute('endRow', dest.r +1);
668             */
669         });
670         
671     },
672     
673     
674     /**
675      * applyData: 
676      * Set the value of a cell..
677      * @param {String} cell name of cell, eg. C10
678      * @param {Value} value to put in cell..
679      * 
680      * Cells should exist at present, we do not make them up...
681      */
682      
683     applyData : function(data)
684     {
685         
686         data = data || this.data;
687         for (var r = 0; r < this.rmax;r++) {
688             if (typeof(this.grid[r]) == 'undefined') continue;
689             for (var c = 0; c < this.cmax;c++) {  
690                 if (typeof(this.grid[r][c]) == 'undefined') {
691                     continue;
692                 }
693                 if (!this.grid[r][c].value.length 
694                         || !this.grid[r][c].value.match(/\{/)) {
695                     continue;
696                 }
697                 
698                 var x = new Roo.Template({ html: this.grid[r][c].value });
699                 try {
700                     var res = x.applyTemplate(data);
701                     //Roo.log("set " + r  + "," + c + ":"+res)
702                     this.set({ r: r, c: c}, x.applyTemplate(data));
703                 } catch (e) {
704                  //   Roo.log(e.toString());
705                   //  Roo.log(e);
706                     // continue?
707                 }
708                 
709             }
710         }
711             
712     },
713     
714     readTableData : function(table)
715     {
716         // read the first row.
717         var tds = Roo.get(table).select('tr').item(0).select('td');
718         var maxnc = 0;
719         
720         Roo.get(table).select('tr').each(function(trs) {
721             var nc = 0;
722            
723             trs.select('td').each(function(td) {
724                 var cs = td.dom.getAttribute('colspan');
725                 cs = cs ? cs * 1 : 1;
726                 nc += cs;
727             });
728             maxnc = Math.max(nc, maxnc);
729         });
730         
731         var tr = document.createElement('tr');
732         table.appendChild(tr);
733         var ar = {};
734         for (i =0; i < maxnc; i++) {
735             ar[i] = document.createElement('td');
736             tr.appendChild(ar[i]);
737         }
738         // find the left.
739         var ret = { cols : maxnc, pos : {} };
740         for (i =0; i < maxnc; i++) {
741             ret.pos[ Roo.get(ar[i]).getLeft()] =i;
742         }
743         ret.near = function(p) {
744             // which one is nearest..
745             
746             if (this.pos[p]) {
747                 return this.pos[p];
748             }
749             var prox = 100000;
750             var match = 0;
751             for(var i in this.pos) {
752                 var dis = Math.abs(p-i);
753                 if (dis < prox) {
754                     prox = dis;
755                     match = this.pos[i];
756                 }
757             }
758             return match;
759             
760         }
761         table.removeChild(tr);
762         return ret;
763     },
764     
765      
766    
767      
768     /**
769      * importTable: 
770      * Import a table and put it into the spreadsheet
771      * @param {HTMLTable} datagrid dom element of html table.
772      * @param {Number} xoff X offset to start rendering to
773      * @param {Number} yoff Y offset to start rendering to
774      **/
775      
776  
777     importTable : function (datagrid, xoff,yoff)
778     {
779         if (!datagrid) {
780             Roo.log("Error table not found!?");
781             return;
782         }
783         xoff = xoff || 0;
784         yoff = yoff || 0;
785         
786         
787         var table_data = this.readTableData(datagrid);
788         
789         // oroginally this cleaned line breaks, but we acutally need them..
790         var cleanHTML = function (str) {
791             
792             var ret = str;
793             ret = ret.replace(/&nbsp;/g,' ');
794            // ret = ret.replace(/\n/g,'.');
795           //  ret = ret.replace(/\r/g,'.');
796             var i;
797              
798             return ret;
799         };
800
801         
802         // <cell col="A" row="1">Test< / cell>
803         // <cell col="B" row="2" type="Number" format="test1">30< / cell>
804         var rowOffsets = {};
805         var rows = datagrid.getElementsByTagName('tr');
806         //alert(rows.length);
807         
808         
809         for(var row=0;row<rows.length;row++) {
810             
811             // let's see what affect this has..
812             // it might mess things up..
813             
814             if (rows[row].getAttribute('xls:height')) {
815                 this.setRowHeight(row + yoff +1, 1* rows[row].getAttribute('xls:height'));
816             } else {
817                 this.setRowHeight( row + yoff +1, Roo.get(rows[row]).getHeight());
818             }
819             
820          
821             var cols = rows[row].getElementsByTagName('td');
822             
823             
824             for(var col=0;col < cols.length; col++) {
825                 
826                 
827                
828                 
829                 var colspan = cols[col].getAttribute('colspan');
830                 colspan  = colspan ? colspan *1 : 1;
831                 
832                 var rowspan = cols[col].getAttribute('rowspan');
833                 rowspan = rowspan ? rowspan * 1 : 1;
834                 
835                 var realcol = table_data.near( Roo.get(cols[col]).getLeft() );
836                 
837                 
838                 
839                 if (colspan > 1 || rowspan > 1) {
840                     
841                     // getting thisese right is tricky..
842                     this.mergeRegion(
843                         realcol + xoff,
844                         row + yoff +1,
845                         realcol+ xoff + (colspan -1),
846                         row + yoff + rowspan 
847                     );
848                     
849                 }
850                 
851                 // skip blank cells
852                 // set the style first..
853                 this.parseHtmlStyle( cols[col], row + yoff, realcol + xoff   , colspan, rowspan);
854                 
855                 if (!cols[col].childNodes.length) {
856                      
857                     continue;
858                 }
859                 
860                 
861                 
862                 
863                 var vt = '60';
864                 var vf = false;
865                 var xlstype = cols[col].getAttribute('xls:type');
866                 switch(xlstype) {
867                     case 'int':
868                         vt = 30; // int!!!!
869                     
870                         break;
871                         
872                     case 'float':
873                         vt = 40; // float!!!!
874                         if (cols[col].getAttribute('xls:floatformat')) {
875                             vf = cols[col].getAttribute('xls:floatformat');
876                         }
877                         break;
878                         
879                     case 'date':
880                         vt = 30;
881                         //ValueFormat="d/m/yyyy" 38635  
882                         var vf = 'd/m/yyy';
883                         if (cols[col].getAttribute('xls:dateformat')) {
884                             vf= cols[col].getAttribute('xls:dateformat');
885                         }
886                         
887                        
888                         
889                         break;
890                     
891                     default:
892                        
893                         break;
894                 }
895                
896                 if (!cols[col].childNodes[0].nodeValue) {
897                    
898                     continue;
899                 }
900                 if (!cols[col].childNodes[0].nodeValue.replace(/^\s*|\s*$/g,"").length) {
901                   
902                     continue;
903                 }
904                 // strip me.!
905                 var cell_value_text = cleanHTML(cols[col].childNodes[0].nodeValue);
906        
907                 if (cols[col].getAttribute('xls:percent')) {
908                     cell_value_text = '' + ((cell_value_text * 1) / 100);
909                 }
910
911                 if (cell_value_text.length && (vt == 30) && xlstype == 'date') {
912                     var bits = cell_value_text.split(/-/);
913                     var cur = new Date(bits[0],bits[1]-1,bits[2]);
914                     cell_value_text = '' + Math.round((cur.getTime() - Date.UTC(1899,11,30)) / (24 * 60 * 60 * 1000));
915                 }
916
917                 
918                 
919                 if (cols[col].getAttribute('xls:formula')) {
920                     var s = cols[col].getAttribute('xls:formula');
921                     vt = '';
922                     cell_value_text = s.replace(/#row#/g,(row + yoff + 1));
923                 }
924                 this.set({ r: row + yoff, c : realcol + xoff }, cell_value_text, vt, vf);
925                  
926                   
927                 
928                 
929                 
930             }
931         }
932         this.rowOffset += rows.length;
933         
934     },
935     
936     
937     
938     parseHtmlStyle : function(dom, row, col, colspan, rowspan) {
939         
940         function toCol (rgb) {
941             
942             var ar = rgb.replace(/rgb[a]?\(/, '').replace(/\)/, '').replace(/ /, '').split(',');
943             var rcs = [];
944             ar = ar.slice(0,3);
945             Roo.each(ar, function(c) { 
946                 rcs.push((c*c).toString(16)) ;   
947             });
948             return rcs.join(':');
949             
950         }
951         
952         var el = Roo.get(dom);
953         var map =  {
954             'text-align'  : function(ent,v) { 
955                 ent['HAlign'] = { 'left' : '1', 'center' : '8' ,  'right' : '4' }[v] || '1';
956             },
957             'vertical-align': function(ent,v) { 
958                 ent['VAlign'] = { 'top' : '1', 'middel' : '8' ,  'bottom' : '4' }[v] || '1';
959             },
960             
961             'color': function(ent,v) { 
962                 ent['Fore'] = toCol(v);
963                 // this is a bit dumb.. we assume that if it's not black text, then it's shaded..
964                 if (ent['Fore'] != '0:0:0') {
965                     ent['Shade'] = 1;
966                 }
967                 
968             },
969             'background-color' : function(ent,v) { 
970                 ent['Back'] = toCol(v);
971                  
972             }
973             
974         }
975        
976         var ent = {
977                 HAlign:"1",
978                 VAlign:"2",
979                 WrapText:"0",
980                 ShrinkToFit:"0",
981                 Rotation:"0",
982                 Shade:"0",
983                 Indent:"0",
984                 Locked:"0",
985                 Hidden:"0",
986                 Fore:"0:0:0",
987                 Back:"FFFF:FFFF:FFFF",
988                 PatternColor:"0:0:0",
989                 Format:"General"
990         };
991            
992         for(var k in map) {
993             var val = el.getStyle(k);
994             if (!val || !val.length) {
995                continue;
996             }
997             map[k](ent,val);
998         }
999         // special flags..
1000         if (el.dom.getAttribute('xls:wraptext')) {
1001             ent.WrapText = 1;
1002         }
1003         if (el.dom.getAttribute('xls:valign')) {
1004             ent.VAlign= 1;
1005         }
1006         if (el.dom.getAttribute('xls:halign')) {
1007             ent.HAlign= 1;
1008         }
1009         // fonts..
1010         var fmap = {
1011             
1012            
1013             'font-size' : function(ent,v) { 
1014                 ent['Unit'] = v.replace(/px/, '');
1015             },
1016             'font-weight' : function(ent,v) { 
1017                 if (v != 'bold') return;
1018                 ent['Bold'] = 1;
1019             },
1020             'font-style' : function(ent,v) { 
1021                 if (v != 'italic') return;
1022                 ent['Italic'] = 1;
1023             } 
1024         }
1025        
1026         var fent = {
1027             Unit:"10",
1028             Bold:"0",
1029             Italic:"0",
1030             Underline:"0",
1031             StrikeThrough:"0"
1032         };
1033         
1034         for(var k in fmap) {
1035             var val = el.getStyle(k);
1036             if (!val || !val.length) {
1037                continue;
1038             }
1039             fmap[k](fent,val);
1040         }
1041         var font = el.getStyle('font-family') || 'Sans';
1042         if (font.split(',').length > 1) {
1043             font = font.split(',')[1].replace(/\s+/, '');
1044         }
1045         
1046         
1047         /// -- now create elements..
1048         
1049         var objs = this.sheet.getElementsByTagNameNS('*','Styles')[0];
1050         
1051         //<gnm:StyleRegion startCol="0" startRow="0" endCol="255" endRow="65535"
1052         var sr = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleRegion');
1053         objs.appendChild(sr);
1054         objs.appendChild(this.doc.createTextNode("\n"));// add a line break..
1055
1056         sr.setAttribute('startCol', col);
1057         sr.setAttribute('endCol', col+ colspan-1);
1058         sr.setAttribute('startRow', row);
1059         sr.setAttribute('endRow', row + rowspan -1);
1060         
1061         
1062         var st = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Style');
1063         sr.appendChild(st);
1064         // do we need some defaults..
1065         for(var k in ent) {
1066             //Roo.log(k);
1067             st.setAttribute(k, ent[k]);
1068         }
1069         
1070         var fo = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Font');
1071         st.appendChild(fo);
1072         // do we need some defaults..
1073         for(var k in fent) {
1074             fo.setAttribute(k, fent[k]);
1075         }
1076         fo.textContent  = font;
1077         
1078         var sb = false;
1079         // borders..
1080         Roo.each(['top','left','bottom','right'], function(p) {
1081             var w = el.getStyle('border-' + p + '-width').replace(/px/, '');
1082             if (!w || !w.length || (w*1) < 1) {
1083                 return;
1084             }
1085             if (!sb) {
1086                 sb= this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleBorder');
1087             }
1088             var be = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:' + p[0].toUpperCase() + p.substring(1));
1089             be.setAttribute('Style', '1');
1090             be.setAttribute('Color', '0:0:0'); // fixme..
1091             sb.appendChild(be);
1092             
1093         }, this);
1094         // start adding them all together..
1095         
1096         if (sb) {
1097             st.appendChild(sb);
1098         }
1099         
1100         
1101         
1102         
1103     },
1104     
1105     
1106     
1107     /**
1108      * writeImage:
1109      * write an image (needs base64 data to write it)
1110      * 
1111      * 
1112      * @param {Number} row  row to put it in (rows start at 0)
1113      * @param {Number} col  column to put it in
1114      * @param {Number} data  the base64 description of the images
1115      * @param {Number} width image width
1116      * @param {Number} width image height
1117      * 
1118      */
1119     
1120     
1121     writeImage : function (row, col, data, width, height) 
1122     {
1123         
1124         // our default height width is 50/50 ?!
1125         //console.log('w='+width+',height='+height);
1126                 //        <gmr:Objects>
1127         row*=1;
1128         col*=1;
1129         height*=1;
1130         width*=1;
1131         var objs = this.sheet.getElementsByTagNameNS('*','Objects')[0];
1132         var soi = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:SheetObjectImage');
1133         
1134         //<gmr:SheetObjectImage 
1135         //      ObjectBound="A3:J8" 
1136         //      ObjectOffset="0.375 0.882 0.391 0.294" 
1137         //      ObjectAnchorType="16 16 16 16" 
1138         //      Direction="17" 
1139         //      crop-top="0.000000" 
1140         //      crop-bottom="0.000000" 
1141         //      crop-left="0.000000" 
1142         //      crop-right="0.000000">
1143                 
1144                 
1145         //alert(gnumeric_colRowToName(row,col));
1146                
1147         // this is where we really have fun!!!... 
1148         // since our design currently assumes the height is enough to fit
1149         // stuff in, we only really need to work out how wide it has to be..
1150         
1151         // note we should probably use centralized calcs if it fits in the first cell!
1152         
1153         // step 1 - work out how many columns it will span..
1154         // lets hope the spreadsheet is big enought..
1155         var colwidth = 0;
1156         var endcol=col;
1157         for ( endcol=col;endcol <100; endcol++) {
1158             if (!this.colInfo[endcol]) {
1159                 this.colInfo[endcol] = 100; // eak fudge
1160             }
1161             colwidth += this.colInfo[endcol];
1162             if (colwidth > width) {
1163                 break;
1164             }
1165         }
1166        
1167         
1168         soi.setAttribute('ObjectBound',
1169             //gnumeric_colRowToName(row,col) + ':' + gnumeric_colRowToName(row+1,col+1));
1170             this.RCtoCell(row,col) + ':' + this.RCtoCell(row,endcol));
1171      
1172         var ww = 0.01; // offset a bit...
1173         var hh = 0.01; //
1174         
1175         var ww2 = 1 - ((colwidth - width) / this.colInfo[endcol]);
1176         var hh2 = 0.99;
1177         
1178         var offset_str = ww + ' '  + hh + ' ' + ww2 + ' '+hh2;
1179         //console.log(offset_str );
1180         //alert(offset_str);
1181         soi.setAttribute('ObjectOffset', offset_str);
1182         soi.setAttribute('ObjectAnchorType','16 16 16 16');
1183         soi.setAttribute('Direction','17');
1184         soi.setAttribute('crop-top','0.000000');
1185         soi.setAttribute('crop-bottom','0.000000');
1186         soi.setAttribute('crop-left','0.000000');
1187         soi.setAttribute('crop-right','0.000000');
1188                 // <Content image-type="jpeg" size-bytes="3900">......  < / Content>
1189         var content = this.doc.createElement('Content');
1190         content.setAttribute('image-type','jpeg');
1191         //alert(imgsrc);
1192         
1193         content.setAttribute('size-bytes',data.length);
1194         content.textContent = data;
1195         soi.appendChild(content);
1196         objs.appendChild(soi);
1197         return true;
1198                 //< /gnm:SheetObjectImage>
1199                 // < /gnm:Objects>
1200
1201     },
1202  
1203     /**
1204      * mergeRegion:
1205      * Merge cells in the spreadsheet. (does not check if existing merges exist..)
1206      * 
1207      * @param {Number} col1  first column 
1208      * @param {Number} row1  first row
1209      * @param {Number} col2  to column 
1210      * @param {Number} row2  to row
1211      * 
1212      */
1213     mergeRegion : function (col1,row1,col2,row2)
1214     {
1215         var cell = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Merge');
1216         //if (col1 > 50|| col2 > 50) { // do not merge cols off to right?
1217        //     return;
1218         //}
1219         
1220         cell.textContent = this.RCtoCell(row1,col1) + ':' + this.RCtoCell(row2,col2);
1221         
1222         //var merges = this.gnumeric.getElementsByTagNameNS('*','MergedRegions');
1223         var merges = this.sheet.getElementsByTagNameNS('*','MergedRegions');
1224         if (!merges || !merges.length) {
1225             merges = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:MergedRegions');
1226             var sl = this.sheet.getElementsByTagNameNS('*','SheetLayout')[0];
1227             this.sheet.insertBefore(merges,sl);
1228         } else {
1229             merges = merges[0];
1230         }
1231         merges.appendChild(cell);
1232     
1233     },
1234     /**
1235      * setRowHeight:
1236      * Sets the height of a row.
1237      * 
1238      * @param {Number} r  the row to set the height of. (rows start at 0)
1239      * @param {Number} height (in pixels)
1240      */
1241     setRowHeight : function (r,height)
1242     {
1243         
1244         //<gmr:Rows DefaultSizePts="12.75">
1245         //   <gmr:RowInfo No="2" Unit="38.25" MarginA="0" MarginB="0" HardSize="1"/>
1246     //  < /gmr:Rows>
1247         
1248         // this doesnt handle row ranges very well.. - with 'count in them..'
1249         
1250         if (this.rowInfoDom[r]) {
1251             this.rowInfoDom[r].setAttribute('Unit', height);
1252             return;
1253         }
1254     
1255         var rows = this.sheet.getElementsByTagNameNS('*','Rows')[0]; // assume this exists..
1256         var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:RowInfo');
1257         // assume we have no rows..
1258         ri.setAttribute('No', r-1);
1259         ri.setAttribute('Unit', height);
1260         ri.setAttribute('MarginA', 0);
1261         ri.setAttribute('MarginB', 0);
1262         ri.setAttribute('HardSize', 1);
1263         rows.appendChild(ri);
1264         this.rowInfoDom[r] = ri;
1265     },
1266      
1267     /**
1268      * setSheetName: 
1269      * Set the sheet name.
1270      * @param {String} title for sheet
1271      **/
1272     setSheetName : function(name,sheet)
1273     {
1274         sheet = sheet || 0;
1275         /*
1276         <gnm:SheetNameIndex>
1277         <gnm:SheetName>Sheet1</gnm:SheetName>
1278         <gnm:SheetName>Sheet2</gnm:SheetName>
1279         <gnm:SheetName>Sheet3</gnm:SheetName>
1280         </gnm:SheetNameIndex>
1281         */
1282         // has to set sheet name on index and body..
1283         Roo.log(sheet);
1284         Roo.log(name);
1285         var sheetnames = this.doc.getElementsByTagNameNS('*','SheetName');
1286         if (sheet >=  sheetnames.length) {
1287             
1288             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1289             // copy body.
1290             sheetnames = this.doc.getElementsByTagNameNS('*','Sheet');
1291             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1292             var sn = this.doc.getElementsByTagNameNS('*','Sheet')[sheet];
1293             var cls = sn.getElementsByTagNameNS('*','Cells')[0];
1294             while (cls.childNodes.length) {
1295                 cls.removeChild(cls.firstChild);
1296             }
1297             
1298         }
1299         
1300         var sheetn = this.doc.getElementsByTagNameNS('*','SheetName')[sheet];
1301         sheetn.textContent = name;
1302         var sheetb = this.doc.getElementsByTagNameNS('*','Sheet')[sheet].getElementsByTagNameNS('*','Name')[0];
1303         sheetb.textContent = name;
1304         this.parseDoc(sheet);
1305         
1306         
1307         
1308         
1309     },
1310      /**
1311      * setColumnWidth: 
1312      * Set the column width
1313      * @param {Number} column number (starts at '0')
1314      * @param {Number} width size of column
1315      **/
1316     setColumnWidth : function(column, width)
1317     {
1318         column = column *1; 
1319         width= width*1;
1320         if (typeof(this.colInfoDom[column]) == 'undefined') {
1321             var cols = this.doc.getElementsByTagNameNS('*','Cols')[0];
1322             var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:ColInfo');
1323             ri.setAttribute('No', column);
1324             ri.setAttribute('Unit', width);
1325             ri.setAttribute('MarginA', 2);
1326             ri.setAttribute('MarginB', 2);
1327             ri.setAttribute('HardSize', 1);
1328             cols.appendChild(ri);
1329             this.colInfo[column] = width;
1330             this.colInfoDom[column]  = ri;
1331             return;
1332         }
1333         this.colInfoDom[column].setAttribute('Unit', width);
1334         
1335     },
1336     
1337     
1338     
1339     
1340     
1341      /**
1342      * toHTML: 
1343      * Convert spreadsheet into a HTML table.
1344      */
1345             
1346     toHTML :function()
1347     {
1348          var _t = this;
1349         function calcWidth(sc, span)
1350         {
1351             var n =0;
1352             for(var i =sc; i< sc+span;i++) {
1353                 n+=_t.colInfo[i];
1354             }   
1355             return n;
1356         }
1357         
1358         var grid = this.grid;
1359         // lets do a basic dump..
1360         var out = '<table style="table-layout:fixed;" cellpadding="0" cellspacing="0">';
1361         for (var r = 0; r < this.rmax;r++) {
1362             out += '<tr style="height:'+this.rowInfo[r]+'px;">';
1363             for (var c = 0; c < this.cmax;c++) {
1364                 var g = (typeof(grid[r][c]) == 'undefined') ? this.defaultCell  : grid[r][c];
1365                 
1366                 if (typeof(g.cls) =='undefined') g.cls = [];
1367                 var w= calcWidth(c,g.colspan);
1368                 out+=String.format('<td colspan="{0}" rowspan="{1}"  class="{4}"><div style="{3}">{2}</div></td>', 
1369                     g.colspan, g.rowspan, g.value,
1370                     'overflow:hidden;' + 
1371                     'width:'+w+'px;' +
1372                    
1373                     'text-overflow:ellipsis;' +
1374                     'white-space:nowrap;',
1375                      g.cls.join(' ')
1376     
1377     
1378                 );
1379                 c+=(g.colspan-1);
1380             }
1381             out += '</tr>';
1382         }
1383         //Roo.log(out);
1384         return out+'</table>';
1385         
1386         
1387         
1388     },
1389     /**
1390      * download:
1391      * @param {String} name  filename to downlaod (without xls)
1392      * @param {String} callback  (optional) - callback to call after callback is complete.
1393      */
1394     download : function(name,callback)
1395     {
1396         name = name || "Missing_download_filename";
1397         
1398         if (this.downloadURL && this.downloadURL.charAt(this.downloadURL .length-1) != '/') {
1399             this.downloadURL += '/';
1400         }
1401         
1402         var ser = new XMLSerializer();
1403         var x = new Pman.Download({
1404             method: 'POST',
1405             timeout : 120000, // quite a long wait.. 2 minutes.
1406             params : {
1407                xml : ser.serializeToString(this.doc),
1408                format : 'xls', //xml
1409                debug : 0
1410                
1411             },
1412             url : (this.downloadURL || (baseURL + '/GnumericToExcel/')) + name + '.xls',
1413             success : function() {
1414                 Roo.MessageBox.alert("Alert", "File should have downloaded now");
1415                 if (callback) {
1416                     callback();
1417                 }
1418             }
1419         });
1420          
1421     }
1422
1423 });