1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/client/app/sites/category.js
2016-02-24 20:15:50 +01:00

55 lines
1.1 KiB
JavaScript

import React from 'react';
import Box from '../partials/box';
import Api from '../api';
class Category extends React.Component {
constructor(props) {
super(props);
this.loadCategoryItems(props);
this.state = {
category: {},
items: [],
currentLoaded: config.loadingItems,
moreLoaded: false,
moreToLoad: true
};
}
componentWillReceiveProps(nextProps) {
this.setState({
category: {},
items: []
});
this.loadCategoryItems(nextProps);
}
// todo: fix icon load.
render() {
return (
<div>
{this.state.items.length
? <Box items={this.state.items} category={this.state.category} logged={this.props.logged} type="category" />
: <i className="icon-content-load"></i>}
</div>
);
}
loadCategoryItems(props) {
setTimeout(() => {
Api.categoryItems(props.params.category).then((value) => {
this.setState({
category: value.category,
items: value.items
});
});
}, 200);
}
}
export default Category;