Roo/htmleditor/TidyWriter.js
[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         if (!this.in_pre && !this.in_inline) {
144             this.addLine();
145             indentstr  = this.indentstr;
146         }
147         this.html.push(indentstr + '</', name.toLowerCase(), '>');
148        
149         
150         // pop the indent state..
151     },
152     /**
153      * Writes a text node.
154      *
155      * In pre - we should not mess with the contents.
156      * 
157      *
158      * @method text
159      * @param {String} text String to write out.
160      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
161      */
162     text: function(text )
163     {
164         // if not in whitespace critical
165         if (text.length < 1) {
166             return;
167         }
168         if (this.in_pre || this.is_inline) {
169             this.html[this.html.length] =  text;
170             return;
171             
172         }
173         // see if last line is a line break
174         
175         this.addLine();
176             
177         
178         
179         text = text.replace(/\s/g," ") // all line breaks to ' '
180                 .replace(/^\s+/,'')  // leding white space
181                 .replace(/\s+$/,''); // clean trailing white space
182         
183         if (text.length < 1) {
184             return;
185         }
186         if (!text.match(/\n/)) {
187             this.html.push(this.indentstr + text);
188             return;
189         }
190         
191         text = this.indentstr + text.replace(
192             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
193         );
194         // remoeve the last whitespace / line break.
195         text = text.replace(/\s+$/,''); 
196         
197         this.html.push(text);
198         
199         // split and indent..
200         
201         
202     },
203     /**
204      * Writes a cdata node such as <![CDATA[data]]>.
205      *
206      * @method cdata
207      * @param {String} text String to write out inside the cdata.
208      */
209     cdata: function(text) {
210         this.html.push('<![CDATA[', text, ']]>');
211     },
212     /**
213     * Writes a comment node such as <!-- Comment -->.
214     *
215     * @method cdata
216     * @param {String} text String to write out inside the comment.
217     */
218    comment: function(text) {
219        this.html.push('<!--', text, '-->');
220    },
221     /**
222      * Writes a PI node such as <?xml attr="value" ?>.
223      *
224      * @method pi
225      * @param {String} name Name of the pi.
226      * @param {String} text String to write out inside the pi.
227      */
228     pi: function(name, text) {
229         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
230         this.indent != '' && this.html.push('\n');
231     },
232     /**
233      * Writes a doctype node such as <!DOCTYPE data>.
234      *
235      * @method doctype
236      * @param {String} text String to write out inside the doctype.
237      */
238     doctype: function(text) {
239         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
240     },
241     /**
242      * Resets the internal buffer if one wants to reuse the writer.
243      *
244      * @method reset
245      */
246     reset: function() {
247         this.html.length = 0;
248         this.state = [];
249         this.pushState({
250             indentstr : '',
251             in_pre : false, 
252             in_inline : false
253         })
254     },
255     /**
256      * Returns the contents that got serialized.
257      *
258      * @method getContent
259      * @return {String} HTML contents that got written down.
260      */
261     getContent: function() {
262         return this.html.join('').replace(/\n$/, '');
263     },
264     
265     pushState : function(cfg)
266     {
267         this.state.push(cfg);
268         Roo.apply(this, cfg);
269     },
270     
271     popState : function()
272     {
273         if (this.state.length < 1) {
274             return; // nothing to push
275         }
276         var cfg = {
277             in_pre: false,
278             indentstr : ''
279         };
280         this.state.pop();
281         if (this.state.length > 0) {
282             cfg = this.state[this.state.length-1]; 
283         }
284         Roo.apply(this, cfg);
285     },
286     
287     addLine: function()
288     {
289         if (this.html.length < 1) {
290             return;
291         }
292         
293         
294         var value = this.html[this.html.length - 1];
295         if (value.length > 0 && '\n' !== value) {
296             this.html.push('\n');
297         }
298     }
299     
300     
301 //'pre script noscript style textarea video audio iframe object code'
302 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
303 // inline 
304 };
305
306 Roo.htmleditor.TidyWriter.inline_elements = [
307         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
308         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP'
309 ];
310 Roo.htmleditor.TidyWriter.shortend_elements = [
311     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
312     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
313 ];
314
315 Roo.htmleditor.TidyWriter.whitespace_elements = [
316     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
317 ];