JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix cursor on inlines that start mid-row
[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 TYPE_TAG = peach_parser.TYPE_TAG
18 TYPE_TEXT = peach_parser.TYPE_TEXT
19 TYPE_COMMENT = peach_parser.TYPE_COMMENT
20 TYPE_DOCTYPE = peach_parser.TYPE_DOCTYPE
21
22 # text nodes don't have getBoundingClientRect(), so wrap it in a span, measure
23 # and then put it back
24 get_text_bounding_rect = (el) ->
25         span = el.ownerDocument.createElement 'span'
26         el.parentNode.replaceChild span, el
27         span.appendChild el
28         ret = span.getBoundingClientRect()
29         span.parentNode.replaceChild el, span
30         return ret
31 get_el_bounds = (el) ->
32         if el.getBoundingClientRect
33                 rect = el.getBoundingClientRect()
34         else
35                 rect = get_text_bounding_rect el
36         doc = el.ownerDocument.documentElement
37         win = el.ownerDocument.defaultView
38         y_fix = win.pageYOffset - doc.clientTop
39         x_fix = win.pageXOffset - doc.clientLeft
40         return {
41                 x: rect.left + x_fix
42                 y: rect.top + y_fix
43                 w: rect.width ? (rect.right - rect.left)
44                 h: rect.height ? (rect.top - rect.bottom)
45         }
46
47 # figure out the x/y coordinates of where the cursor should be if it's at
48 # position ``i`` within text node ``n``
49 #
50 # implementation: insert a span tag where we want the cursor, and ask the
51 # browser where it put that span
52 window.cursor_to_xyh = cursor_to_xyh = (n, i) ->
53         parent = n.el.parentNode
54         els = []
55         txts = []
56         plus_width = false
57         if n.text.length < 2
58                 bounds = get_el_offset n.el
59                 if i is 1
60                         plus_width = true
61         else
62                 if i is 0 # cursor at start of text
63                         check_i = 0
64                         txts.push n.text.substr 0, 1
65                         txts.push n.text.substr 1
66                 else if i is n.text.length # cursor at end of text
67                         check_i = 1
68                         plus_width = true
69                         txts.push n.text.substr 0, n.text.length - 1
70                         txts.push n.text.substr n.text.length - 1
71                 else
72                         check_i = 1
73                         txts.push n.text.substr 0, i
74                         txts.push n.text.substr i, 1
75                         txts.push n.text.substr i + 1
76                 for txt, txt_i in txts
77                         el = n.el.ownerDocument.createTextNode txt
78                         if txt_i is check_i
79                                 span = n.el.ownerDocument.createElement 'span'
80                                 span.appendChild el
81                                 el = span
82                         els.push el
83                         parent.insertBefore el, n.el
84                 parent.removeChild n.el
85                 bounds = get_el_bounds els[check_i]
86                 parent.insertBefore n.el, els[0]
87                 for el in els
88                         parent.removeChild el
89         ret = x: bounds.x, y: bounds.y, h: bounds.h
90         if plus_width
91                 ret.x += bounds.w
92         # fudge case where bounds are BS because we're on non-significant whitespace
93         if i > 0
94                 first = cursor_to_xyh n, 0
95                 if ret.x <= first.x and ret.y is first.y
96                         # no need for a loop here, because recursion
97                         ret = cursor_to_xyh n, i - 1
98         return ret
99
100 # encode text so it can be safely placed inside an html attribute
101 enc_attr_regex = new RegExp '(&)|(")|(\u00A0)', 'g'
102 enc_attr = (txt) ->
103         return txt.replace enc_attr_regex, (match, amp, quote) ->
104                 return '&amp;' if (amp)
105                 return '&quot;' if (quote)
106                 return '&nbsp;'
107
108 void_elements = {
109         area: true
110         base: true
111         br: true
112         col: true
113         embed: true
114         hr: true
115         img: true
116         input: true
117         keygen: true
118         link: true
119         meta: true
120         param: true
121         source: true
122         track: true
123         wbr: true
124 }
125 dom_to_html = (dom) ->
126         ret = ''
127         for el in dom
128                 switch el.type
129                         when TYPE_TAG
130                                 ret += '<' + el.name
131                                 attr_keys = []
132                                 for k of el.attrs
133                                         attr_keys.unshift k
134                                 #attr_keys.sort()
135                                 for k in attr_keys
136                                         ret += " #{k}"
137                                         if el.attrs[k].length > 0
138                                                 ret += "=\"#{enc_attr el.attrs[k]}\""
139                                 ret += '>'
140                                 unless void_elements[el.name]
141                                         if el.children.length
142                                                 ret += dom_to_html el.children
143                                         ret += "</#{el.name}>"
144                         when TYPE_TEXT
145                                 ret += el.text
146                         when TYPE_COMMENT
147                                 ret += "<!--#{el.text}-->"
148                         when TYPE_DOCTYPE
149                                 ret += "<!DOCTYPE #{el.name}"
150                                 if el.public_identifier? and el.public_identifier.length > 0
151                                         ret += " \"#{el.public_identifier}\""
152                                 if el.system_identifier? and el.system_identifier.length > 0
153                                         ret += " \"#{el.system_identifier}\""
154                                 ret += ">\n"
155         return ret
156
157 domify = (h) ->
158         for tag, attrs of h
159                 if tag is 'text'
160                         return document.createTextNode attrs
161                 el = document.createElement tag
162                 for k, v of attrs
163                         if k is 'children'
164                                 for child in v
165                                         el.appendChild child
166                         else
167                                 el.setAttribute k, v
168         return el
169
170 css = ''
171 css += 'div#peach_html5_editor_cursor {'
172 css +=     'position: absolute;'
173 css +=     'height: 1em;'
174 css +=     'width: 2px;'
175 css +=     'margin-left: -1px;'
176 css +=     'margin-right: -1px;'
177 css +=     'background: #000;'
178 css +=     '-webkit-animation: 1s blink step-end infinite;'
179 css +=     'animation: 1s blink step-end infinite;'
180 css += '}'
181 css += '@-webkit-keyframes "blink" {'
182 css +=     'from, to { background: #000; }'
183 css +=     '50% { background: transparent; }'
184 css += '}'
185 css += '@keyframes "blink" {'
186 css +=     'from, to { background: #000; }'
187 css +=     '50% { background: transparent; }'
188 css += '}'
189
190 # key codes:
191 KEY_LEFT = 37
192 KEY_UP = 38
193 KEY_RIGHT = 39
194 KEY_DOWN = 40
195 KEY_BACKSPACE = 8 # <--
196 KEY_DELETE = 46 # -->
197 KEY_END = 35
198 KEY_ENTER = 13
199 KEY_ESCAPE = 27
200 KEY_HOME = 36
201 KEY_INSERT = 45
202 KEY_PAGE_UP = 33
203 KEY_PAGE_DOWN = 34
204 KEY_TAB = 9
205
206 instantiate_tree = (tree, parent) ->
207         for c in tree
208                 switch c.type
209                         when TYPE_TEXT
210                                 c.el = parent.ownerDocument.createTextNode c.text
211                                 parent.appendChild c.el
212                         when TYPE_TAG
213                                 # TODO create in correct namespace
214                                 c.el = parent.ownerDocument.createElement c.name
215                                 for k, v of c.attrs
216                                         # FIXME if attr_whitelist[k]?
217                                         c.el.setAttribute k, v
218                                 parent.appendChild c.el
219                                 if c.children.length
220                                         instantiate_tree c.children, c.el
221
222 traverse_tree = (tree, state, cb) ->
223         for c in tree
224                 cb c, state
225                 break if state.done?
226                 if c.children.length
227                         traverse_tree c.children, state, cb
228                         break if state.done?
229         return state
230 # find the next element in tree (and decendants) that is after n and can contain text
231 # TODO make it so cursor can go places that don't have text but could
232 find_next_cursor_position = (tree, n, i) ->
233         if n? and n.type is TYPE_TEXT and n.text.length > i
234                 return [n, i + 1]
235         found = traverse_tree tree, before: n?, (node, state) ->
236                 if node.type is TYPE_TEXT and state.before is false
237                         state.node = node
238                         state.done = true
239                 if node is n
240                         state.before = false
241         if found.node?
242                 return [found.node, 0]
243         return null
244
245 # TODO make it so cursor can go places that don't have text but could
246 find_prev_cursor_position = (tree, n, i) ->
247         if n? and n.type is TYPE_TEXT and i > 0
248                 return [n, i - 1]
249         found = traverse_tree tree, before: n?, (node, state) ->
250                 if node.type is TYPE_TEXT
251                         unless n?
252                                 state.node = node
253                                 state.done = true
254                         if node is n
255                                 if state.prev?
256                                         state.node = state.prev
257                                 state.done = true
258                         if node
259                                 state.prev = node
260         if found.node?
261                 return [found.node, found.node.text.length]
262         return null
263
264 find_loc_cursor_position = (tree, loc) ->
265         for c in tree
266                 if c.type is TYPE_TAG or c.type is TYPE_TEXT
267                         bounds = get_el_bounds c.el
268                         continue if loc.x < bounds.x
269                         continue if loc.x > bounds.x + bounds.w
270                         continue if loc.y < bounds.y
271                         continue if loc.y > bounds.y + bounds.h
272                         if c.children.length
273                                 ret = find_loc_cursor_position c.children, loc
274                                 return ret if ret?
275                         if c.type is TYPE_TEXT
276                                 # click is within bounding box that contains all text.
277                                 return [c, 0] if c.text.length is 0
278                                 before_i = 0
279                                 before = cursor_to_xyh c, before_i
280                                 after_i = c.text.length
281                                 after = cursor_to_xyh c, after_i
282                                 if loc.y < before.y + before.h and loc.x < before.x
283                                         continue # before first char on first line
284                                 if loc.y > after.y and loc.x > after.x
285                                         continue # after last char on last line
286                                 if loc.y < before.y
287                                         console.log "Warning: click in bounding box but above first line"
288                                         continue # above first line (runaround?)
289                                 if loc.y > after.y + after.h
290                                         console.log "Warning: click in bounding box but below last line", loc.y, after.y, after.h
291                                         continue # below last line (shouldn't happen?)
292                                 while after_i - before_i > 1
293                                         cur_i = Math.round((before_i + after_i) / 2)
294                                         cur = cursor_to_xyh c, cur_i
295                                         if loc.y < cur.y or (loc.y <= cur.y + cur.h and loc.x < cur.x)
296                                                 after_i = cur_i
297                                                 after = cur
298                                         else
299                                                 before_i = cur_i
300                                                 before = cur
301                                 # which one is closest?
302                                 if Math.abs(before.x - loc.x) < Math.abs(after.x - loc.x)
303                                         return [c, before_i]
304                                 else
305                                         return [c, after_i]
306         return null
307
308 class PeachHTML5Editor
309         constructor: (in_el, options = {}) ->
310                 @in_el = in_el
311                 @tree = []
312                 @iframe = domify iframe: class: 'peach_html5_editor'
313                 @cursor = null
314                 @cursor_el = null
315                 @cursor_visible = false
316                 opt_fragment = options.fragment ? true
317                 @parser_opts = {}
318                 if opt_fragment
319                         @parser_opts.fragment = 'body'
320
321                 @iframe.onload = =>
322                         @idoc = @iframe.contentDocument
323
324                         ignore_key_codes =
325                                 '18': true # alt
326                                 '20': true # capslock
327                                 '17': true # ctrl
328                                 '144': true # numlock
329                                 '16': true # shift
330                                 '91': true # windows "start" key
331                         control_key_codes = # we react to these, but they aren't typing
332                                 '37': KEY_LEFT
333                                 '38': KEY_UP
334                                 '39': KEY_RIGHT
335                                 '40': KEY_DOWN
336                                 '35': KEY_END
337                                 '8':  KEY_BACKSPACE
338                                 '46': KEY_DELETE
339                                 '13': KEY_ENTER
340                                 '27': KEY_ESCAPE
341                                 '36': KEY_HOME
342                                 '45': KEY_INSERT
343                                 '33': KEY_PAGE_UP
344                                 '34': KEY_PAGE_DOWN
345                                 '9':  KEY_TAB
346
347                         @idoc.body.onclick = (e) =>
348                                 # idoc.body.offset().left/top
349                                 new_cursor = find_loc_cursor_position @tree, x: e.pageX, y: e.pageY
350                                 if new_cursor?
351                                         @move_cursor new_cursor
352                         @idoc.body.onkeyup = (e) =>
353                                 return if e.ctrlKey
354                                 return false if ignore_key_codes[e.keyCode]?
355                                 #return false if control_key_codes[e.keyCode]?
356                         @idoc.body.onkeydown = (e) =>
357                                 return if e.ctrlKey
358                                 return false if ignore_key_codes[e.keyCode]?
359                                 #return false if control_key_codes[e.keyCode]?
360                                 switch e.keyCode
361                                         when KEY_LEFT
362                                                 if @cursor?
363                                                         new_cursor = find_prev_cursor_position @tree, @cursor...
364                                                         if new_cursor?
365                                                                 @move_cursor new_cursor
366                                                 else
367                                                         for c in @tree
368                                                                 new_cursor = find_next_cursor_position @tree, c, -1
369                                                                 if new_cursor?
370                                                                         @move_cursor new_cursor
371                                                                         break
372                                                 return false
373                                         when KEY_UP
374                                                 return false
375                                         when KEY_RIGHT
376                                                 if @cursor?
377                                                         new_cursor = find_next_cursor_position @tree, @cursor...
378                                                         if new_cursor?
379                                                                 @move_cursor new_cursor
380                                                 else
381                                                         for c in @tree
382                                                                 new_cursor = find_prev_cursor_position @tree, c, -1
383                                                                 if new_cursor?
384                                                                         @move_cursor new_cursor
385                                                                         break
386                                                 return false
387                                         when KEY_DOWN
388                                                 return false
389                                         when KEY_END
390                                                 return false
391                                         when KEY_BACKSPACE
392                                                 return false
393                                         when KEY_DELETE
394                                                 return false
395                                         when KEY_ENTER
396                                                 return false
397                                         when KEY_ESCAPE
398                                                 return false
399                                         when KEY_HOME
400                                                 return false
401                                         when KEY_INSERT
402                                                 return false
403                                         when KEY_PAGE_UP
404                                                 return false
405                                         when KEY_PAGE_DOWN
406                                                 return false
407                                         when KEY_TAB
408                                                 return false
409                         @idoc.body.onkeypress = (e) =>
410                                 return if e.ctrlKey
411                                 return false if ignore_key_codes[e.keyCode]?
412                                 return false if control_key_codes[e.keyCode]? # handled in keydown
413                                 char = e.charCode ? e.keyCode
414                                 if char and @cursor?
415                                         char = String.fromCharCode char
416                                         if @cursor[1] is 0
417                                                 @cursor[0].text = char + @cursor[0].text
418                                         else if @cursor[1] is @cursor[0].text.length - 1
419                                                 @cursor[0].text += char
420                                         else
421                                                 @cursor[0].text =
422                                                         @cursor[0].text.substr(0, @cursor[1]) +
423                                                         char +
424                                                         @cursor[0].text.substr(@cursor[1])
425                                         @cursor[0].el.nodeValue = @cursor[0].text
426                                         @move_cursor [@cursor[0], @cursor[1] + 1]
427                                 return false
428                         if options.stylesheet # TODO test this
429                                 istyle = @idoc.createElement 'style'
430                                 istyle.setAttribute 'src', options.stylesheet
431                                 @idoc.head.appendChild istyle
432                         icss = @idoc.createElement 'style'
433                         icss.appendChild @idoc.createTextNode css
434                         @idoc.head.appendChild icss
435                         @load_html @in_el.value
436
437                 @in_el.parentNode.appendChild @iframe
438         clear_dom: ->
439                 # FIXME add parent node, so we don't empty body and delete cursor_el
440                 while @idoc.body.childNodes.length
441                         @idoc.body.removeChild @idoc.body.childNodes[0]
442                 @cursor_visible = false
443                 return
444         load_html: (html) ->
445                 @tree = peach_parser.parse html, @parser_opts
446                 #as_html = dom_to_html @tree
447                 #@iframe.contentDocument.body.innerHTML = as_html
448                 @clear_dom()
449                 instantiate_tree @tree, @idoc.body
450         move_cursor: (cursor) ->
451                 return if @cursor? and cursor? and @cursor[0] is cursor[0] and @cursor[1] is cursor[1]
452                 @cursor = cursor
453                 # replace cursor, to reset blink animation
454                 if @cursor_visible
455                         @cursor_el.parentNode.removeChild @cursor_el
456                 @cursor_el = domify div: id: 'peach_html5_editor_cursor'
457                 @idoc.body.appendChild @cursor_el
458                 @cursor_visible = true
459                 # TODO figure out x,y coords for cursor
460                 loc = cursor_to_xyh cursor[0], cursor[1]
461                 @cursor_el.style.left = "#{loc.x}px"
462                 @cursor_el.style.top = "#{loc.y}px"
463
464 window.peach_html5_editor = (args...) ->
465         return new PeachHTML5Editor args...
466
467 # test in browser: peach_html5_editor(document.getElementsByTagName('textarea')[0])