Added search button to list editor modal

This commit is contained in:
mgabdev 2019-07-19 18:53:16 -04:00
parent 5077165275
commit bc3959fce2
2 changed files with 23 additions and 1 deletions

View File

@ -5,9 +5,11 @@ import { defineMessages, injectIntl } from 'react-intl';
import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists'; import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';
import classNames from 'classnames'; import classNames from 'classnames';
import Icon from 'gabsocial/components/icon'; import Icon from 'gabsocial/components/icon';
import Button from 'gabsocial/components/button';
const messages = defineMessages({ const messages = defineMessages({
search: { id: 'lists.search', defaultMessage: 'Search among people you follow' }, search: { id: 'lists.search', defaultMessage: 'Search among people you follow' },
searchTitle: { id: 'tabs_bar.search', defaultMessage: 'Search' },
}); });
const mapStateToProps = state => ({ const mapStateToProps = state => ({
@ -42,6 +44,10 @@ class Search extends React.PureComponent {
} }
} }
handleSubmit = () => {
this.props.onSubmit(this.props.value);
}
handleClear = () => { handleClear = () => {
this.props.onClear(); this.props.onClear();
} }
@ -69,6 +75,7 @@ class Search extends React.PureComponent {
<Icon id='search' className={classNames({ active: !hasValue })} /> <Icon id='search' className={classNames({ active: !hasValue })} />
<Icon id='times-circle' aria-label={intl.formatMessage(messages.search)} className={classNames({ active: hasValue })} /> <Icon id='times-circle' aria-label={intl.formatMessage(messages.search)} className={classNames({ active: hasValue })} />
</div> </div>
<Button onClick={this.handleSubmit}>{intl.formatMessage(messages.searchTitle)}</Button>
</div> </div>
); );
} }

View File

@ -4427,7 +4427,22 @@ noscript {
} }
.search { .search {
margin-bottom: 0; display: flex;
flex-direction: row;
margin: 10px 0;
> label {
flex: 1 1;
}
> .search__icon .fa {
right: 102px !important;
}
> .button {
width: 80px;
margin-left: 10px;
}
} }
} }