2015-12-10 07:10:55 +08:00
|
|
|
|
{ComposerExtension, AccountStore, DOMUtils, NylasSpellchecker} = require 'nylas-exports'
|
2015-09-03 04:20:01 +08:00
|
|
|
|
_ = require 'underscore'
|
2016-01-30 06:23:52 +08:00
|
|
|
|
{remote} = require('electron')
|
2015-11-19 04:09:07 +08:00
|
|
|
|
MenuItem = remote.require('menu-item')
|
2015-12-10 07:10:55 +08:00
|
|
|
|
spellchecker = NylasSpellchecker
|
2015-09-03 04:20:01 +08:00
|
|
|
|
|
|
|
|
|
SpellcheckCache = {}
|
|
|
|
|
|
2015-11-28 03:49:24 +08:00
|
|
|
|
class SpellcheckComposerExtension extends ComposerExtension
|
2015-09-03 04:20:01 +08:00
|
|
|
|
|
|
|
|
|
@isMisspelled: (word) ->
|
2015-11-19 04:09:07 +08:00
|
|
|
|
SpellcheckCache[word] ?= spellchecker.isMisspelled(word)
|
2015-09-03 04:20:01 +08:00
|
|
|
|
SpellcheckCache[word]
|
|
|
|
|
|
2015-12-31 00:36:47 +08:00
|
|
|
|
@onContentChanged: ({editor}) =>
|
2016-01-13 11:02:58 +08:00
|
|
|
|
@update(editor)
|
2015-09-03 04:20:01 +08:00
|
|
|
|
|
2015-12-31 00:36:47 +08:00
|
|
|
|
@onShowContextMenu: ({editor, event, menu}) =>
|
2015-12-22 11:58:01 +08:00
|
|
|
|
selection = editor.currentSelection()
|
2015-11-19 04:09:07 +08:00
|
|
|
|
range = DOMUtils.Mutating.getRangeAtAndSelectWord(selection, 0)
|
|
|
|
|
word = range.toString()
|
|
|
|
|
if @isMisspelled(word)
|
|
|
|
|
corrections = spellchecker.getCorrectionsForMisspelling(word)
|
|
|
|
|
if corrections.length > 0
|
|
|
|
|
corrections.forEach (correction) =>
|
|
|
|
|
menu.append(new MenuItem({
|
|
|
|
|
label: correction,
|
2016-01-12 09:31:03 +08:00
|
|
|
|
click: @applyCorrection.bind(@, editor, range, selection, correction)
|
2015-11-19 04:09:07 +08:00
|
|
|
|
}))
|
|
|
|
|
else
|
|
|
|
|
menu.append(new MenuItem({ label: 'No Guesses Found', enabled: false}))
|
|
|
|
|
|
|
|
|
|
menu.append(new MenuItem({ type: 'separator' }))
|
|
|
|
|
menu.append(new MenuItem({
|
|
|
|
|
label: 'Learn Spelling',
|
2016-01-12 09:31:03 +08:00
|
|
|
|
click: @learnSpelling.bind(@, editor, word)
|
2015-11-19 04:09:07 +08:00
|
|
|
|
}))
|
|
|
|
|
menu.append(new MenuItem({ type: 'separator' }))
|
|
|
|
|
|
2016-01-12 09:31:03 +08:00
|
|
|
|
@applyCorrection: (editor, range, selection, correction) =>
|
2015-11-19 04:09:07 +08:00
|
|
|
|
DOMUtils.Mutating.applyTextInRange(range, selection, correction)
|
2016-01-13 11:02:58 +08:00
|
|
|
|
@update(editor)
|
2015-11-19 04:09:07 +08:00
|
|
|
|
|
2016-01-12 09:31:03 +08:00
|
|
|
|
@learnSpelling: (editor, word) =>
|
2015-11-19 04:09:07 +08:00
|
|
|
|
spellchecker.add(word)
|
2015-09-09 08:52:26 +08:00
|
|
|
|
delete SpellcheckCache[word]
|
2016-01-13 11:02:58 +08:00
|
|
|
|
@update(editor)
|
|
|
|
|
|
|
|
|
|
@update: (editor) =>
|
|
|
|
|
@_unwrapWords(editor)
|
|
|
|
|
@_wrapMisspelledWords(editor)
|
|
|
|
|
|
|
|
|
|
# Creates a shallow copy of a selection object where anchorNode / focusNode
|
|
|
|
|
# can be changed, and provides it to the callback provided. After the callback
|
|
|
|
|
# runs, it applies the new selection if `snapshot.modified` has been set.
|
|
|
|
|
#
|
|
|
|
|
# Note: This is different from ExposedSelection because the nodes are not cloned.
|
|
|
|
|
# In the callback functions, we need to check whether the anchor/focus nodes
|
|
|
|
|
# are INSIDE the nodes we're adjusting.
|
|
|
|
|
#
|
|
|
|
|
@_whileApplyingSelectionChanges: (cb) =>
|
2015-09-03 04:20:01 +08:00
|
|
|
|
selection = document.getSelection()
|
|
|
|
|
selectionSnapshot =
|
|
|
|
|
anchorNode: selection.anchorNode
|
|
|
|
|
anchorOffset: selection.anchorOffset
|
|
|
|
|
focusNode: selection.focusNode
|
|
|
|
|
focusOffset: selection.focusOffset
|
2016-01-13 11:02:58 +08:00
|
|
|
|
modified: false
|
|
|
|
|
|
|
|
|
|
cb(selectionSnapshot)
|
|
|
|
|
|
|
|
|
|
if selectionSnapshot.modified
|
2015-09-03 04:20:01 +08:00
|
|
|
|
selection.setBaseAndExtent(selectionSnapshot.anchorNode, selectionSnapshot.anchorOffset, selectionSnapshot.focusNode, selectionSnapshot.focusOffset)
|
|
|
|
|
|
2016-01-13 11:02:58 +08:00
|
|
|
|
# Removes all of the <spelling> nodes found in the provided `editor`.
|
|
|
|
|
# It normalizes the DOM after removing spelling nodes to ensure that words
|
|
|
|
|
# are not split between text nodes. (ie: doesn, 't => doesn't)
|
|
|
|
|
@_unwrapWords: (editor) =>
|
|
|
|
|
@_whileApplyingSelectionChanges (selectionSnapshot) =>
|
|
|
|
|
spellingNodes = editor.rootNode.querySelectorAll('spelling')
|
|
|
|
|
|
|
|
|
|
for node in spellingNodes
|
|
|
|
|
if selectionSnapshot.anchorNode is node
|
|
|
|
|
selectionSnapshot.anchorNode = node.firstChild
|
|
|
|
|
if selectionSnapshot.focusNode is node
|
|
|
|
|
selectionSnapshot.focusNode = node.firstChild
|
|
|
|
|
|
|
|
|
|
selectionSnapshot.modified = true
|
|
|
|
|
node.parentNode.insertBefore(node.firstChild, node) while (node.firstChild)
|
|
|
|
|
node.parentNode.removeChild(node)
|
|
|
|
|
|
|
|
|
|
editor.rootNode.normalize()
|
|
|
|
|
|
|
|
|
|
# Traverses all of the text nodes within the provided `editor`. If it finds a
|
|
|
|
|
# text node with a misspelled word, it splits it, wraps the misspelled word
|
|
|
|
|
# with a <spelling> node and updates the selection to account for the change.
|
|
|
|
|
@_wrapMisspelledWords: (editor) =>
|
|
|
|
|
@_whileApplyingSelectionChanges (selectionSnapshot) =>
|
|
|
|
|
treeWalker = document.createTreeWalker(editor.rootNode, NodeFilter.SHOW_TEXT)
|
|
|
|
|
nodeList = []
|
|
|
|
|
nodeMisspellingsFound = 0
|
|
|
|
|
|
|
|
|
|
while (treeWalker.nextNode())
|
|
|
|
|
nodeList.push(treeWalker.currentNode)
|
|
|
|
|
|
|
|
|
|
# Note: As a performance optimization, we stop spellchecking after encountering
|
|
|
|
|
# 30 misspelled words. This keeps the runtime of this method bounded!
|
|
|
|
|
|
|
|
|
|
while (node = nodeList.shift())
|
|
|
|
|
break if nodeMisspellingsFound > 30
|
|
|
|
|
str = node.textContent
|
|
|
|
|
|
|
|
|
|
# https://regex101.com/r/bG5yC4/1
|
|
|
|
|
wordRegexp = /(\w[\w'’-]*\w|\w)/g
|
|
|
|
|
|
|
|
|
|
while ((match = wordRegexp.exec(str)) isnt null)
|
|
|
|
|
break if nodeMisspellingsFound > 30
|
|
|
|
|
misspelled = @isMisspelled(match[0])
|
|
|
|
|
|
|
|
|
|
if misspelled
|
|
|
|
|
# The insertion point is currently at the end of this misspelled word.
|
|
|
|
|
# Do not mark it until the user types a space or leaves.
|
|
|
|
|
if selectionSnapshot.focusNode is node and selectionSnapshot.focusOffset is match.index + match[0].length
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if match.index is 0
|
|
|
|
|
matchNode = node
|
|
|
|
|
else
|
|
|
|
|
matchNode = node.splitText(match.index)
|
|
|
|
|
afterMatchNode = matchNode.splitText(match[0].length)
|
|
|
|
|
|
|
|
|
|
spellingSpan = document.createElement('spelling')
|
|
|
|
|
spellingSpan.classList.add('misspelled')
|
|
|
|
|
spellingSpan.innerText = match[0]
|
|
|
|
|
matchNode.parentNode.replaceChild(spellingSpan, matchNode)
|
|
|
|
|
|
|
|
|
|
for prop in ['anchor', 'focus']
|
|
|
|
|
if selectionSnapshot["#{prop}Node"] is node
|
|
|
|
|
if selectionSnapshot["#{prop}Offset"] > match.index + match[0].length
|
|
|
|
|
selectionSnapshot.modified = true
|
|
|
|
|
selectionSnapshot["#{prop}Node"] = afterMatchNode
|
|
|
|
|
selectionSnapshot["#{prop}Offset"] -= match.index + match[0].length
|
|
|
|
|
else if selectionSnapshot["#{prop}Offset"] > match.index
|
|
|
|
|
selectionSnapshot.modified = true
|
|
|
|
|
selectionSnapshot["#{prop}Node"] = spellingSpan.childNodes[0]
|
|
|
|
|
selectionSnapshot["#{prop}Offset"] -= match.index
|
|
|
|
|
|
|
|
|
|
nodeMisspellingsFound += 1
|
|
|
|
|
nodeList.unshift(afterMatchNode)
|
|
|
|
|
break
|
|
|
|
|
|
2015-12-31 00:36:47 +08:00
|
|
|
|
@finalizeSessionBeforeSending: ({session}) ->
|
2015-09-03 04:20:01 +08:00
|
|
|
|
body = session.draft().body
|
|
|
|
|
clean = body.replace(/<\/?spelling[^>]*>/g, '')
|
|
|
|
|
if body != clean
|
2015-12-24 09:25:30 +08:00
|
|
|
|
return session.changes.add(body: clean)
|
2015-09-03 04:20:01 +08:00
|
|
|
|
|
2015-11-28 03:49:24 +08:00
|
|
|
|
SpellcheckComposerExtension.SpellcheckCache = SpellcheckCache
|
2015-09-03 04:20:01 +08:00
|
|
|
|
|
2015-11-28 03:49:24 +08:00
|
|
|
|
module.exports = SpellcheckComposerExtension
|