insomnia/packages/insomnia-app/app/ui/components/base/button.tsx
Opender Singh 7ffc391428
add eslint rules for semi colons (#3989)
* add rules for semi colons

* run lint fix

* remove invalid eslint disable
2021-09-01 10:50:26 -04:00

55 lines
1.8 KiB
TypeScript

import { autoBindMethodsForReact } from 'class-autobind-decorator';
import React, { ButtonHTMLAttributes, CSSProperties, PureComponent, ReactNode } from 'react';
import { AUTOBIND_CFG } from '../../../common/constants';
export interface ButtonProps<T> {
children: ReactNode;
value?: T;
className?: string;
onDisabledClick?: React.MouseEventHandler<HTMLButtonElement> | ((value: T | undefined, e: React.MouseEvent<HTMLButtonElement>) => void);
onClick?: React.MouseEventHandler<HTMLButtonElement> | ((value: T | undefined, e: React.MouseEvent<HTMLButtonElement>) => void);
disabled?: boolean;
tabIndex?: number;
type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
id?: string;
// TODO(TSCONVERSION) figure out why so many components pass this yet it isn't used
title?: string;
style?: CSSProperties;
}
@autoBindMethodsForReact(AUTOBIND_CFG)
class Button<T> extends PureComponent<ButtonProps<T>> {
_handleClick(e: React.MouseEvent<HTMLButtonElement>) {
const { onClick, onDisabledClick, disabled, value } = this.props;
const fn = disabled ? onDisabledClick : onClick;
if (this.props.hasOwnProperty('value')) {
// @ts-expect-error -- TSCONVERSION we really need to make the `value` argument come second
fn?.(value, e);
} else {
// @ts-expect-error -- TSCONVERSION we really need to make the `value` argument come second
fn?.(e);
}
}
render() {
const { children, disabled, tabIndex, className, type, id, style } = this.props;
return (
<button
disabled={disabled}
id={id}
type={type}
tabIndex={tabIndex}
className={className}
onClick={this._handleClick}
style={style}
>
{children}
</button>
);
}
}
export default Button;