Remove unused items
This commit is contained in:
parent
d32af5606b
commit
052aa87ddd
2 changed files with 2 additions and 5 deletions
|
@ -1,14 +1,13 @@
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { doUpdateSearchOptions } from 'redux/actions/search';
|
import { doUpdateSearchOptions } from 'redux/actions/search';
|
||||||
import { selectSearchOptions, makeSelectQueryWithOptions } from 'redux/selectors/search';
|
import { selectSearchOptions } from 'redux/selectors/search';
|
||||||
import { doToggleSearchExpanded } from 'redux/actions/app';
|
import { doToggleSearchExpanded } from 'redux/actions/app';
|
||||||
import { selectSearchOptionsExpanded } from 'redux/selectors/app';
|
import { selectSearchOptionsExpanded } from 'redux/selectors/app';
|
||||||
import SearchOptions from './view';
|
import SearchOptions from './view';
|
||||||
|
|
||||||
const select = state => ({
|
const select = (state) => ({
|
||||||
options: selectSearchOptions(state),
|
options: selectSearchOptions(state),
|
||||||
expanded: selectSearchOptionsExpanded(state),
|
expanded: selectSearchOptionsExpanded(state),
|
||||||
query: makeSelectQueryWithOptions(undefined, {})(state),
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const perform = (dispatch, ownProps) => {
|
const perform = (dispatch, ownProps) => {
|
||||||
|
|
|
@ -2,7 +2,6 @@ import * as MODALS from 'constants/modal_types';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { selectLanguage, selectShowMatureContent } from 'redux/selectors/settings';
|
import { selectLanguage, selectShowMatureContent } from 'redux/selectors/settings';
|
||||||
import { doToast } from 'redux/actions/notifications';
|
import { doToast } from 'redux/actions/notifications';
|
||||||
import { doSearch } from 'redux/actions/search';
|
|
||||||
import { doOpenModal, doHideModal } from 'redux/actions/app';
|
import { doOpenModal, doHideModal } from 'redux/actions/app';
|
||||||
import { withRouter } from 'react-router';
|
import { withRouter } from 'react-router';
|
||||||
import { doResolveUris } from 'lbry-redux';
|
import { doResolveUris } from 'lbry-redux';
|
||||||
|
@ -16,7 +15,6 @@ const select = (state, props) => ({
|
||||||
|
|
||||||
const perform = (dispatch, ownProps) => ({
|
const perform = (dispatch, ownProps) => ({
|
||||||
doResolveUris: (uris) => dispatch(doResolveUris(uris)),
|
doResolveUris: (uris) => dispatch(doResolveUris(uris)),
|
||||||
doSearch: (query, options) => dispatch(doSearch(query, options)),
|
|
||||||
navigateToSearchPage: (query) => {
|
navigateToSearchPage: (query) => {
|
||||||
let encodedQuery = encodeURIComponent(query);
|
let encodedQuery = encodeURIComponent(query);
|
||||||
ownProps.history.push({ pathname: `/$/search`, search: `?q=${encodedQuery}` });
|
ownProps.history.push({ pathname: `/$/search`, search: `?q=${encodedQuery}` });
|
||||||
|
|
Loading…
Add table
Reference in a new issue