Close #1820
Squashed commit of the following:
commit 0c758ddcd738136b92e6f947a8068ecc59f7ec25
Merge: 15650db3 f5a1f311
Author: ArtemBaskal <a.baskal@adguard.com>
Date: Fri Jul 3 11:22:00 2020 +0300
Merge branch 'master' into fix/1820
commit 15650db35323009001fd427a74a312705b54ac86
Author: ArtemBaskal <a.baskal@adguard.com>
Date: Mon Jun 29 12:01:51 2020 +0300
'- client: Don't normalise disallowed domains'
143 lines
4.6 KiB
JavaScript
143 lines
4.6 KiB
JavaScript
import React, { Component, Fragment } from 'react';
|
|
import { NavLink } from 'react-router-dom';
|
|
import PropTypes from 'prop-types';
|
|
import enhanceWithClickOutside from 'react-click-outside';
|
|
import classnames from 'classnames';
|
|
import { Trans, withTranslation } from 'react-i18next';
|
|
|
|
import { SETTINGS_URLS, FILTERS_URLS, MENU_URLS } from '../../helpers/constants';
|
|
import Dropdown from '../ui/Dropdown';
|
|
|
|
const MENU_ITEMS = [
|
|
{
|
|
route: MENU_URLS.root, exact: true, icon: 'dashboard', text: 'dashboard', order: 0,
|
|
},
|
|
|
|
// Settings dropdown should have visual order 1
|
|
|
|
// Filters dropdown should have visual order 2
|
|
|
|
{
|
|
route: MENU_URLS.logs, icon: 'log', text: 'query_log', order: 3,
|
|
},
|
|
{
|
|
route: MENU_URLS.guide, icon: 'setup', text: 'setup_guide', order: 4,
|
|
},
|
|
];
|
|
|
|
const SETTINGS_ITEMS = [
|
|
{ route: SETTINGS_URLS.settings, text: 'general_settings' },
|
|
{ route: SETTINGS_URLS.dns, text: 'dns_settings' },
|
|
{ route: SETTINGS_URLS.encryption, text: 'encryption_settings' },
|
|
{ route: SETTINGS_URLS.clients, text: 'client_settings' },
|
|
{ route: SETTINGS_URLS.dhcp, text: 'dhcp_settings' },
|
|
];
|
|
|
|
const FILTERS_ITEMS = [
|
|
{ route: FILTERS_URLS.dns_blocklists, text: 'dns_blocklists' },
|
|
{ route: FILTERS_URLS.dns_allowlists, text: 'dns_allowlists' },
|
|
{ route: FILTERS_URLS.dns_rewrites, text: 'dns_rewrites' },
|
|
{ route: FILTERS_URLS.blocked_services, text: 'blocked_services' },
|
|
{ route: FILTERS_URLS.custom_rules, text: 'custom_filtering_rules' },
|
|
];
|
|
|
|
class Menu extends Component {
|
|
handleClickOutside = () => {
|
|
this.props.closeMenu();
|
|
};
|
|
|
|
closeMenu = () => {
|
|
this.props.closeMenu();
|
|
};
|
|
|
|
getActiveClassForDropdown = (URLS) => {
|
|
const { pathname } = this.props.location;
|
|
const isActivePage = Object.values(URLS).some((item) => item === pathname);
|
|
|
|
return isActivePage ? 'active' : '';
|
|
};
|
|
|
|
getNavLink = ({
|
|
route, exact, text, order, className, icon,
|
|
}) => (
|
|
<NavLink
|
|
to={route}
|
|
key={route}
|
|
exact={exact || false}
|
|
className={`order-${order} ${className}`}
|
|
onClick={this.closeMenu}
|
|
>
|
|
{icon && (
|
|
<svg className="nav-icon">
|
|
<use xlinkHref={`#${icon}`} />
|
|
</svg>
|
|
)}
|
|
<Trans>{text}</Trans>
|
|
</NavLink>
|
|
);
|
|
|
|
getDropdown = ({
|
|
label, order, URLS, icon, ITEMS,
|
|
}) => (
|
|
<Dropdown
|
|
label={this.props.t(label)}
|
|
baseClassName={`dropdown nav-item order-${order}`}
|
|
controlClassName={`nav-link ${this.getActiveClassForDropdown(URLS)}`}
|
|
icon={icon}>
|
|
{ITEMS.map((item) => (
|
|
this.getNavLink({
|
|
...item,
|
|
order,
|
|
className: 'dropdown-item',
|
|
})))}
|
|
</Dropdown>
|
|
);
|
|
|
|
render() {
|
|
const menuClass = classnames({
|
|
'header__column mobile-menu': true,
|
|
'mobile-menu--active': this.props.isMenuOpen,
|
|
});
|
|
return (
|
|
<Fragment>
|
|
<div className={menuClass}>
|
|
<ul className="nav nav-tabs border-0 flex-column flex-lg-row flex-nowrap">
|
|
{MENU_ITEMS.map((item) => (
|
|
<li
|
|
className={`nav-item order-${item.order}`}
|
|
key={item.text}
|
|
onClick={this.closeMenu}
|
|
>
|
|
{this.getNavLink({ ...item, className: 'nav-link' })}
|
|
</li>
|
|
))}
|
|
{this.getDropdown({
|
|
order: 1,
|
|
label: 'settings',
|
|
icon: 'settings',
|
|
URLS: SETTINGS_URLS,
|
|
ITEMS: SETTINGS_ITEMS,
|
|
})}
|
|
{this.getDropdown({
|
|
order: 2,
|
|
label: 'filters',
|
|
icon: 'filters',
|
|
URLS: FILTERS_URLS,
|
|
ITEMS: FILTERS_ITEMS,
|
|
})}
|
|
</ul>
|
|
</div>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
Menu.propTypes = {
|
|
isMenuOpen: PropTypes.bool,
|
|
closeMenu: PropTypes.func,
|
|
location: PropTypes.object,
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
export default withTranslation()(enhanceWithClickOutside(Menu));
|