2015-09-09 08:10:29 +08:00
---
Title: Extending the Composer
Section: Guides
Order: 6
---
2015-09-30 00:44:30 +08:00
The composer lies at the heart of N1, and many improvements to the mail experience require deep integration with the composer. To enable these sort of plugins, the {DraftStore} exposes an extension API.
2015-09-09 08:10:29 +08:00
This API allows your package to:
- Display warning messages before a draft is sent. (ie: "Are you sure you want to send this without attaching a file?")
- Intercept keyboard and mouse events to the composer's text editor.
- Transform the draft and make additional changes before it is sent.
2015-11-28 03:49:24 +08:00
To create your own composer extensions, subclass {ComposerExtension} and override the methods your extension needs.
2015-09-09 08:10:29 +08:00
2015-11-28 03:49:24 +08:00
In the sample packages repository, [templates]() is an example of a package which uses a ComposerExtension to enhance the composer experience.
2015-09-09 08:10:29 +08:00
### Example
This extension displays a warning before sending a draft that contains the names of competitors' products. If the user proceeds to send the draft containing the words, it appends a disclaimer.
```coffee
2015-11-28 03:49:24 +08:00
{ComposerExtension} = require 'nylas-exports'
2015-09-09 08:10:29 +08:00
2015-11-28 03:49:24 +08:00
class ProductsExtension extends ComposerExtension
2015-09-09 08:10:29 +08:00
2015-12-31 00:36:47 +08:00
@warningsForSending: ({draft}) ->
2015-09-09 08:10:29 +08:00
words = ['acme', 'anvil', 'tunnel', 'rocket', 'dynamite']
body = draft.body.toLowercase()
for word in words
if body.indexOf(word) > 0
return ["with the word '#{word}'?"]
return []
2016-09-24 07:34:09 +08:00
@applyTransformsForSending: ({draftBodyRootNode, draft}) ->
2016-03-17 10:27:12 +08:00
if @warningsForSending ({draft})
2016-09-24 07:34:09 +08:00
el = document.createElement('p');
el.innerText = "This email contains competitor's product names or trademarks used in context."
draftBodyRootNode.appendChild(el)
2015-09-09 08:10:29 +08:00
```