mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
33 lines
912 B
Text
33 lines
912 B
Text
|
import {ComponentRegistry} from 'nylas-exports'
|
||
|
import PersonalLevelIcon from './personal-level-icon'
|
||
|
|
||
|
/*
|
||
|
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() {
|
||
|
ComponentRegistry.register(PersonalLevelIcon, {
|
||
|
role: 'ThreadListIcon',
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function serialize() {
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
export function deactivate() {
|
||
|
ComponentRegistry.unregister(PersonalLevelIcon);
|
||
|
}
|