Mailspring/src/nylas-spellchecker.coffee

98 lines
2.9 KiB
CoffeeScript
Raw Normal View History

path = require('path')
spellchecker = require('spellchecker')
class NylasSpellchecker
constructor: ->
@languageAvailable = false
lang = navigator.language
@setLanguage(lang)
isLanguageAvailable: (lang) =>
return false unless lang
dicts = @getAvailableDictionaries()
return (lang in dicts) or (lang.split(/[-_]/)[0] in dicts)
isSpelledCorrectly: (args...) => not @isMisspelled(args...)
setLanguage: (lang="", dict="") ->
@languageAvailable = @isLanguageAvailable(lang)
if @languageAvailable
spellCheck = @isSpelledCorrectly
else
spellCheck = -> true
# Need to default to a valid language so web-frame
# `setSpellCheckProvder` gets a non empty string
if lang.length is 0 then lang = "en-US"
@_setWebframeSpellchecker(lang, spellCheck)
if process.platform is "linux"
dictionaryPath = @_getHunspellDictionary()
else
# On Mac we defer to NSSpellChecker
# On Windows we use the Windows Spell Check API
#
# Both of those automatically provide a set of dictionaries based on
# the language string.
#
# On Windows 10 you can see the dictionaries that are available by
# looking in: C:\Users\YourName\AppData\Roaming\Microsoft\Spelling
#
# The `dictionaryPath` parameter is ignored on Mac & Windows by
# node-spellchecker
dictionaryPath = ""
if dict.length is 0 then dict = dictionaryPath
spellchecker.setDictionary(lang, dict)
# Separate method for testing
_setWebframeSpellchecker: (lang, spellCheck) ->
require('web-frame').setSpellCheckProvider(lang, false, {spellCheck})
# node-spellchecker's method for resolving the builtin hunspell
# dictionaries for Linux (From
# https://github.com/atom/node-spellchecker/blob/master/lib/spellchecker.js#L50-L61)
_getHunspellDictionary: ->
dict = path.join(require.resolve('spellchecker'), '..', '..', 'vendor', 'hunspell_dictionaries')
try
# HACK: Special case being in an asar archive
unpacked = dict.replace('.asar' + path.sep, '.asar.unpacked' + path.sep)
if require('fs').statSyncNoException(unpacked)
dict = unpacked
catch
dict
#### spellchecker methods ####
setDictionary: (lang, dict) => @setLanguage(lang, dict)
add: spellchecker.add
isMisspelled: (text) =>
if @languageAvailable
spellchecker.isMisspelled(text)
else
return false
getAvailableDictionaries: ->
if process.platform is 'linux'
arr = spellchecker.getAvailableDictionaries()
if not "en_US" in arr
arr.push('en_US') # Installed by default in node-spellchecker's vendor directory
arr
else
spellchecker.getAvailableDictionaries() ? []
getCorrectionsForMisspelling: (args...) =>
if @languageAvailable
spellchecker.getCorrectionsForMisspelling(args...)
else return []
Spellchecker: => @
module.exports = new NylasSpellchecker