2018-01-30 10:33:15 -05:00
|
|
|
const bindAll = require('lodash.bindall');
|
|
|
|
const connect = require('react-redux').connect;
|
|
|
|
const FormattedMessage = require('react-intl').FormattedMessage;
|
|
|
|
const injectIntl = require('react-intl').injectIntl;
|
|
|
|
const intlShape = require('react-intl').intlShape;
|
|
|
|
const PropTypes = require('prop-types');
|
|
|
|
const React = require('react');
|
2016-04-18 16:51:45 -04:00
|
|
|
|
2018-01-30 10:33:15 -05:00
|
|
|
const api = require('../../lib/api');
|
|
|
|
const Button = require('../../components/forms/button.jsx');
|
|
|
|
const Grid = require('../../components/grid/grid.jsx');
|
|
|
|
const navigationActions = require('../../redux/navigation.js');
|
|
|
|
const TitleBanner = require('../../components/title-banner/title-banner.jsx');
|
|
|
|
const Tabs = require('../../components/tabs/tabs.jsx');
|
2016-04-18 16:51:45 -04:00
|
|
|
|
2018-01-30 10:33:15 -05:00
|
|
|
const Page = require('../../components/page/www/page.jsx');
|
|
|
|
const render = require('../../lib/render.jsx');
|
2016-04-18 16:51:45 -04:00
|
|
|
|
|
|
|
require('./search.scss');
|
|
|
|
|
2018-01-30 10:33:15 -05:00
|
|
|
class Search extends React.Component {
|
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
bindAll(this, [
|
|
|
|
'getSearchState',
|
|
|
|
'handleGetSearchMore',
|
|
|
|
'getTab'
|
|
|
|
]);
|
|
|
|
this.state = this.getSearchState();
|
|
|
|
this.state.loaded = [];
|
|
|
|
this.state.loadNumber = 16;
|
|
|
|
this.state.offset = 0;
|
|
|
|
}
|
|
|
|
componentDidMount () {
|
|
|
|
const query = window.location.search;
|
|
|
|
const q = query.lastIndexOf('q=');
|
|
|
|
let term = '';
|
2017-02-10 18:54:20 -05:00
|
|
|
if (q !== -1) {
|
|
|
|
term = query.substring(q + 2, query.length).toLowerCase();
|
|
|
|
}
|
|
|
|
while (term.indexOf('/') > -1) {
|
|
|
|
term = term.substring(0, term.indexOf('/'));
|
|
|
|
}
|
|
|
|
while (term.indexOf('&') > -1) {
|
|
|
|
term = term.substring(0, term.indexOf('&'));
|
|
|
|
}
|
2017-02-20 11:08:36 -05:00
|
|
|
term = decodeURI(term.split('+').join(' '));
|
|
|
|
this.props.dispatch(navigationActions.setSearchTerm(term));
|
2018-01-30 10:33:15 -05:00
|
|
|
}
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
if (this.props.searchTerm !== prevProps.searchTerm) {
|
|
|
|
this.handleGetSearchMore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getSearchState () {
|
|
|
|
let pathname = window.location.pathname.toLowerCase();
|
|
|
|
if (pathname[pathname.length - 1] === '/') {
|
|
|
|
pathname = pathname.substring(0, pathname.length - 1);
|
|
|
|
}
|
|
|
|
const start = pathname.lastIndexOf('/');
|
|
|
|
const type = pathname.substring(start + 1, pathname.length);
|
|
|
|
return {
|
|
|
|
tab: type,
|
|
|
|
loadNumber: 16
|
|
|
|
};
|
|
|
|
}
|
|
|
|
handleGetSearchMore () {
|
|
|
|
let termText = '';
|
2016-06-09 07:32:25 -04:00
|
|
|
if (this.props.searchTerm !== '') {
|
2018-01-30 10:33:15 -05:00
|
|
|
termText = `&q=${encodeURIComponent(this.props.searchTerm.split(' ').join('+'))}`;
|
2016-04-30 16:38:48 -04:00
|
|
|
}
|
2018-01-30 10:33:15 -05:00
|
|
|
const locale = this.props.intl.locale;
|
|
|
|
const loadNumber = this.state.loadNumber;
|
|
|
|
const offset = this.state.offset;
|
|
|
|
const queryString = `limit=${loadNumber}&offset=${offset}&language=${locale}&mode=popular${termText}`;
|
|
|
|
|
2016-06-14 17:33:54 -04:00
|
|
|
api({
|
2018-01-30 10:33:15 -05:00
|
|
|
uri: `/search/${this.state.tab}?${queryString}`
|
|
|
|
}, (err, body) => {
|
|
|
|
const loadedSoFar = this.state.loaded;
|
2016-06-09 07:32:25 -04:00
|
|
|
Array.prototype.push.apply(loadedSoFar, body);
|
2018-01-30 10:33:15 -05:00
|
|
|
const currentOffset = this.state.offset + this.props.loadNumber;
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
loaded: loadedSoFar,
|
|
|
|
offset: currentOffset
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
getTab (type) {
|
|
|
|
const term = this.props.searchTerm.split(' ').join('+');
|
|
|
|
let allTab = (
|
|
|
|
<a href={`/search/${type}?q=${term}/`}>
|
|
|
|
<li>
|
|
|
|
<img
|
|
|
|
className={`tab-icon ${type}`}
|
|
|
|
src={`/svgs/tabs/${type}-inactive.svg`}
|
|
|
|
/>
|
|
|
|
<FormattedMessage id={`general.${type}`} />
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
if (this.props.tab === type) {
|
|
|
|
allTab = (
|
|
|
|
<a href={`/search/${type}?q=${term}/`}>
|
|
|
|
<li className="active">
|
|
|
|
<img
|
|
|
|
className={`tab-icon ${type}`}
|
|
|
|
src={`/svgs/tabs/${type}-active.svg`}
|
|
|
|
/>
|
|
|
|
<FormattedMessage id={`general.${type}`} />
|
|
|
|
</li>
|
|
|
|
</a>
|
|
|
|
);
|
2016-04-18 16:51:45 -04:00
|
|
|
}
|
|
|
|
return allTab;
|
2018-01-30 10:33:15 -05:00
|
|
|
}
|
|
|
|
render () {
|
2016-04-18 16:51:45 -04:00
|
|
|
return (
|
|
|
|
<div>
|
2018-01-30 10:33:15 -05:00
|
|
|
<div className="outer">
|
|
|
|
<TitleBanner className="masthead">
|
|
|
|
<div className="inner">
|
|
|
|
<h1 className="title-banner-h1">
|
|
|
|
<FormattedMessage id="general.search" />
|
|
|
|
</h1>
|
2018-01-30 09:53:25 -05:00
|
|
|
</div>
|
2018-01-30 10:33:15 -05:00
|
|
|
</TitleBanner>
|
|
|
|
<Tabs>
|
|
|
|
{this.getTab('projects')}
|
|
|
|
{this.getTab('studios')}
|
|
|
|
</Tabs>
|
|
|
|
<div
|
|
|
|
id="projectBox"
|
|
|
|
key="projectBox"
|
|
|
|
>
|
|
|
|
<Grid
|
|
|
|
cards
|
|
|
|
showAvatar
|
|
|
|
itemType={this.props.tab}
|
|
|
|
items={this.state.loaded}
|
|
|
|
showFavorites={false}
|
|
|
|
showLoves={false}
|
|
|
|
showViews={false}
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
className="white"
|
|
|
|
onClick={this.handleGetSearchMore}
|
|
|
|
>
|
|
|
|
<FormattedMessage id="general.loadMore" />
|
|
|
|
</Button>
|
|
|
|
</div>
|
2016-04-18 16:51:45 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-01-30 10:33:15 -05:00
|
|
|
}
|
2016-04-18 16:51:45 -04:00
|
|
|
|
2018-01-30 10:33:15 -05:00
|
|
|
Search.propTypes = {
|
|
|
|
dispatch: PropTypes.func,
|
|
|
|
intl: intlShape,
|
|
|
|
loadNumber: PropTypes.number,
|
|
|
|
searchTerm: PropTypes.string,
|
|
|
|
tab: PropTypes.string
|
2016-10-31 10:05:08 -04:00
|
|
|
};
|
|
|
|
|
2018-01-30 10:33:15 -05:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
searchTerm: state.navigation
|
|
|
|
});
|
|
|
|
|
|
|
|
const WrappedSearch = injectIntl(Search);
|
|
|
|
const ConnectedSearch = connect(mapStateToProps)(WrappedSearch);
|
2016-10-31 10:05:08 -04:00
|
|
|
|
2017-08-31 17:05:22 -04:00
|
|
|
render(
|
|
|
|
<Page><ConnectedSearch /></Page>,
|
|
|
|
document.getElementById('app'),
|
|
|
|
{navigation: navigationActions.navigationReducer}
|
|
|
|
);
|