Skip to content

Commit

Permalink
style(Search): several cleanups
Browse files Browse the repository at this point in the history
style(Search): propTypes cleanups, update comments
  • Loading branch information
Alexander Fedyashov committed Jan 13, 2017
1 parent b7ffa6a commit c3c6e65
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 69 deletions.
122 changes: 57 additions & 65 deletions src/modules/Search/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ import SearchResults from './SearchResults'

const debug = makeDebugger('search')

const _meta = {
name: 'Search',
type: META.TYPES.MODULE,
props: {
size: _.without(SUI.SIZES, 'medium'),
},
}

/**
* A search module allows a user to query for results from a selection of data
*/
Expand All @@ -44,12 +36,24 @@ export default class Search extends Component {
// Behavior
// ------------------------------------

/** Initial value of open. */
defaultOpen: PropTypes.bool,

/** Initial value. */
defaultValue: PropTypes.string,

/** Shorthand for Icon. */
icon: PropTypes.oneOfType([
PropTypes.node,
PropTypes.object,
]),

/** Controls whether or not the results menu is displayed. */
open: PropTypes.bool,

/** Placeholder of the search input. */
placeholder: PropTypes.string,

/**
* One of:
* - array of Search.Result props e.g. `{ title: '', description: '' }` or
Expand All @@ -60,36 +64,24 @@ export default class Search extends Component {
PropTypes.object,
]),

/** Controls whether or not the results menu is displayed. */
open: PropTypes.bool,

/** Initial value of open. */
defaultOpen: PropTypes.bool,

/** Current value of the search input. Creates a controlled component. */
value: PropTypes.string,

/** Initial value. */
defaultValue: PropTypes.string,

/** Placeholder of the search input. */
placeholder: PropTypes.string,

/** Minimum characters to query for results */
minCharacters: PropTypes.number,

/** Message to display when there are no results. */
noResultsMessage: PropTypes.string,

/** Additional text for "No Results" message with less emphasis. */
noResultsDescription: PropTypes.string,

/** Message to display when there are no results. */
noResultsMessage: PropTypes.string,

/** Whether the search should automatically select the first result after searching */
selectFirstResult: PropTypes.bool,

/** Whether a "no results" message should be shown if no results are found. */
showNoResults: PropTypes.bool,

/** Current value of the search input. Creates a controlled component. */
value: PropTypes.string,

// ------------------------------------
// Rendering
// ------------------------------------
Expand Down Expand Up @@ -119,36 +111,36 @@ export default class Search extends Component {
onBlur: PropTypes.func,

/**
* Called when a result is selected.
* Called on focus.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onResultSelect: PropTypes.func,
onFocus: PropTypes.func,

/**
* Called on search input change.
* Called on mousedown.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {string} value - Current value of search input.
* @param {object} data - All props.
*/
onSearchChange: PropTypes.func,
onMouseDown: PropTypes.func,

/**
* Called on focus.
* Called when a result is selected.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onFocus: PropTypes.func,
onResultSelect: PropTypes.func,

/**
* Called on mousedown.
* Called on search input change.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
* @param {string} value - Current value of search input.
*/
onMouseDown: PropTypes.func,
onSearchChange: PropTypes.func,

// ------------------------------------
// Style
Expand All @@ -169,28 +161,36 @@ export default class Search extends Component {
/** A search input can take up the width of its container. */
input: customPropTypes.itemShorthand,

size: PropTypes.oneOf(_meta.props.size),

/** A search can show a loading indicator. */
loading: PropTypes.bool,

/** A search can have different sizes. */
size: PropTypes.oneOf(_.without(SUI.SIZES, 'medium')),
}

static defaultProps = {
icon: 'search',
input: 'text',
minCharacters: 1,
noResultsMessage: 'No results found.',
showNoResults: true,
input: 'text',
}

static autoControlledProps = [
'open',
'value',
]

static _meta = _meta
static _meta = {
name: 'Search',
type: META.TYPES.MODULE,
}

static Category = SearchCategory

static Result = SearchResult

static Results = SearchResults
static Category = SearchCategory

componentWillMount() {
if (super.componentWillMount) super.componentWillMount()
Expand Down Expand Up @@ -512,25 +512,23 @@ export default class Search extends Component {
// ----------------------------------------

renderSearchInput = () => {
const { icon, placeholder, input } = this.props
const { icon, input, placeholder } = this.props
const { value } = this.state

return (
Input.create(input, {
value,
placeholder,
onBlur: this.handleBlur,
onChange: this.handleSearchChange,
onFocus: this.handleFocus,
onClick: this.handleInputClick,
input: { className: 'prompt', tabIndex: '0', autoComplete: 'off' },
icon,
})
)
return Input.create(input, {
value,
placeholder,
onBlur: this.handleBlur,
onChange: this.handleSearchChange,
onFocus: this.handleFocus,
onClick: this.handleInputClick,
input: { className: 'prompt', tabIndex: '0', autoComplete: 'off' },
icon,
})
}

renderNoResults = () => {
const { noResultsMessage, noResultsDescription } = this.props
const { noResultsDescription, noResultsMessage } = this.props

return (
<div className='message empty'>
Expand Down Expand Up @@ -612,11 +610,7 @@ export default class Search extends Component {

if (!menuContent) return

return (
<SearchResults className={resultsClasses}>
{menuContent}
</SearchResults>
)
return <SearchResults className={resultsClasses}>{menuContent}</SearchResults>
}

render() {
Expand All @@ -640,15 +634,13 @@ export default class Search extends Component {
open && 'active visible',
size,
searchClasses,
useKeyOnly(loading, 'loading'),

useValueAndKey(aligned, 'aligned'),
useKeyOnly(category, 'category'),
useKeyOnly(focus, 'focus'),
useKeyOnly(fluid, 'fluid'),

className,
useKeyOnly(loading, 'loading'),
useValueAndKey(aligned, 'aligned'),
'search',
className,
)
const rest = getUnhandledProps(Search, this.props)
const ElementType = getElementType(Search, this.props)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Search/SearchCategory.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { PropTypes } from 'react'
import cx from 'classnames'
import React, { PropTypes } from 'react'

import {
customPropTypes,
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Search/SearchResult.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component, PropTypes } from 'react'
import cx from 'classnames'
import React, { Component, PropTypes } from 'react'

import {
createHTMLImage,
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Search/SearchResults.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { PropTypes } from 'react'
import cx from 'classnames'
import React, { PropTypes } from 'react'

import {
customPropTypes,
Expand Down
3 changes: 2 additions & 1 deletion src/modules/Search/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ interface SearchProps extends ReactMouseEvents<HTMLInputElement>, ReactFocusEven
/** Shorthand for Icon. */
icon?: any;

/** A search can show a loading indicator. */
loading?: boolean;

/** Minimum characters to query for results */
Expand Down Expand Up @@ -86,7 +87,7 @@ interface SearchProps extends ReactMouseEvents<HTMLInputElement>, ReactFocusEven
/** Whether a "no results" message should be shown if no results are found. */
showNoResults?: boolean;

/** Search size */
/** A search can have different sizes. */
size?: SemanticSIZES;

/** Current value of the search input. Creates a controlled component. */
Expand Down

0 comments on commit c3c6e65

Please sign in to comment.