mirror of
https://github.com/proelements/proelements.git
synced 2026-04-27 21:50:40 +00:00
v3.33.1
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
import * as React from 'react';
|
||||
import { useRef, useEffect } from 'react';
|
||||
import { Button } from '@elementor/app-ui';
|
||||
import { arrayToClassName } from '../utils.js';
|
||||
|
||||
const ConnectButton = ( props ) => {
|
||||
const className = arrayToClassName( [
|
||||
'e-app-connect-button',
|
||||
props.className,
|
||||
] );
|
||||
|
||||
const buttonRef = useRef( null );
|
||||
|
||||
useEffect( () => {
|
||||
if ( ! buttonRef.current ) {
|
||||
return;
|
||||
}
|
||||
|
||||
jQuery( buttonRef.current ).elementorConnect();
|
||||
}, [] );
|
||||
|
||||
return (
|
||||
<Button
|
||||
{ ...props }
|
||||
elRef={ buttonRef }
|
||||
className={ className }
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
ConnectButton.propTypes = {
|
||||
...Button.propTypes,
|
||||
text: PropTypes.string.isRequired,
|
||||
url: PropTypes.string.isRequired,
|
||||
className: PropTypes.string,
|
||||
};
|
||||
|
||||
ConnectButton.defaultProps = {
|
||||
className: '',
|
||||
variant: 'contained',
|
||||
size: 'sm',
|
||||
color: 'cta',
|
||||
target: '_blank',
|
||||
rel: 'noopener noreferrer',
|
||||
text: __( 'Connect & Activate', 'elementor-pro' ),
|
||||
};
|
||||
|
||||
export default React.memo( ConnectButton );
|
||||
Reference in New Issue
Block a user