2023-01-19 19:19:06 +02:00
|
|
|
import * as React from 'react';
|
|
|
|
import { themeStyle } from '@joplin/lib/theme';
|
2017-11-11 00:18:00 +02:00
|
|
|
|
2023-01-19 19:19:06 +02:00
|
|
|
interface Props {
|
|
|
|
themeId: number;
|
|
|
|
style: any;
|
|
|
|
iconName: string;
|
2023-06-30 11:30:29 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
|
2023-01-19 19:19:06 +02:00
|
|
|
onClick: Function;
|
|
|
|
}
|
|
|
|
|
|
|
|
class IconButton extends React.Component<Props> {
|
2023-03-06 16:22:01 +02:00
|
|
|
public render() {
|
2017-11-11 00:18:00 +02:00
|
|
|
const style = this.props.style;
|
2020-09-15 15:01:07 +02:00
|
|
|
const theme = themeStyle(this.props.themeId);
|
2017-11-11 00:18:00 +02:00
|
|
|
const iconStyle = {
|
|
|
|
color: theme.color,
|
|
|
|
fontSize: theme.fontSize * 1.4,
|
|
|
|
};
|
2020-05-17 16:34:42 +02:00
|
|
|
const icon = <i style={iconStyle} className={`fas ${this.props.iconName}`}></i>;
|
2017-11-11 00:18:00 +02:00
|
|
|
|
2023-06-01 13:02:36 +02:00
|
|
|
const rootStyle = {
|
|
|
|
display: 'flex',
|
|
|
|
textDecoration: 'none',
|
|
|
|
padding: 10,
|
|
|
|
width: theme.buttonMinHeight,
|
|
|
|
height: theme.buttonMinHeight,
|
|
|
|
boxSizing: 'border-box',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: theme.backgroundColor,
|
|
|
|
cursor: 'default',
|
|
|
|
...style,
|
|
|
|
};
|
2017-11-11 00:18:00 +02:00
|
|
|
|
|
|
|
return (
|
2019-07-29 14:13:23 +02:00
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
style={rootStyle}
|
|
|
|
className="icon-button"
|
|
|
|
onClick={() => {
|
|
|
|
if (this.props.onClick) this.props.onClick();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{icon}
|
2017-11-11 00:18:00 +02:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-19 19:19:06 +02:00
|
|
|
export default IconButton;
|