scratch-www/src/views/search/search.jsx

179 lines
6 KiB
React
Raw Normal View History

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
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
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');
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 = '';
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('&'));
}
term = decodeURI(term.split('+').join(' '));
this.props.dispatch(navigationActions.setSearchTerm(term));
}
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 !== '') {
termText = `&q=${encodeURIComponent(this.props.searchTerm.split(' ').join('+'))}`;
}
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}`;
api({
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);
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;
}
render () {
2016-04-18 16:51:45 -04:00
return (
<div>
<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>
</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>
);
}
}
2016-04-18 16:51:45 -04: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
};
const mapStateToProps = state => ({
searchTerm: state.navigation
});
const WrappedSearch = injectIntl(Search);
const ConnectedSearch = connect(mapStateToProps)(WrappedSearch);
2016-10-31 10:05:08 -04:00
render(
<Page><ConnectedSearch /></Page>,
document.getElementById('app'),
{navigation: navigationActions.navigationReducer}
);