orchidmap-front/src/components/panels/UserPanel.tsx
2020-01-21 14:47:16 +07:00

201 lines
5.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, { PureComponent } from 'react';
import { GuestButton } from '~/components/user/GuestButton';
import { DEFAULT_USER, ROLES } from '~/constants/auth';
import { UserButton } from '~/components/user/UserButton';
import { UserMenu } from '~/components/user/UserMenu';
import { setUser, userLogout, gotVkUser, openMapDialog } from '~/redux/user/actions';
import {
editorTakeAShot,
editorSetDialog,
editorSetDialogActive,
editorGetGPXTrack,
editorSearchNominatim,
} from '~/redux/editor/actions';
import { connect } from 'react-redux';
import { Icon } from '~/components/panels/Icon';
import classnames from 'classnames';
import { CLIENT } from '~/config/frontend';
import { DIALOGS, TABS } from '~/constants/dialogs';
import { Tooltip } from '~/components/panels/Tooltip';
import { TitleDialog } from '~/components/dialogs/TitleDialog';
import { NominatimSearchPanel } from '~/components/dialogs/NominatimSearchPanel';
import { IState } from '~/redux/store';
const mapStateToProps = ({
user: { user },
editor: { dialog, dialog_active, features },
map: { route, stickers },
}: IState) => ({
dialog,
dialog_active,
user,
route,
stickers,
features,
});
const mapDispatchToProps = {
setUser,
userLogout,
editorTakeAShot,
editorSetDialog,
gotVkUser,
editorSetDialogActive,
openMapDialog,
editorGetGPXTrack,
editorSearchNominatim,
};
type Props = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & {};
interface State {
menuOpened: boolean;
}
export class UserPanelUnconnected extends PureComponent<Props, State> {
state = {
menuOpened: false,
};
componentDidMount() {
window.addEventListener('message', e => {
const { data } = e;
if (
!data ||
!data.type ||
data.type !== 'oauth_login' ||
!data.user ||
!data.user.id ||
!data.user.token
)
return;
const { id, token, role = 'vk', name = '', ip = '', photo = '', agent = '' } = data.user;
const user = {
...DEFAULT_USER,
role,
id,
token,
userdata: {
name,
ip,
agent,
photo,
},
};
this.setState({ menuOpened: false });
this.props.gotVkUser(user);
});
}
setMenuOpened = () => this.setState({ menuOpened: !this.state.menuOpened });
openMapsDialog = () => {
this.props.openMapDialog(TABS.MY);
};
openAppInfoDialog = () => {
this.setMenuOpened();
this.props.editorSetDialog(DIALOGS.APP_INFO);
this.props.editorSetDialogActive(this.props.dialog !== DIALOGS.APP_INFO);
};
openOauthFrame = () => {
const width = parseInt(String(window.innerWidth), 10);
const height = parseInt(String(window.innerHeight), 10);
const top = (height - 370) / 2;
const left = (width - 700) / 2;
window.open(
`https://oauth.vk.com/authorize?client_id=5987644&scope=&redirect_uri=${CLIENT.API_ADDR}/api/auth/vk`,
'socialPopupWindow',
`location=no,width=700,height=370,scrollbars=no,top=${top},left=${left},resizable=no`
);
};
render() {
const {
props: { user, dialog, dialog_active, route, stickers, features },
state: { menuOpened },
} = this;
const is_empty = !route.length && !stickers.length;
return (
<div>
<TitleDialog />
{features.nominatim && (
<NominatimSearchPanel
active={features.nominatim}
onSearch={this.props.editorSearchNominatim}
/>
)}
<div className="panel active panel-user">
<div className="user-panel">
{!user || user.role === ROLES.guest ? (
<GuestButton onClick={this.openOauthFrame} />
) : (
<UserButton user={user} setMenuOpened={this.setMenuOpened} />
)}
{user && user.role && user.role !== 'guest' && menuOpened && (
<UserMenu
userLogout={this.props.userLogout}
openAppInfoDialog={this.openAppInfoDialog}
/>
)}
</div>
<div className="control-sep" />
<div className="control-bar">
<button
className={classnames({
active: dialog_active && dialog === DIALOGS.MAP_LIST,
})}
onClick={this.openMapsDialog}
>
<Tooltip>Каталог маршрутов</Tooltip>
<Icon icon="icon-folder-1" />
</button>
</div>
<div className="control-sep" />
<div className="control-bar">
<button className={classnames({ active: false })} onClick={this.props.editorTakeAShot}>
<Tooltip>Снимок карты</Tooltip>
<Icon icon="icon-shot-4" />
</button>
</div>
{!is_empty && (
<React.Fragment>
<div className="control-sep" />
<div className="control-bar">
<button
className={classnames({ active: false })}
onClick={this.props.editorGetGPXTrack}
>
<Tooltip>Экспорт GPX</Tooltip>
<Icon icon="icon-gpx-1" />
</button>
</div>
</React.Fragment>
)}
</div>
</div>
);
}
}
const UserPanel = connect(mapStateToProps, mapDispatchToProps)(UserPanelUnconnected);
export { UserPanel };