20ed807ab9f19e137d9c91aaf4084bf84e672ebb
[roojs1] / Roo / htmleditor / TidyWriter.js
1 /***
2  * This is based loosely on tinymce 
3  * @class Roo.htmleditor.TidyWriter
4  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
5  */
6
7 Roo.htmleditor.TidyWriter = function(settings)
8 {
9     
10     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
11     Roo.apply(this, settings);
12     this.html = [];
13     this.state = [];
14      
15     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
16   
17 }
18 Roo.htmleditor.TidyWriter.prototype = {
19
20
21
22     makeMap : function (items, delim, map) {
23                 var i;
24                 items = items || [];
25                 delim = delim || ',';
26                 if (typeof items == "string") {
27                         items = items.split(delim);
28                 }
29                 map = map || {};
30                 i = items.length;
31                 while (i--) {
32                         map[items[i]] = {};
33                 }
34                 return map;
35         },
36
37     state : false,
38     
39     indent :  '  ',
40     
41     // part of state...
42     indentstr : '',
43     in_pre: false,
44     in_inline : false,
45     
46     encode : false,
47      
48     
49             /**
50     * Writes the a start element such as <p id="a">.
51     *
52     * @method start
53     * @param {String} name Name of the element.
54     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
55     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
56     */
57     start: function(name, attrs, empty, node)
58     {
59         var i, l, attr, value;
60         
61         // there are some situations where adding line break && indentation will not work. will not work.
62         // <span / b / i ... formating?
63         
64         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
65         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
66         
67         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
68         
69
70         var indentstr = in_inline || this.in_pre ? '' : this.indentstr;
71         
72         // if this element is inline - then don't add stuff beforehand..
73         if (!in_inline && !this.in_pre) {
74             this.addLine();
75         }
76         
77         this.html.push(indentstr + '<', name.toLowerCase());
78         
79         if (attrs) {
80             for (i = 0, l = attrs.length; i < l; i++) {
81                 attr = attrs[i];
82                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
83             }
84         }
85      
86         if (empty) {
87             if (is_short) {
88                 this.html[this.html.length] = '/>';
89             } else {
90                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
91             }
92             
93             if (!this.in_inline && !this.in_pre) {
94                 this.addLine();
95             }
96             return;
97         
98         }
99         // not empty..
100         this.html[this.html.length] = '>';
101         
102         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
103         /*
104         if (!in_inline && !in_pre) {
105             var cn = node.firstChild;
106             while(cn) {
107                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
108                     in_inline = true
109                     break;
110                 }
111                 cn = cn.nextSibling;
112             }
113              
114         }
115         */
116         
117         
118         this.pushState({
119             indentstr : in_pre || in_inline ? '' : (this.indentstr + this.indent),
120             in_pre : in_pre,
121             in_inline :  in_inline
122         });
123         // add a line after if we are not in a
124         
125         if (!in_inline && !in_pre) {
126             this.addLine();
127         }
128         
129             
130          
131         
132     },
133     /**
134      * Writes the a end element such as </p>.
135      *
136      * @method end
137      * @param {String} name Name of the element.
138      */
139     end: function(name) {
140         var value;
141         this.popState();
142         var indentstr = '';
143         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
144         
145         if (!this.in_pre && !in_inline) {
146             this.addLine();
147             indentstr  = this.indentstr;
148         }
149         this.html.push(indentstr + '</', name.toLowerCase(), '>');
150        
151         
152         // pop the indent state..
153     },
154     /**
155      * Writes a text node.
156      *
157      * In pre - we should not mess with the contents.
158      * 
159      *
160      * @method text
161      * @param {String} text String to write out.
162      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
163      */
164     text: function(text )
165     {
166         // if not in whitespace critical
167         if (text.length < 1) {
168             return;
169         }
170         if (this.in_pre || this.in_inline) {
171             this.html[this.html.length] =  text;
172             return;
173             
174         }
175         // see if last line is a line break
176         
177         this.addLine();
178             
179         
180         
181         text = text.replace(/\s/g," ") // all line breaks to ' '
182                 .replace(/^\s+/,'')  // leding white space
183                 .replace(/\s+$/,''); // clean trailing white space
184         
185         if (text.length < 1) {
186             return;
187         }
188         if (!text.match(/\n/)) {
189             this.html.push(this.indentstr + text);
190             return;
191         }
192         
193         text = this.indentstr + text.replace(
194             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
195         );
196         // remoeve the last whitespace / line break.
197         text = text.replace(/\s+$/,''); 
198         
199         this.html.push(text);
200         
201         // split and indent..
202         
203         
204     },
205     /**
206      * Writes a cdata node such as <![CDATA[data]]>.
207      *
208      * @method cdata
209      * @param {String} text String to write out inside the cdata.
210      */
211     cdata: function(text) {
212         this.html.push('<![CDATA[', text, ']]>');
213     },
214     /**
215     * Writes a comment node such as <!-- Comment -->.
216     *
217     * @method cdata
218     * @param {String} text String to write out inside the comment.
219     */
220    comment: function(text) {
221        this.html.push('<!--', text, '-->');
222    },
223     /**
224      * Writes a PI node such as <?xml attr="value" ?>.
225      *
226      * @method pi
227      * @param {String} name Name of the pi.
228      * @param {String} text String to write out inside the pi.
229      */
230     pi: function(name, text) {
231         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
232         this.indent != '' && this.html.push('\n');
233     },
234     /**
235      * Writes a doctype node such as <!DOCTYPE data>.
236      *
237      * @method doctype
238      * @param {String} text String to write out inside the doctype.
239      */
240     doctype: function(text) {
241         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
242     },
243     /**
244      * Resets the internal buffer if one wants to reuse the writer.
245      *
246      * @method reset
247      */
248     reset: function() {
249         this.html.length = 0;
250         this.state = [];
251         this.pushState({
252             indentstr : '',
253             in_pre : false, 
254             in_inline : false
255         })
256     },
257     /**
258      * Returns the contents that got serialized.
259      *
260      * @method getContent
261      * @return {String} HTML contents that got written down.
262      */
263     getContent: function() {
264         return this.html.join('').replace(/\n$/, '');
265     },
266     
267     pushState : function(cfg)
268     {
269         this.state.push(cfg);
270         Roo.apply(this, cfg);
271     },
272     
273     popState : function()
274     {
275         if (this.state.length < 1) {
276             return; // nothing to push
277         }
278         var cfg = {
279             in_pre: false,
280             indentstr : ''
281         };
282         this.state.pop();
283         if (this.state.length > 0) {
284             cfg = this.state[this.state.length-1]; 
285         }
286         Roo.apply(this, cfg);
287     },
288     
289     addLine: function()
290     {
291         if (this.html.length < 1) {
292             return;
293         }
294         
295         
296         var value = this.html[this.html.length - 1];
297         if (value.length > 0 && '\n' !== value) {
298             this.html.push('\n');
299         }
300     }
301     
302     
303 //'pre script noscript style textarea video audio iframe object code'
304 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
305 // inline 
306 };
307
308 Roo.htmleditor.TidyWriter.inline_elements = [
309         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
310         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP'
311 ];
312 Roo.htmleditor.TidyWriter.shortend_elements = [
313     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
314     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
315 ];
316
317 Roo.htmleditor.TidyWriter.whitespace_elements = [
318     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
319 ];