Mailspring/internal_packages/github-contact-card/lib/main.jsx
Ben Gotow 94badcda15 es6(*): convert 20+ source files used in example packages to ES2016
There could be a few lurking bugs. Please test!
2016-02-29 18:47:22 -08:00

39 lines
1.1 KiB
JavaScript

import GithubContactCardSection from "./github-contact-card-section";
import {
ComponentRegistry,
} from "nylas-exports";
/*
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 N1 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.
3. `serialize` - A simple serializable object that gets saved to disk
before N1 quits. This gets passed back into `activate` next time N1 boots
up or your package is manually activated.
*/
export function activate() {
// Register our sidebar so that it appears in the Message List sidebar.
// This sidebar is to the right of the Message List in both split pane mode
// and list mode.
ComponentRegistry.register(GithubContactCardSection, {
role: "MessageListSidebar:ContactCard",
});
}
export function serialize() {
return {};
}
export function deactivate() {
ComponentRegistry.unregister(GithubContactCardSection);
}