mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-07 16:48:02 +08:00
28 lines
989 B
JavaScript
28 lines
989 B
JavaScript
import { ComponentRegistry, ExtensionRegistry } from 'mailspring-exports';
|
|
|
|
import AutoloadImagesExtension from './autoload-images-extension';
|
|
import AutoloadImagesHeader from './autoload-images-header';
|
|
|
|
/*
|
|
All packages must export a basic object that has at least the following 3
|
|
methods:
|
|
|
|
1. `activate` - Actions to take once the package gets turned on.
|
|
Pre-enabled packages get activated on Mailspring bootup. They can also be
|
|
activated manually by a user.
|
|
|
|
2. `deactivate` - Actions to take when a package gets turned off. This can
|
|
happen when a user manually disables a package.
|
|
*/
|
|
export function activate() {
|
|
// Register Message List Actions we provide globally
|
|
ExtensionRegistry.MessageView.register(AutoloadImagesExtension);
|
|
ComponentRegistry.register(AutoloadImagesHeader, {
|
|
role: 'message:BodyHeader',
|
|
});
|
|
}
|
|
|
|
export function deactivate() {
|
|
ExtensionRegistry.MessageView.unregister(AutoloadImagesExtension);
|
|
ComponentRegistry.unregister(AutoloadImagesHeader);
|
|
}
|