From 44a7d87cb1f5df953b6c14c16c59e2e4ead1bcb9 Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Mon, 20 Feb 2023 03:20:59 +0100 Subject: Rename JSX files with proper `.jsx` extension (#23733) --- app/javascript/mastodon/components/button.jsx | 57 +++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 app/javascript/mastodon/components/button.jsx (limited to 'app/javascript/mastodon/components/button.jsx') diff --git a/app/javascript/mastodon/components/button.jsx b/app/javascript/mastodon/components/button.jsx new file mode 100644 index 000000000..a05a75e89 --- /dev/null +++ b/app/javascript/mastodon/components/button.jsx @@ -0,0 +1,57 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +export default class Button extends React.PureComponent { + + static propTypes = { + text: PropTypes.node, + type: PropTypes.string, + onClick: PropTypes.func, + disabled: PropTypes.bool, + block: PropTypes.bool, + secondary: PropTypes.bool, + className: PropTypes.string, + title: PropTypes.string, + children: PropTypes.node, + }; + + static defaultProps = { + type: 'button', + }; + + handleClick = (e) => { + if (!this.props.disabled && this.props.onClick) { + this.props.onClick(e); + } + }; + + setRef = (c) => { + this.node = c; + }; + + focus() { + this.node.focus(); + } + + render () { + const className = classNames('button', this.props.className, { + 'button-secondary': this.props.secondary, + 'button--block': this.props.block, + }); + + return ( + + ); + } + +} -- cgit