2017-09-27 02:42:18 +08:00
|
|
|
import { ComponentRegistry, WorkspaceStore } from 'mailspring-exports';
|
2017-09-27 02:33:08 +08:00
|
|
|
import ThreadSearchBar from './thread-search-bar';
|
2016-04-11 06:58:23 +08:00
|
|
|
|
2016-05-04 09:47:20 +08:00
|
|
|
export const configDefaults = {
|
|
|
|
showOnRightSide: false,
|
2017-09-27 02:33:08 +08:00
|
|
|
};
|
2016-04-11 06:58:23 +08:00
|
|
|
|
2016-05-04 09:47:20 +08:00
|
|
|
export function activate() {
|
2016-11-13 02:32:16 +08:00
|
|
|
ComponentRegistry.register(ThreadSearchBar, {
|
2016-05-04 09:47:20 +08:00
|
|
|
location: WorkspaceStore.Location.ThreadList.Toolbar,
|
2017-09-27 02:33:08 +08:00
|
|
|
});
|
2016-05-04 09:47:20 +08:00
|
|
|
}
|
2016-04-11 06:58:23 +08:00
|
|
|
|
2016-05-04 09:47:20 +08:00
|
|
|
export function deactivate() {
|
2017-09-27 02:33:08 +08:00
|
|
|
ComponentRegistry.unregister(ThreadSearchBar);
|
2016-04-11 06:58:23 +08:00
|
|
|
}
|