JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
improve scrolling a bit
[peach-html5-editor.git] / editor.coffee
1 # Copyright 2015 Jason Woofenden
2 # This file implements an WYSIWYG editor in the browser (no contenteditable)
3 #
4 # This program is free software: you can redistribute it and/or modify it under
5 # the terms of the GNU Affero General Public License as published by the Free
6 # Software Foundation, either version 3 of the License, or (at your option) any
7 # later version.
8 #
9 # This program is distributed in the hope that it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 # FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
12 # details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # SETTINGS
18 overlay_padding = 10
19
20 TYPE_TAG = peach_parser.TYPE_TAG
21 TYPE_TEXT = peach_parser.TYPE_TEXT
22 TYPE_COMMENT = peach_parser.TYPE_COMMENT
23 TYPE_DOCTYPE = peach_parser.TYPE_DOCTYPE
24
25 debug_dot_at = (doc, x, y) ->
26         return # disabled
27         el = doc.createElement 'div'
28         el.setAttribute 'style', "position: absolute; left: #{x}px; top: #{y}px; width: 1px; height: 3px; background-color: red"
29         doc.body.appendChild el
30         #console.log(new Error().stack)
31
32 # text nodes don't have getBoundingClientRect(), so use selection api to find
33 # it.
34 get_el_bounds = (el) ->
35         if el.getBoundingClientRect?
36                 rect = el.getBoundingClientRect()
37         else
38                 # text nodes don't have getBoundingClientRect(), so use range api
39                 range = el.ownerDocument.createRange()
40                 range.selectNodeContents el
41                 rect = range.getBoundingClientRect()
42         doc = el.ownerDocument.documentElement
43         win = el.ownerDocument.defaultView
44         y_fix = win.pageYOffset - doc.clientTop
45         x_fix = win.pageXOffset - doc.clientLeft
46         return {
47                 x: rect.left + x_fix
48                 y: rect.top + y_fix
49                 w: rect.width ? (rect.right - rect.left)
50                 h: rect.height ? (rect.top - rect.bottom)
51         }
52
53 is_display_block = (el) ->
54         if el.currentStyle?
55                 return el.currentStyle.display is 'block'
56         else
57                 return window.getComputedStyle(el, null).getPropertyValue('display') is 'block'
58
59 # Warning: currently assumes you're asking about a single character
60 # Note: chromium returns multiple bounding rects for a space at a line-break
61 # Note: chromium's getBoundingClientRect() is broken (when zero-area client rects)
62 # Note: sometimes returns null (eg for whitespace that is not visible)
63 text_range_bounds = (el, start, end) ->
64         range = document.createRange()
65         range.setStart el, start
66         range.setEnd el, end
67         rects = range.getClientRects()
68         if rects.length > 0
69                 rect = rects[0]
70         else
71                 return null
72         doc = el.ownerDocument.documentElement
73         win = el.ownerDocument.defaultView
74         y_fix = win.pageYOffset - doc.clientTop
75         x_fix = win.pageXOffset - doc.clientLeft
76         return {
77                 x: rect.left + x_fix
78                 y: rect.top + y_fix
79                 w: rect.width ? (rect.right - rect.left)
80                 h: rect.height ? (rect.top - rect.bottom)
81                 rects: rects
82                 bounding: range.getBoundingClientRect()
83         }
84
85 # figure out the x/y coordinates of where the cursor should be if it's at
86 # position ``i`` within text node ``n``
87 # sometimes returns null (eg for whitespace that is not visible)
88 window.cursor_to_xyh = cursor_to_xyh = (n, i) ->
89         range = document.createRange()
90         if n.text.length is 0
91                 ret = text_range_bounds n.el, 0, 0
92         if i is n.text.length
93                 ret = text_range_bounds n.el, i - 1, i
94                 if ret?
95                         ret.x += ret.w
96         else
97                 ret = text_range_bounds n.el, i, i + 1
98         if ret?
99                 debug_dot_at n.el.ownerDocument, ret.x, ret.y
100         return ret
101
102 # encode text so it can be safely placed inside an html attribute
103 enc_attr_regex = new RegExp '(&)|(")|(\u00A0)', 'g'
104 enc_attr = (txt) ->
105         return txt.replace enc_attr_regex, (match, amp, quote) ->
106                 return '&amp;' if (amp)
107                 return '&quot;' if (quote)
108                 return '&nbsp;'
109 enc_text_regex = new RegExp '(&)|(<)|(\u00A0)', 'g'
110 enc_text = (txt) ->
111         return txt.replace enc_text_regex, (match, amp, lt) ->
112                 return '&amp;' if (amp)
113                 return '&lt;' if (lt)
114                 return '&nbsp;'
115
116 void_elements = {
117         area: true
118         base: true
119         br: true
120         col: true
121         embed: true
122         hr: true
123         img: true
124         input: true
125         keygen: true
126         link: true
127         meta: true
128         param: true
129         source: true
130         track: true
131         wbr: true
132 }
133 dom_to_html = (dom) ->
134         ret = ''
135         for el in dom
136                 switch el.type
137                         when TYPE_TAG
138                                 ret += '<' + el.name
139                                 attr_keys = []
140                                 for k of el.attrs
141                                         attr_keys.unshift k
142                                 #attr_keys.sort()
143                                 for k in attr_keys
144                                         ret += " #{k}"
145                                         if el.attrs[k].length > 0
146                                                 ret += "=\"#{enc_attr el.attrs[k]}\""
147                                 ret += '>'
148                                 unless void_elements[el.name]
149                                         if el.children.length
150                                                 ret += dom_to_html el.children
151                                         ret += "</#{el.name}>"
152                         when TYPE_TEXT
153                                 ret += enc_text el.text
154                         when TYPE_COMMENT
155                                 ret += "<!--#{el.text}-->"
156                         when TYPE_DOCTYPE
157                                 ret += "<!DOCTYPE #{el.name}"
158                                 if el.public_identifier? and el.public_identifier.length > 0
159                                         ret += " \"#{el.public_identifier}\""
160                                 if el.system_identifier? and el.system_identifier.length > 0
161                                         ret += " \"#{el.system_identifier}\""
162                                 ret += ">\n"
163         return ret
164
165 domify = (doc, hash) ->
166         for tag, attrs of hash
167                 if tag is 'text'
168                         return document.createTextNode attrs
169                 el = document.createElement tag
170                 for k, v of attrs
171                         if k is 'children'
172                                 for child in v
173                                         el.appendChild child
174                         else
175                                 el.setAttribute k, v
176         return el
177
178 outer_css = (args) ->
179         w = args.w ? 300
180         h = args.h ? 300
181         inner_padding = args.inner_padding ? overlay_padding
182         frame_width = args.frame_width ? inner_padding
183         # TODO editor controls height...
184         shrink = (px) ->
185                 w -= 2 * px
186                 h -= 2 * px
187                 return px
188         ret = ''
189         ret += 'body {'
190         ret +=     'margin: 0;'
191         ret +=     'padding: 0;'
192         ret += '}'
193         ret += '#wrap1 {'
194         ret +=     "border: #{shrink 1}px solid black;"
195         ret +=     "padding: #{shrink frame_width}px;"
196         ret += '}'
197         ret += '#wrap2 {'
198         ret +=     "border: #{shrink 1}px solid black;"
199         ret +=     "padding: #{shrink inner_padding}px;"
200         ret += '}'
201         ret += '#wrap3 {'
202         ret +=     'position: relative;'
203         ret += '}'
204         ret += 'iframe {'
205         ret +=     'box-sizing: border-box;'
206         ret +=     'margin: 0;'
207         ret +=     'border: none;'
208         ret +=     'padding: 0;'
209         ret +=     "width: #{w}px;"
210         ret +=     "height: #{h}px;"
211         ret += '}'
212         ret += '#overlay {'
213         ret +=     'position: absolute;'
214         ret +=     "left: -#{inner_padding}px;"
215         ret +=     "top: -#{inner_padding}px;"
216         ret +=     "right: -#{inner_padding}px;"
217         ret +=     "bottom: -#{inner_padding}px;"
218         ret +=     'overflow: hidden;'
219         ret += '}'
220         ret += '.lightbox {'
221         ret +=     'position: absolute;'
222         ret +=     'background: rgba(100,100,100,0.2);'
223         ret += '}'
224         ret += '#cursor {'
225         ret +=     'position: absolute;'
226         ret +=     'height: 1em;' # FIXME adjust for hight of text
227         ret +=     'width: 2px;'
228         ret +=     'background: #444;'
229         ret +=     '-webkit-animation: blink 1s steps(2, start) infinite;'
230         ret +=     'animation: blink 1s steps(2, start) infinite;'
231         ret += '}'
232         ret += '@-webkit-keyframes blink {'
233         ret +=     'to { visibility: hidden; }'
234         ret += '}'
235         ret += '@keyframes blink {'
236         ret +=     'to { visibility: hidden; }'
237         ret += '}'
238         return ret
239
240 # key codes:
241 KEY_LEFT = 37
242 KEY_UP = 38
243 KEY_RIGHT = 39
244 KEY_DOWN = 40
245 KEY_BACKSPACE = 8 # <--
246 KEY_DELETE = 46 # -->
247 KEY_END = 35
248 KEY_ENTER = 13
249 KEY_ESCAPE = 27
250 KEY_HOME = 36
251 KEY_INSERT = 45
252 KEY_PAGE_UP = 33
253 KEY_PAGE_DOWN = 34
254 KEY_TAB = 9
255
256 ignore_key_codes =
257         '18': true # alt
258         '20': true # capslock
259         '17': true # ctrl
260         '144': true # numlock
261         '16': true # shift
262         '91': true # windows "start" key
263 control_key_codes = # we react to these, but they aren't typing
264         '37': KEY_LEFT
265         '38': KEY_UP
266         '39': KEY_RIGHT
267         '40': KEY_DOWN
268         '35': KEY_END
269         '8':  KEY_BACKSPACE
270         '46': KEY_DELETE
271         '13': KEY_ENTER
272         '27': KEY_ESCAPE
273         '36': KEY_HOME
274         '45': KEY_INSERT
275         '33': KEY_PAGE_UP
276         '34': KEY_PAGE_DOWN
277         '9':  KEY_TAB
278
279 instantiate_tree = (tree, parent) ->
280         remove = []
281         for c, i in tree
282                 switch c.type
283                         when TYPE_TEXT
284                                 c.el = parent.ownerDocument.createTextNode c.text
285                                 parent.appendChild c.el
286                         when TYPE_TAG
287                                 if c.name in ['script', 'object', 'iframe', 'link']
288                                         # TODO put placeholders instead
289                                         remove.unshift i
290                                 # TODO create in correct namespace
291                                 c.el = parent.ownerDocument.createElement c.name
292                                 for k, v of c.attrs
293                                         # FIXME if attr_whitelist[k]?
294                                         c.el.setAttribute k, v
295                                 parent.appendChild c.el
296                                 if c.children.length
297                                         instantiate_tree c.children, c.el
298         for i in remove
299                 tree.splice i, 1
300
301 traverse_tree = (tree, state, cb) ->
302         for c in tree
303                 cb c, state
304                 break if state.done?
305                 if c.children.length
306                         traverse_tree c.children, state, cb
307                         break if state.done?
308         return state
309 # find the next element in tree (and decendants) that is after n and can contain text
310 # TODO make it so cursor can go places that don't have text but could
311 find_next_cursor_position = (tree, n, i) ->
312         if n? and n.type is TYPE_TEXT and n.text.length > i
313                 orig_xyh = cursor_to_xyh n, i
314                 unless orig_xyh?
315                         console.log "ERROR: couldn't find xy for current cursor location"
316                         return
317                 for next_i in [i+1 .. n.text.length] # inclusive is valid (after last char)
318                         next_xyh = cursor_to_xyh n, next_i
319                         if next_xyh?
320                                 if next_xyh.x > orig_xyh.x or next_xyh.y > orig_xyh.y
321                                         return [n, next_i]
322         found = traverse_tree tree, before: n?, (node, state) ->
323                 if node.type is TYPE_TEXT and state.before is false
324                         state.node = node
325                         state.done = true
326                 if node is n
327                         state.before = false
328         if found.node?
329                 return [found.node, 0]
330         return null
331
332 # TODO make it so cursor can go places that don't have text but could
333 find_prev_cursor_position = (tree, n, i) ->
334         if n? and n.type is TYPE_TEXT and i > 0
335                 orig_xyh = cursor_to_xyh n, i
336                 unless orig_xyh?
337                         console.log "ERROR: couldn't find xy for current cursor location"
338                         return
339                 for prev_i in [i-1 .. 0]
340                         prev_xyh = cursor_to_xyh n, prev_i
341                         if prev_xyh?
342                                 if prev_xyh.x < orig_xyh.x or prev_xyh.y < orig_xyh.y
343                                         return [n, prev_i]
344                 return [n, i - 1]
345         found = traverse_tree tree, before: n?, (node, state) ->
346                 if node.type is TYPE_TEXT
347                         unless n?
348                                 state.node = node
349                                 state.done = true
350                         if node is n
351                                 if state.prev?
352                                         state.node = state.prev
353                                 state.done = true
354                         if node
355                                 state.prev = node
356         if found.node?
357                 return [found.node, found.node.text.length]
358         return null
359
360 find_loc_cursor_position = (tree, loc) ->
361         for c in tree
362                 if c.type is TYPE_TAG or c.type is TYPE_TEXT
363                         bounds = get_el_bounds c.el
364                         continue if loc.x < bounds.x
365                         continue if loc.x > bounds.x + bounds.w
366                         continue if loc.y < bounds.y
367                         continue if loc.y > bounds.y + bounds.h
368                         if c.children.length
369                                 ret = find_loc_cursor_position c.children, loc
370                                 return ret if ret?
371                         if c.type is TYPE_TEXT
372                                 # click is within bounding box that contains all text.
373                                 return [c, 0] if c.text.length is 0
374                                 before_i = 0
375                                 before = cursor_to_xyh c, before_i
376                                 unless before?
377                                         console.log "error: failed to find cursor pixel location for start of", c
378                                         return
379                                 after_i = c.text.length
380                                 after = cursor_to_xyh c, after_i
381                                 unless after?
382                                         console.log "error: failed to find cursor pixel location for end of", c
383                                         return
384                                 if loc.y < before.y + before.h and loc.x < before.x
385                                         # console.log 'before first char on first line'
386                                         continue
387                                 if loc.y > after.y and loc.x > after.x
388                                         # console.log 'after last char on last line'
389                                         continue
390                                 if loc.y < before.y
391                                         console.log "Warning: click in bounding box but above first line"
392                                         continue # above first line (runaround?)
393                                 if loc.y > after.y + after.h
394                                         console.log "Warning: click in bounding box but below last line", loc.y, after.y, after.h
395                                         continue # below last line (shouldn't happen?)
396                                 while after_i - before_i > 1
397                                         cur_i = Math.round((before_i + after_i) / 2)
398                                         cur = cursor_to_xyh c, cur_i
399                                         unless loc?
400                                                 console.log "error: failed to find cursor pixel location for", c, cur_i
401                                                 return
402                                         if loc.y < cur.y or (loc.y <= cur.y + cur.h and loc.x < cur.x)
403                                                 after_i = cur_i
404                                                 after = cur
405                                         else
406                                                 before_i = cur_i
407                                                 before = cur
408                                 # which one is closest?
409                                 if Math.abs(before.x - loc.x) < Math.abs(after.x - loc.x)
410                                         return [c, before_i]
411                                 else
412                                         return [c, after_i]
413         return null
414
415 # browsers collapse these (html5 spec calls these "space characters")
416 is_space_code = (char_code) ->
417         switch char_code
418                 when 9, 10, 12, 13, 32
419                         return true
420         return false
421 is_space = (chr) ->
422         return is_space_code chr.charCodeAt 0
423
424 # pass a array of nodes (from parser library, ie it should have .el and .text)
425 tree_dedup_space = (tree) ->
426         prev = cur = next = null
427         prev_i = cur_i = next_i = 0
428         prev_pos = pos = next_pos = null
429         prev_px = cur_px = next_px = null
430         first = true
431         removed_char = null
432
433         iterate = (tree, cb) ->
434                 for n in tree
435                         if n.type is TYPE_TEXT
436                                 i = 0
437                                 while i < n.text.length # don't foreach, cb might remove chars
438                                         advance = cb n, i
439                                         if advance
440                                                 i += 1
441                         if n.type is TYPE_TAG
442                                 block = is_display_block n.el
443                                 if block
444                                         cb null
445                                 if n.children.length > 0
446                                         iterate n.children, cb
447                                 if block
448                                         cb null
449         # remove cur char
450         remove = ->
451                 removed_char = cur.text.charAt(cur_i)
452                 cur.el.textContent = cur.text = (cur.text.substr 0, cur_i) + (cur.text.substr cur_i + 1)
453                 if next is cur # in same text node
454                         if next_i is 0
455                                 throw "how is this possible?"
456                         next_i -= 1
457                 return true
458         # undo remove()
459         put_it_back = ->
460                 cur.el.textContent = cur.text = (cur.text.substr 0, cur_i) + removed_char + (cur.text.substr cur_i)
461                 if next is cur # in same text node
462                         next_i += 1
463                 return false
464         # return true if cur was removed from the dom (ie re-use same prev)
465         operate = ->
466                 # cur definitately set
467                 # prev and/or next might be null, indicating the start/end of a display:block
468                 return false unless is_space_code cur.text.charCodeAt cur_i
469                 bounds = text_range_bounds cur.el, cur_i, cur_i + 1
470                 # consistent cases:
471                 # 1. zero rects returned by getClientRects() means collapsed space
472                 if bounds is null
473                         return remove()
474                 # 2. width greater than zero means visible space
475                 if bounds.w > 0
476                         return false
477                 # now the weird edge cases...
478                 #
479                 # firefox and chromium both report zero width for characters at the end
480                 # of a line where the text wraps (automatically, due to word-wrap) to
481                 # the next line. These do not appear to be distinguishable from
482                 # collapsed spaces via the range/bounds api, so...
483                 #
484                 # remove it from the dom, and if prev or next moves, put it back.
485                 if prev? and not prev_px?
486                         prev_px = cursor_to_xyh prev, prev_i
487                 if next? and not next_px?
488                         next_px = cursor_to_xyh next, next_i
489                 #if prev is null and next is null
490                 #       parent_px = cur.parent.el.getBoundingClientRect()
491                 remove()
492                 if prev?
493                         if prev_px?
494                                 new_prev_px = cursor_to_xyh prev, prev_i
495                                 if new_prev_px.x isnt prev_px.x or new_prev_px.y isnt prev_px.y
496                                         return put_it_back()
497                         else
498                                 console.log "this shouldn't happen, we remove spaces that don't locate"
499                 if next?
500                         if next_px?
501                                 new_next_px = cursor_to_xyh next, next_i
502                                 if new_next_px.x isnt next_px.x or new_next_px.y isnt next_px.y
503                                         return put_it_back()
504                         #else
505                         #       console.log "removing space becase space after it is collapsed"
506                 # if there's no prev or next (single space inside a block-level element?) check
507                 # TODO scrapt this, or fix it so it works when there's no parent
508                 # if prev is null and next is null
509                 #       new_parent_px = cur.parent.el.getBoundingClientRect()
510                 #       if new_parent_px.left isnt parent_px.left or new_parent_px.top isnt parent_px.top or new_parent_px.right isnt parent_px.right or new_parent_px.bottom isnt parent_px.bottom
511                 #               console.log "WEIRD: parent moved"
512                 #               return put_it_back()
513                 # we didn't put it back
514                 return true
515         # pass null at start/end of display:block
516         queue = (n, i) ->
517                 next = n
518                 next_i = i
519                 next_px = null
520                 advance = true
521                 if cur?
522                         removed = operate()
523                         # don't advance (to the next character next time) if we removed a
524                         # character from the same text node as ``next``, because doing so
525                         # renumbers the indexes in that string
526                         if removed and cur is next
527                                 advance = false
528                 else
529                         removed = false
530                 unless removed
531                         prev = cur
532                         prev_i = cur_i
533                         prev_px = cur_px
534                 cur = next
535                 cur_i = next_i
536                 cur_px = next_px
537                 return advance
538         queue null
539         iterate tree, queue
540         queue null
541
542 class PeachHTML5Editor
543         # Options: (all optional)
544         #   editor_id: "id" attribute for outer-most element created by/for editor
545         constructor: (in_el, options) ->
546                 @options = options ? {}
547                 @in_el = in_el
548                 @tree = []
549                 @initialized = false # when iframes have loaded
550                 @outer_iframe # iframe to hold editor
551                 @outer_idoc # "document" object for @outer_iframe
552                 @iframe = null # iframe to hold editable content
553                 @idoc = null # "document" object for @iframe
554                 @cursor = null
555                 @cursor_el = null
556                 @cursor_visible = false
557                 opt_fragment = @options.fragment ? true
558                 @parser_opts = {}
559                 if opt_fragment
560                         @parser_opts.fragment = 'body'
561
562                 @outer_iframe = domify document, iframe: {}
563                 outer_iframe_style = 'border: none !important; margin: 0 !important; padding: 0 !important; height: 100% !important; width: 100% !important;'
564                 if @options.editor_id?
565                         @outer_iframe.setAttribute 'id', @options.editor_id
566                 @outer_iframe.onload = =>
567                         @outer_idoc = @outer_iframe.contentDocument
568                         icss = domify @outer_idoc, style: children: [
569                                 domify @outer_idoc, text: css
570                         ]
571                         @outer_idoc.head.appendChild icss
572                         @iframe = domify @outer_idoc, iframe: {}
573                         @iframe.onload = =>
574                                 @init()
575                         setTimeout (=> @init()), 200 # firefox never fires this onload
576                         @outer_idoc.body.appendChild(
577                                 domify @outer_idoc, div: id: 'wrap1', children: [
578                                         domify @outer_idoc, div: id: 'wrap2', children: [
579                                                 domify @outer_idoc, div: id: 'wrap3', children: [
580                                                         @iframe
581                                                         @overlay = domify @outer_idoc, div: id: 'overlay'
582                                                 ]
583                                         ]
584                                 ]
585                         )
586                 outer_wrap = domify document, div: class: 'peach_html5_editor'
587                 @in_el.parentNode.appendChild outer_wrap
588                 outer_bounds = get_el_bounds outer_wrap
589                 if outer_bounds.w < 300
590                         outer_bounds.w = 300
591                 if outer_bounds.h < 300
592                         outer_bounds.h = 300
593                 outer_iframe_style += "width: #{outer_bounds.w}px; height: #{outer_bounds.h}px;"
594                 @outer_iframe.setAttribute 'style', outer_iframe_style
595                 css = outer_css w: outer_bounds.w, h: outer_bounds.h
596                 outer_wrap.appendChild @outer_iframe
597         init: -> # called by @iframe's onload (or timeout on firefox)
598                 return if @initialized # ignore timeout for non-broken browsers
599                 @idoc = @iframe.contentDocument
600                 @overlay.onclick = (e) =>
601                         return @onclick e
602                 @outer_idoc.body.onkeyup = (e) =>
603                         return @onkeyup e
604                 @outer_idoc.body.onkeydown = (e) =>
605                         return @onkeydown e
606                 @outer_idoc.body.onkeypress = (e) =>
607                         return @onkeypress e
608                 if @options.stylesheet
609                         # TODO test this
610                         @idoc.head.appendChild domify @idoc, style: src: @options.stylesheet
611                 @load_html @in_el.value
612                 @initialized = true
613                 if @options.initialized_cb?
614                         @options.initialized_cb()
615         onclick: (e) ->
616                 x = (e.offsetX ? e.layerX) - overlay_padding
617                 y = (e.offsetY ? e.layerY) - overlay_padding
618                 new_cursor = find_loc_cursor_position @tree, x: x, y: y
619                 if new_cursor?
620                         @move_cursor new_cursor
621         onkeyup: (e) ->
622                 return if e.ctrlKey
623                 return false if ignore_key_codes[e.keyCode]?
624                 #return false if control_key_codes[e.keyCode]?
625         onkeydown: (e) ->
626                 return if e.ctrlKey
627                 return false if ignore_key_codes[e.keyCode]?
628                 #return false if control_key_codes[e.keyCode]?
629                 switch e.keyCode
630                         when KEY_LEFT
631                                 if @cursor?
632                                         new_cursor = find_prev_cursor_position @tree, @cursor...
633                                         if new_cursor?
634                                                 @move_cursor new_cursor
635                                 else
636                                         for c in @tree
637                                                 new_cursor = find_next_cursor_position @tree, c, -1
638                                                 if new_cursor?
639                                                         @move_cursor new_cursor
640                                                         break
641                                 return false
642                         when KEY_UP
643                                 return false
644                         when KEY_RIGHT
645                                 if @cursor?
646                                         new_cursor = find_next_cursor_position @tree, @cursor...
647                                         if new_cursor?
648                                                 @move_cursor new_cursor
649                                 else
650                                         for c in @tree
651                                                 new_cursor = find_prev_cursor_position @tree, c, -1
652                                                 if new_cursor?
653                                                         @move_cursor new_cursor
654                                                         break
655                                 return false
656                         when KEY_DOWN
657                                 return false
658                         when KEY_END
659                                 return false
660                         when KEY_BACKSPACE
661                                 return false unless @cursor?
662                                 return false unless @cursor[1] > 0
663                                 @cursor[0].text = @cursor[0].text.substr(0, @cursor[1] - 1) + @cursor[0].text.substr(@cursor[1])
664                                 @cursor[0].el.nodeValue = @cursor[0].text
665                                 @move_cursor [@cursor[0], @cursor[1] - 1]
666                                 return false
667                         when KEY_DELETE
668                                 return false unless @cursor?
669                                 return false unless @cursor[1] < @cursor[0].text.length
670                                 @cursor[0].text = @cursor[0].text.substr(0, @cursor[1]) + @cursor[0].text.substr(@cursor[1] + 1)
671                                 @cursor[0].el.nodeValue = @cursor[0].text
672                                 @move_cursor [@cursor[0], @cursor[1]]
673                                 return false
674                         when KEY_ENTER
675                                 return false
676                         when KEY_ESCAPE
677                                 return false
678                         when KEY_HOME
679                                 return false
680                         when KEY_INSERT
681                                 return false
682                         when KEY_PAGE_UP
683                                 return false
684                         when KEY_PAGE_DOWN
685                                 return false
686                         when KEY_TAB
687                                 return false
688         onkeypress: (e) ->
689                 return if e.ctrlKey
690                 return false if ignore_key_codes[e.keyCode]?
691                 return false if control_key_codes[e.keyCode]? # handled in keydown
692                 char = e.charCode ? e.keyCode
693                 if char and @cursor?
694                         char = String.fromCharCode char
695                         if @cursor[1] is 0
696                                 @cursor[0].text = char + @cursor[0].text
697                         else if @cursor[1] is @cursor[0].text.length - 1
698                                 @cursor[0].text += char
699                         else
700                                 @cursor[0].text =
701                                         @cursor[0].text.substr(0, @cursor[1]) +
702                                         char +
703                                         @cursor[0].text.substr(@cursor[1])
704                         @cursor[0].el.nodeValue = @cursor[0].text
705                         @move_cursor [@cursor[0], @cursor[1] + 1]
706                         @changed()
707                 return false
708         clear_dom: -> # remove all the editable content (and cursor, overlays, etc)
709                 while @idoc.body.childNodes.length
710                         @idoc.body.removeChild @idoc.body.childNodes[0]
711                 @kill_cursor()
712                 return
713         load_html: (html) ->
714                 @tree = peach_parser.parse html, @parser_opts
715                 @clear_dom()
716                 instantiate_tree @tree, @idoc.body
717                 tree_dedup_space @tree
718                 @changed()
719         changed: ->
720                 # FIXME don't export cursor placeholder (when cursor is between space characters)
721                 @in_el.onchange = null
722                 @in_el.value = dom_to_html @tree
723                 @in_el.onchange = =>
724                         @load_html @in_el.value
725                 @iframe.style.height = "0"
726                 @iframe.style.height = "#{@idoc.body.scrollHeight}px"
727         kill_cursor: -> # remove it, forget where it was
728                 if @cursor_visible
729                         @cursor_el.parentNode.removeChild @cursor_el
730                         @cursor_visible = false
731                 @cursor = null
732         move_cursor: (cursor) ->
733                 loc = cursor_to_xyh cursor[0], cursor[1]
734                 unless loc?
735                         console.log "error: tried to move cursor to position that has no pixel location", cursor[0], cursor[1]
736                         return
737                 @cursor = cursor
738                 # replace cursor, to reset blink animation
739                 if @cursor_visible
740                         @cursor_el.parentNode.removeChild @cursor_el
741                 @cursor_el = domify @outer_idoc, div: id: 'cursor'
742                 @overlay.appendChild @cursor_el
743                 @cursor_visible = true
744                 # TODO figure out x,y coords for cursor
745                 @cursor_el.style.left = "#{loc.x + overlay_padding - 1}px"
746                 @cursor_el.style.top = "#{loc.y + overlay_padding}px"
747
748 window.peach_html5_editor = (args...) ->
749         return new PeachHTML5Editor args...
750
751 # test in browser: peach_html5_editor(document.getElementsByTagName('textarea')[0])