import React, { Component, PropTypes } from 'react'; import LoadingIndicator from 'components/loading-indicator'; import ExplorerItem from './explorer-item'; import { API } from 'config'; class Explorer extends Component { constructor(props) { super(props); this.state = { cursor: null }; } componentDidMount() { fetch(`${API}/pages/?child_of=root`) .then(res => res.json()) .then(body => { this.setState({ cursor: body }); }); } componentWillUnmount(cursor) { } _getPages(cursor) { if (!cursor) { return []; } return cursor.pages.map(item => ); } getPosition() { const { position } = this.props; return { left: position.right + 'px', top: position.top + 'px' }; } render() { const { cursor } = this.state; const pages = this._getPages(cursor); return (
{cursor ? pages : }
); } } Explorer.propTypes = { onPageSelect: PropTypes.func, initialPath: PropTypes.string, apiPath: PropTypes.string, size: PropTypes.number, position: PropTypes.object }; export default Explorer;