Server IP : 85.214.239.14 / Your IP : 3.135.247.237 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/wp-content/plugins/really-simple-ssl/settings/src/Settings/License/ |
Upload File : |
import TaskElement from "../../Dashboard/TaskElement"; import * as rsssl_api from "../../utils/api"; import { __ } from '@wordpress/i18n'; import useFields from "./../FieldsData"; import useLicense from "./LicenseData"; import {useEffect} from "@wordpress/element"; const License = ({field, isOnboarding}) => { const {fields, setChangedField, updateField} = useFields(); const {toggleActivation, licenseStatus, setLicenseStatus, notices, setNotices, setLoadingState} = useLicense(); useEffect(() => { setLoadingState(); }, []); const getLicenseNotices = () => { return rsssl_api.runTest('licenseNotices', 'refresh').then( ( response ) => { return response; }); } useEffect( () => { getLicenseNotices().then(( response ) => { setLicenseStatus(response.licenseStatus); setNotices(response.notices); }); }, [fields] ); const onChangeHandler = (fieldValue) => { setChangedField( field.id, fieldValue ) updateField(field.id, fieldValue); } return ( <div className="components-base-control"> <div className="components-base-control__field"> { !isOnboarding && <label className="components-base-control__label" htmlFor={field.id}> {field.label} </label> } <div className="rsssl-license-field"> <input className="components-text-control__input" type="password" id={field.id} value={field.value} onChange={(e) => onChangeHandler(e.target.value)} /> { !isOnboarding && <button className="button button-default" onClick={() => toggleActivation(field.value)}> {licenseStatus === 'valid' && <>{__('Deactivate', 'really-simple-ssl')}</>} {licenseStatus !== 'valid' && <>{__('Activate', 'really-simple-ssl')}</>} </button> } </div> </div> { notices.map((notice, i) => ( <TaskElement key={'task-' + i} index={i} notice={notice} highLightField="" /> ))} </div> ); } export default License;