mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-04 00:59:25 +00:00
85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import React, { Component } from 'react';
|
|
import classnames from 'classnames';
|
|
import { withTranslation } from 'react-i18next';
|
|
|
|
import enhanceWithClickOutside from 'react-click-outside';
|
|
|
|
import './Dropdown.css';
|
|
|
|
type DropdownProps = {
|
|
label: string;
|
|
children: React.ReactNode;
|
|
controlClassName: string;
|
|
menuClassName: string;
|
|
baseClassName: string;
|
|
icon?: string;
|
|
}
|
|
|
|
type DropdownState = {
|
|
isOpen: boolean;
|
|
}
|
|
|
|
class Dropdown extends Component<DropdownProps, DropdownState> {
|
|
state = {
|
|
isOpen: false,
|
|
};
|
|
|
|
toggleDropdown = () => {
|
|
this.setState((prevState) => ({ isOpen: !prevState.isOpen }));
|
|
};
|
|
|
|
hideDropdown = () => {
|
|
this.setState({ isOpen: false });
|
|
};
|
|
|
|
handleClickOutside = () => {
|
|
if (this.state.isOpen) {
|
|
this.hideDropdown();
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
label,
|
|
controlClassName,
|
|
menuClassName = 'dropdown-menu dropdown-menu-arrow',
|
|
baseClassName = 'dropdown',
|
|
icon,
|
|
children,
|
|
} = this.props;
|
|
|
|
const { isOpen } = this.state;
|
|
|
|
const dropdownClass = classnames({
|
|
[baseClassName]: true,
|
|
show: isOpen,
|
|
});
|
|
|
|
const dropdownMenuClass = classnames({
|
|
[menuClassName]: true,
|
|
show: isOpen,
|
|
});
|
|
|
|
const ariaSettings = isOpen ? 'true' : 'false';
|
|
|
|
return (
|
|
<div className={dropdownClass}>
|
|
<a className={controlClassName} aria-expanded={ariaSettings} onClick={this.toggleDropdown}>
|
|
{icon && (
|
|
<svg className="nav-icon">
|
|
<use xlinkHref={`#${icon}`} />
|
|
</svg>
|
|
)}
|
|
{label}
|
|
</a>
|
|
|
|
<div className={dropdownMenuClass} onClick={this.hideDropdown}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withTranslation()(enhanceWithClickOutside(Dropdown));
|