2016-04-11 06:58:23 +08:00
|
|
|
import {ComponentRegistry, WorkspaceStore} from 'nylas-exports'
|
2016-11-13 02:32:16 +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,
|
|
|
|
}
|
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,
|
|
|
|
})
|
|
|
|
}
|
2016-04-11 06:58:23 +08:00
|
|
|
|
2016-05-04 09:47:20 +08:00
|
|
|
export function deactivate() {
|
2016-11-13 02:32:16 +08:00
|
|
|
ComponentRegistry.unregister(ThreadSearchBar)
|
2016-04-11 06:58:23 +08:00
|
|
|
}
|