2020-07-31 13:21:26 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2020-07-24 21:43:07 +00:00
|
|
|
import styled from 'styled-components';
|
2020-07-31 13:21:26 +00:00
|
|
|
import { useSelector } from 'react-redux';
|
2020-07-31 12:04:48 +00:00
|
|
|
import { withRouter, Link } from 'react-router';
|
2020-07-30 18:40:43 +00:00
|
|
|
|
2020-07-24 21:11:10 +00:00
|
|
|
import Screen from '../../components/mobile/MobileScreen';
|
|
|
|
import Header from '../../components/mobile/Header';
|
|
|
|
import IconButton from '../../components/mobile/IconButton';
|
|
|
|
import { ExitIcon } from '../../common/icons';
|
2020-07-24 21:43:07 +00:00
|
|
|
import Footer from '../../components/mobile/Footer';
|
|
|
|
import { prop, remSize } from '../../theme';
|
2020-07-28 14:33:38 +00:00
|
|
|
import SketchList from '../IDE/components/SketchList';
|
|
|
|
import CollectionList from '../IDE/components/CollectionList';
|
|
|
|
import AssetList from '../IDE/components/AssetList';
|
|
|
|
import Content from './MobileViewContent';
|
2020-07-31 12:09:35 +00:00
|
|
|
import { SketchSearchbar, CollectionSearchbar } from '../IDE/components/Searchbar';
|
2020-07-31 13:21:26 +00:00
|
|
|
import Button from '../../common/Button';
|
2020-07-28 20:46:22 +00:00
|
|
|
|
|
|
|
const EXAMPLE_USERNAME = 'p5';
|
2020-07-24 21:11:10 +00:00
|
|
|
|
2020-07-31 12:04:48 +00:00
|
|
|
const FooterTab = styled(Link)`
|
2020-07-28 14:33:38 +00:00
|
|
|
background: ${props => prop(props.selected ? 'backgroundColor' : 'MobilePanel.default.foreground')};
|
2020-07-24 21:43:07 +00:00
|
|
|
color: ${props => prop(`MobilePanel.default.${props.selected ? 'foreground' : 'background'}`)};
|
|
|
|
padding: ${remSize(16)};
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
`;
|
|
|
|
|
2020-07-28 20:46:22 +00:00
|
|
|
const Subheader = styled.div`
|
2020-07-31 13:21:26 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
* { border-radius: 0px; }
|
2020-07-28 20:46:22 +00:00
|
|
|
|
|
|
|
.searchbar {
|
|
|
|
display: flex;
|
2020-07-31 13:21:26 +00:00
|
|
|
width: 100%;
|
2020-07-28 20:46:22 +00:00
|
|
|
}
|
2020-07-28 21:10:20 +00:00
|
|
|
.searchbar__input { width: 100%; }
|
2020-07-28 20:46:22 +00:00
|
|
|
`;
|
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const SubheaderButton = styled(Button)`
|
|
|
|
border-radius: 0px !important;
|
|
|
|
`;
|
|
|
|
|
2020-07-28 20:46:22 +00:00
|
|
|
|
|
|
|
const FooterTabSwitcher = styled.div`
|
2020-07-24 21:43:07 +00:00
|
|
|
display: flex;
|
|
|
|
|
2020-07-28 14:33:38 +00:00
|
|
|
h3 { text-align: center; width: 100%; }
|
2020-07-24 21:43:07 +00:00
|
|
|
`;
|
|
|
|
|
2020-07-28 14:33:38 +00:00
|
|
|
const Panels = {
|
2020-07-31 12:04:48 +00:00
|
|
|
sketches: SketchList,
|
|
|
|
collections: CollectionList,
|
|
|
|
assets: AssetList
|
2020-07-28 14:33:38 +00:00
|
|
|
};
|
2020-07-24 21:43:07 +00:00
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const CreatePathname = {
|
|
|
|
sketches: '/mobile',
|
|
|
|
collections: '/mobile/:username/collections/create',
|
|
|
|
};
|
|
|
|
|
2020-07-30 18:40:43 +00:00
|
|
|
|
2020-07-31 12:04:48 +00:00
|
|
|
const getPanel = (pathname) => {
|
|
|
|
const pathparts = pathname ? pathname.split('/') : [];
|
|
|
|
const matches = Object.keys(Panels).map(part => part.toLowerCase()).filter(part => pathparts.includes(part));
|
|
|
|
return matches && matches.length > 0 && matches[0];
|
|
|
|
};
|
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const getCreatePathname = (panel, username) => (CreatePathname[panel] || '#').replace(':username', username);
|
2020-07-30 18:40:43 +00:00
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const isOwner = (user, params) => user && params && user.username === params.username;
|
|
|
|
|
2020-08-04 13:55:16 +00:00
|
|
|
const renderPanel = (name, props) => (Component => (Component && <Component {...props} mobile />))(Panels[name]);
|
2020-07-28 20:13:55 +00:00
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const MobileDashboard = ({ params, location }) => {
|
|
|
|
const user = useSelector(state => state.user);
|
2020-07-30 18:40:43 +00:00
|
|
|
const { username } = params;
|
2020-07-31 12:04:48 +00:00
|
|
|
const { pathname } = location;
|
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
const Tabs = Object.keys(Panels);
|
2020-07-28 20:46:22 +00:00
|
|
|
const isExamples = username === EXAMPLE_USERNAME;
|
2020-07-31 12:04:48 +00:00
|
|
|
const panel = getPanel(pathname);
|
|
|
|
|
2020-07-24 21:43:07 +00:00
|
|
|
return (
|
2020-07-31 12:04:48 +00:00
|
|
|
<Screen fullscreen key={pathname}>
|
2020-07-28 20:13:55 +00:00
|
|
|
<Header slim inverted title={isExamples ? 'Examples' : 'My Stuff'}>
|
2020-07-24 21:43:07 +00:00
|
|
|
<IconButton to="/mobile" icon={ExitIcon} aria-label="Return to ide view" />
|
|
|
|
</Header>
|
|
|
|
|
2020-07-28 14:33:38 +00:00
|
|
|
|
2020-07-28 20:46:22 +00:00
|
|
|
<Content slimheader>
|
|
|
|
<Subheader>
|
2020-07-31 13:21:26 +00:00
|
|
|
{isOwner(user, params) && <SubheaderButton to={getCreatePathname(panel, username)}>new</SubheaderButton>}
|
2020-07-31 12:09:35 +00:00
|
|
|
{panel === Tabs[0] && <SketchSearchbar />}
|
|
|
|
{panel === Tabs[1] && <CollectionSearchbar />}
|
2020-07-28 20:46:22 +00:00
|
|
|
</Subheader>
|
2020-07-31 12:04:48 +00:00
|
|
|
{renderPanel(panel, { username, key: pathname })}
|
2020-07-28 14:33:38 +00:00
|
|
|
</Content>
|
2020-07-24 21:43:07 +00:00
|
|
|
<Footer>
|
2020-07-28 20:13:55 +00:00
|
|
|
{!isExamples &&
|
2020-07-28 20:46:22 +00:00
|
|
|
<FooterTabSwitcher>
|
2020-07-28 20:13:55 +00:00
|
|
|
{Tabs.map(tab => (
|
|
|
|
<FooterTab
|
|
|
|
key={`tab-${tab}`}
|
2020-07-31 12:04:48 +00:00
|
|
|
selected={tab === panel}
|
|
|
|
to={pathname.replace(panel, tab)}
|
2020-07-28 20:13:55 +00:00
|
|
|
>
|
2020-07-31 12:04:48 +00:00
|
|
|
<h3>{(isExamples && tab === 'Sketches') ? 'Examples' : tab}</h3>
|
2020-07-28 20:13:55 +00:00
|
|
|
</FooterTab>))
|
|
|
|
}
|
2020-07-28 20:46:22 +00:00
|
|
|
</FooterTabSwitcher>
|
2020-07-28 20:13:55 +00:00
|
|
|
}
|
2020-07-24 21:43:07 +00:00
|
|
|
</Footer>
|
|
|
|
</Screen>);
|
|
|
|
};
|
2020-07-24 21:11:10 +00:00
|
|
|
|
2020-07-31 13:21:26 +00:00
|
|
|
|
2020-07-30 18:40:43 +00:00
|
|
|
MobileDashboard.propTypes = {
|
2020-07-31 12:04:48 +00:00
|
|
|
location: PropTypes.shape({
|
|
|
|
pathname: PropTypes.string.isRequired
|
|
|
|
}).isRequired,
|
2020-07-30 18:40:43 +00:00
|
|
|
params: PropTypes.shape({
|
|
|
|
username: PropTypes.string.isRequired
|
|
|
|
})
|
|
|
|
};
|
|
|
|
MobileDashboard.defaultProps = { params: {} };
|
2020-07-28 20:13:55 +00:00
|
|
|
|
|
|
|
|
2020-07-30 18:40:43 +00:00
|
|
|
export default withRouter(MobileDashboard);
|