/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
really-simple-ssl
/
settings
/
src
/
Settings
/
Upload File
HOME
import { Button, TextareaControl, } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { Component, } from '@wordpress/element'; import Placeholder from '../Placeholder/Placeholder'; import * as rsssl_api from "../utils/api"; class Support extends Component { constructor() { super( ...arguments ); this.state = { message :'', sending :false, }; } componentDidMount() { this.onChangeHandler = this.onChangeHandler.bind(this); this.onClickHandler = this.onClickHandler.bind(this); } onChangeHandler(message) { this.setState({ message :message, }); } onClickHandler(event) { this.setState({ sending :true, }); return rsssl_api.runTest('supportData', 'refresh').then( ( response ) => { const { message, } = this.state; let encodedMessage = message.replace(/(?:\r\n|\r|\n)/g, '--br--'); let url = 'https://really-simple-ssl.com/support' +'?customername=' + encodeURIComponent(response.customer_name) + '&email=' + response.email + '&domain=' + response.domain + '&scanresults=' + encodeURIComponent(response.scan_results) + '&licensekey=' + encodeURIComponent(response.license_key) + '&supportrequest=' + encodeURIComponent(encodedMessage) + '&htaccesscontents=' + response.htaccess_contents + '&debuglog=' + response.system_status; window.location.assign(url); }); } render(){ const { message, sending, } = this.state; let disabled = sending || message.length==0; let textAreaDisabled = sending; return ( <> <TextareaControl disabled={textAreaDisabled} placeholder={__("Type your question here","really-simple-ssl")} onChange={ ( message ) => this.onChangeHandler(message) } /> <Button disabled={disabled} variant="secondary" onClick={ ( e ) => this.onClickHandler(e) }> { __( 'Send', 'really-simple-ssl' ) } </Button> </> ); } } export default Support;