// The MIT License // // Copyright (c) 2018 Google, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React from 'react'; import classnames from 'classnames'; import { withRipple, InjectedProps, // @ts-ignore TODO(issues/955) Remove once possible RippledComponentProps, // eslint-disable-line @typescript-eslint/no-unused-vars } from '@material/react-ripple'; import {MDCIconButtonToggleAdapter} from '@material/icon-button/adapter'; import {MDCIconButtonToggleFoundation} from '@material/icon-button/foundation'; import {MDCIconButtonToggleEventDetail} from '@material/icon-button/types'; import IconToggle from './IconToggle'; const ARIA_PRESSED = 'aria-pressed'; interface ElementAttributes { // from HTMLAttributes [ARIA_PRESSED]?: boolean | 'false' | 'mixed' | 'true'; } type IconButtonTypes = HTMLButtonElement | HTMLAnchorElement; export interface IconButtonBaseProps extends ElementAttributes { handleChange?: (evt: MDCIconButtonToggleEventDetail) => void; isLink?: boolean; } interface IconButtonBaseState extends ElementAttributes { classList: Set; } export interface IconButtonProps extends InjectedProps, IconButtonBaseProps, React.HTMLProps {} class IconButtonBase extends React.Component< IconButtonProps, IconButtonBaseState > { foundation!: MDCIconButtonToggleFoundation; constructor(props: IconButtonProps) { super(props); this.state = { classList: new Set(), [ARIA_PRESSED]: props[ARIA_PRESSED], }; } static defaultProps = { className: '', handleChange: () => {}, initRipple: () => {}, isLink: false, onClick: () => {}, unbounded: true, }; componentDidMount() { this.foundation = new MDCIconButtonToggleFoundation(this.adapter); this.foundation.init(); } get classes() { const {classList} = this.state; const {className} = this.props; return classnames('mdc-icon-button', Array.from(classList), className); } get adapter(): MDCIconButtonToggleAdapter { return { addClass: (className: string) => this.setState({classList: this.state.classList.add(className)}), removeClass: (className: string) => { const {classList} = this.state; classList.delete(className); this.setState({classList}); }, hasClass: (className: string) => this.classes.split(' ').includes(className), setAttr: this.updateState, notifyChange: this.props.handleChange!, }; } updateState = (key: keyof IconButtonBaseState, value: string | boolean) => { this.setState((prevState) => ({ ...prevState, [key]: value, })); }; handleClick_ = (e: React.MouseEvent) => { this.props.onClick!(e); this.foundation.handleClick(); }; render() { const { children, initRipple, isLink, /* eslint-disable @typescript-eslint/no-unused-vars */ className, handleChange, onClick, unbounded, [ARIA_PRESSED]: ariaPressed, /* eslint-enable @typescript-eslint/no-unused-vars */ ...otherProps } = this.props; const props = { className: this.classes, ref: initRipple, [ARIA_PRESSED]: this.state[ARIA_PRESSED], onClick: this.handleClick_, ...otherProps, }; if (isLink) { return ( )}>{children} ); } return ( ); } } const IconButton = withRipple< IconButtonProps, IconButtonTypes >(IconButtonBase); export default IconButton; export {IconToggle, IconButtonBase};