mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
99 lines
3 KiB
TypeScript
99 lines
3 KiB
TypeScript
import React, { FC, useCallback, memo, useState, useEffect } from 'react';
|
||
import { connect } from 'react-redux';
|
||
import { push as historyPush } from 'connected-react-router';
|
||
import { Link } from 'react-router-dom';
|
||
import { Logo } from '~/components/main/Logo';
|
||
|
||
import * as style from './style.scss';
|
||
import { Filler } from '~/components/containers/Filler';
|
||
import { selectUser } from '~/redux/auth/selectors';
|
||
import { Group } from '~/components/containers/Group';
|
||
import * as MODAL_ACTIONS from '~/redux/modal/actions';
|
||
import * as AUTH_ACTIONS from '~/redux/auth/actions';
|
||
import { DIALOGS } from '~/redux/modal/constants';
|
||
import { pick } from 'ramda';
|
||
import { UserButton } from '../UserButton';
|
||
import { Notifications } from '../Notifications';
|
||
import { URLS } from '~/constants/urls';
|
||
import { createPortal } from 'react-dom';
|
||
import classNames from 'classnames';
|
||
|
||
const mapStateToProps = state => ({
|
||
user: pick(['username', 'is_user', 'photo'])(selectUser(state)),
|
||
});
|
||
|
||
const mapDispatchToProps = {
|
||
push: historyPush,
|
||
showDialog: MODAL_ACTIONS.modalShowDialog,
|
||
authLogout: AUTH_ACTIONS.authLogout,
|
||
authOpenProfile: AUTH_ACTIONS.authOpenProfile,
|
||
};
|
||
|
||
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & {};
|
||
|
||
const HeaderUnconnected: FC<IProps> = memo(
|
||
({ user, user: { username, is_user }, showDialog, authLogout, authOpenProfile }) => {
|
||
const [is_scrolled, setIsScrolled] = useState(false);
|
||
|
||
const onLogin = useCallback(() => showDialog(DIALOGS.LOGIN), [showDialog]);
|
||
// const onProfileClick = useCallback(() => authOpenProfile(username), [authOpenProfile, user]);
|
||
|
||
const onScroll = useCallback(() => {
|
||
const active = window.scrollY > 32;
|
||
|
||
if (active !== is_scrolled) setIsScrolled(active);
|
||
}, [is_scrolled, setIsScrolled]);
|
||
|
||
useEffect(() => {
|
||
onScroll();
|
||
}, []);
|
||
|
||
useEffect(() => {
|
||
window.addEventListener('scroll', onScroll);
|
||
return () => window.removeEventListener('scroll', onScroll);
|
||
}, [onScroll]);
|
||
|
||
return createPortal(
|
||
<div className={classNames(style.wrap, { [style.is_scrolled]: is_scrolled })}>
|
||
<div className={style.container}>
|
||
<Logo />
|
||
|
||
<Filler />
|
||
|
||
<div className={style.plugs}>
|
||
<Link className={style.item} to={URLS.BASE}>
|
||
ФЛОУ
|
||
</Link>
|
||
|
||
<Link className={style.item} to={URLS.BORIS}>
|
||
БОРИС
|
||
</Link>
|
||
{is_user && (
|
||
<div className={style.item}>
|
||
<Notifications />
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
{is_user && (
|
||
<UserButton user={user} onLogout={authLogout} authOpenProfile={authOpenProfile} />
|
||
)}
|
||
|
||
{!is_user && (
|
||
<Group horizontal className={style.user_button} onClick={onLogin}>
|
||
<div>ВДОХ</div>
|
||
</Group>
|
||
)}
|
||
</div>
|
||
</div>,
|
||
document.body
|
||
);
|
||
}
|
||
);
|
||
|
||
const Header = connect(
|
||
mapStateToProps,
|
||
mapDispatchToProps
|
||
)(HeaderUnconnected);
|
||
|
||
export { Header };
|