Fixing up per Sean's recommendations
This commit is contained in:
Thomas Zarebczan 2018-10-11 02:38:27 -04:00
parent 2707210744
commit 9b1797c1ab
2 changed files with 5 additions and 7 deletions

View file

@ -7,6 +7,7 @@ import {
doFocusSearchInput,
doBlurSearchInput,
doSearch,
doNotify,
} from 'lbry-redux';
import { makeSelectClientSetting } from 'redux/selectors/settings';
import * as settings from 'constants/settings';
@ -38,6 +39,7 @@ const perform = dispatch => ({
updateSearchQuery: query => dispatch(doUpdateSearchQuery(query)),
doFocus: () => dispatch(doFocusSearchInput()),
doBlur: () => dispatch(doBlurSearchInput()),
doShowSnackBar: (modal, props) => dispatch(doNotify(modal, props)),
});
export default connect(

View file

@ -1,7 +1,7 @@
// @flow
import React from 'react';
import classnames from 'classnames';
import { normalizeURI, SEARCH_TYPES, doNotify, isURIValid } from 'lbry-redux';
import { normalizeURI, SEARCH_TYPES, isURIValid } from 'lbry-redux';
import Icon from 'component/common/icon';
import { parseQueryParams } from 'util/query_params';
import * as icons from 'constants/icons';
@ -106,12 +106,10 @@ class WunderBar extends React.PureComponent<Props> {
const uri = normalizeURI(query);
onSubmit(uri, params);
} else {
window.app.store.dispatch(
doNotify({
this.props.doShowSnackBar({
message: __('Invalid LBRY URL requested. Only A-Z, a-z, and - allowed.'),
displayType: ['snackbar'],
})
);
}
}
@ -126,12 +124,10 @@ class WunderBar extends React.PureComponent<Props> {
const params = getParams();
onSubmit(uri, params);
} else {
window.app.store.dispatch(
doNotify({
this.props.doShowSnackBar({
message: __('Invalid LBRY URL entered. Only A-Z, a-z, and - allowed.'),
displayType: ['snackbar'],
})
);
}
} catch (e) {
onSearch(query, resultCount);