mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
91edef9f7a
Conflicts: internal_packages/inbox-activity-bar/lib/activity-bar-long-poll-item.cjsx
16 lines
433 B
CoffeeScript
16 lines
433 B
CoffeeScript
_ = require 'underscore-plus'
|
|
React = require "react"
|
|
SidebarFullContact = require "./sidebar-fullcontact"
|
|
{ComponentRegistry, WorkspaceStore} = require "nylas-exports"
|
|
|
|
module.exports =
|
|
item: null
|
|
|
|
activate: (@state={}) ->
|
|
ComponentRegistry.register SidebarFullContact,
|
|
location: WorkspaceStore.Location.MessageListSidebar
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister(SidebarFullContact)
|
|
|
|
serialize: -> @state
|