mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
9f309d399b
Summary: - Rename DraftStoreExtension to ComposerExtension - Rename MessageStoreExtension to MessageViewExtension - Rename ContenteditablePlugin to ContenteditableExtension - Update Contenteditable to use new naming convention - Adds support for extension handlers as props - Add ExtensionRegistry to register extensions: - ContenteditableExtensions will not be registered through the ExtensionRegistry. They are meant for internal use, or if anyone wants to use our Contenteditable component directly in their plugins. - Adds specs - Refactors internal_packages and src to use new names and new ExtensionRegistry api - Adds deprecation util function and deprecation notices for old api methods: - DraftStore.{registerExtension, unregisterExtension} - MessageStore.{registerExtension, unregisterExtension} - DraftStoreExtension.{onMouseUp, onTabDown} - MessageStoreExtension - Adds and updates docs Test Plan: - Unit tests Reviewers: bengotow, evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D2293
33 lines
1.3 KiB
CoffeeScript
33 lines
1.3 KiB
CoffeeScript
SpellcheckComposerExtension = require '../lib/spellcheck-composer-extension'
|
|
fs = require 'fs'
|
|
_ = require 'underscore'
|
|
|
|
initialHTML = fs.readFileSync(__dirname + '/fixtures/california-with-misspellings-before.html').toString()
|
|
expectedHTML = fs.readFileSync(__dirname + '/fixtures/california-with-misspellings-after.html').toString()
|
|
|
|
describe "SpellcheckComposerExtension", ->
|
|
beforeEach ->
|
|
# Avoid differences between node-spellcheck on different platforms
|
|
spellings = JSON.parse(fs.readFileSync(__dirname + '/fixtures/california-spelling-lookup.json'))
|
|
spyOn(SpellcheckComposerExtension, 'isMisspelled').andCallFake (word) ->
|
|
spellings[word]
|
|
|
|
describe "walkTree", ->
|
|
it "correctly walks a DOM tree and surrounds mispelled words", ->
|
|
dom = document.createElement('div')
|
|
dom.innerHTML = initialHTML
|
|
SpellcheckComposerExtension.walkTree(dom)
|
|
expect(dom.innerHTML).toEqual(expectedHTML)
|
|
|
|
describe "finalizeSessionBeforeSending", ->
|
|
it "removes the annotations it inserted", ->
|
|
session =
|
|
draft: ->
|
|
body: expectedHTML
|
|
changes:
|
|
add: jasmine.createSpy('add')
|
|
|
|
SpellcheckComposerExtension.finalizeSessionBeforeSending(session)
|
|
expect(session.changes.add).toHaveBeenCalledWith(body: initialHTML)
|
|
|
|
module.exports = SpellcheckComposerExtension
|