Mailspring/internal_packages/search-bar/lib/search-bar.cjsx
Juan Tejada 9f998d1964 refactor(rip-current-account): Rips out AccountStore.current
Summary:
- WIP: Need to fix tests and some errors!
- Refactors Category class to hold information about its type
- Refactors CategoryStore to rely on observables instead of local caches
- Adds and updates Observables and helpers
- Refactors ContactStore to hold entire cache of contacts instead of per
  current account
  - Same for ContactRankingStore and other stores
- Refactors method names for AccountStore + some helpers
- Updates MailViewFilter to hold an account
  - Adds basic Unified filter
- Replaces AccountStore.current calls with either:
  - The account of the currently focused MailViewFilter
  - The account associated with a thread, message, file, etc...
  - A parameter to be passed in
  - Arbitrarily, the first account in the AccountsStore

Test Plan: - Unit tests

Reviewers: evan, bengotow

Differential Revision: https://phab.nylas.com/D2423
2016-01-08 14:22:13 -08:00

159 lines
4.6 KiB
CoffeeScript

React = require 'react/addons'
classNames = require 'classnames'
{Actions, WorkspaceStore} = require 'nylas-exports'
{Menu, RetinaImg, KeyCommandsRegion} = require 'nylas-component-kit'
SearchSuggestionStore = require './search-suggestion-store'
_ = require 'underscore'
class SearchBar extends React.Component
@displayName = 'SearchBar'
constructor: (@props) ->
@state =
query: ""
focused: false
suggestions: []
committedQuery: null
componentDidMount: =>
@usub = []
@usub.push SearchSuggestionStore.listen @_onChange
@usub.push WorkspaceStore.listen =>
@setState(focused: false) if @state.focused
# It's important that every React class explicitly stops listening to
# N1 events before it unmounts. Thank you event-kit
# This can be fixed via a Reflux mixin
componentWillUnmount: =>
usub() for usub in @usub
_account: ->
# TODO Pending Search refactor for unified inbox
FocusedMailViewStore.mailView()?.account
_keymapHandlers: ->
'application:focus-search': @_onFocusSearch
'search-bar:escape-search': @_clearAndBlur
render: =>
inputValue = @_queryToString(@state.query)
inputClass = classNames
'empty': inputValue.length is 0
headerComponents = [
<input type="text"
ref="searchInput"
key="input"
className={inputClass}
placeholder="Search all email"
value={inputValue}
onChange={@_onValueChange}
onFocus={@_onFocus}
onBlur={@_onBlur} />
<RetinaImg className="search-accessory search"
name="searchloupe.png"
key="accessory"
mode={RetinaImg.Mode.ContentDark}
onClick={@_doSearch} />
<RetinaImg className="search-accessory clear"
name="searchclear.png"
key="clear"
mode={RetinaImg.Mode.ContentDark}
onClick={@_onClearSearch} />
]
itemContentFunc = (item) =>
if item.divider
<Menu.Item divider={item.divider} />
else if item.contact
<Menu.NameEmailItem name={item.contact.name} email={item.contact.email} />
else if item.thread
item.thread.subject
else
item.label
<KeyCommandsRegion className="search-bar" globalHandlers={@_keymapHandlers()}>
<div>
<Menu ref="menu"
className={@_containerClasses()}
headerComponents={headerComponents}
items={@state.suggestions}
itemContent={itemContentFunc}
itemKey={ (item) -> item.id ? item.label }
onSelect={@_onSelectSuggestion}
/>
</div>
</KeyCommandsRegion>
_onFocusSearch: =>
React.findDOMNode(@refs.searchInput).focus()
_containerClasses: =>
classNames
'focused': @state.focused
'showing-query': @state.query?.length > 0
'committed-query': @state.committedQuery?.length > 0
'search-container': true
'showing-suggestions': @state.suggestions?.length > 0
_queryToString: (query) =>
return "" unless query instanceof Array
str = ""
for term in query
for key,val of term
if key == "all"
str += val
else
str += val
str
_stringToQuery: (str) =>
return [] unless str
return [{all: str}]
_onValueChange: (event) =>
Actions.searchQueryChanged(@_stringToQuery(event.target.value), @_account())
if (event.target.value is '')
@_onClearSearch()
_onSelectSuggestion: (item) =>
if item.thread?
Actions.searchQueryCommitted([{all: "\"#{item.thread.subject}\""}], @_account())
else
Actions.searchQueryCommitted(item.value, @_account())
_onClearSearch: (event) =>
if @state.committedQuery
Actions.searchQueryCommitted(null)
else
Actions.searchQueryChanged(null)
_clearAndBlur: =>
@_onClearSearch()
React.findDOMNode(@refs.searchInput)?.blur()
_onFocus: =>
@setState focused: true
_onBlur: =>
# Don't immediately hide the menu when the text input is blurred,
# because the user might have clicked an item in the menu. Wait to
# handle the touch event, then dismiss the menu.
setTimeout =>
Actions.searchBlurred()
@setState(focused: false)
, 150
_doSearch: =>
Actions.searchQueryCommitted(@state.query, @_account())
_onChange: => @setState @_getStateFromStores()
_getStateFromStores: =>
query: SearchSuggestionStore.query()
suggestions: SearchSuggestionStore.suggestions()
committedQuery: SearchSuggestionStore.committedQuery()
module.exports = SearchBar