ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-20 13:49:19
Editing: App.js
Cancel
Save Changes
import React, { Component } from 'react'; import Modal from 'react-modal'; // Only if modal is on page. if ( document.getElementById( 'eafl-admin-modal' ) ) { Modal.setAppElement( '#eafl-admin-modal' ); } import '../../css/admin/modal/app.scss'; import ErrorBoundary from 'Shared/ErrorBoundary'; import { __eafl } from 'Shared/Translations'; const { hooks } = EasyAffiliateLinks.shared; import BulkEdit from './bulk-edit'; import Insert from './insert'; import Link from './link'; import Text from './text'; const contentBlocks = { 'bulk-edit': BulkEdit, edit: Link, create: Link, insert: Insert, text: Text, }; export default class App extends Component { constructor() { super(); this.state = { modalIsOpen: false, mode: '', args: {}, }; this.content = React.createRef(); this.close = this.close.bind(this); this.closeIfAllowed = this.closeIfAllowed.bind(this); } open( mode, args = {}, forceOpen = false ) { if ( forceOpen || ! this.state.modalIsOpen ) { this.setState({ modalIsOpen: true, mode, args, }, () => { window.onbeforeunload = () => __eafl( 'Are you sure you want to leave this page?' ); }); } } close(callback = false) { this.setState({ modalIsOpen: false, }, () => { window.onbeforeunload = null; if ( 'function' === typeof callback ) { callback(); } }); } closeIfAllowed(callback = false) { const checkFunction = this.content.current && this.content.current.hasOwnProperty( 'allowCloseModal' ) ? this.content.current.allowCloseModal : false; if ( ! checkFunction || checkFunction() ) { this.close(callback); } } addTextToEditor( text, editorId ) { if (typeof tinyMCE == 'undefined' || !tinyMCE.get(editorId) || tinyMCE.get(editorId).isHidden()) { var current = jQuery('textarea#' + editorId).val(); jQuery('textarea#' + editorId).val(current + text); } else { tinyMCE.get(editorId).focus(true); tinyMCE.activeEditor.selection.collapse(false); tinyMCE.activeEditor.execCommand('mceInsertContent', false, text); } }; refreshEditor( editorId ) { if ( typeof tinyMCE !== 'undefined' && tinyMCE.get(editorId) && !tinyMCE.get(editorId).isHidden() ) { tinyMCE.get(editorId).focus(true); tinyMCE.activeEditor.setContent(tinyMCE.activeEditor.getContent()); } }; render() { let allContentBlocks = hooks.applyFilters( 'modal', contentBlocks ); const Content = allContentBlocks.hasOwnProperty(this.state.mode) ? allContentBlocks[this.state.mode] : false; if ( ! Content ) { return null; } return ( <Modal isOpen={ this.state.modalIsOpen } onRequestClose={ this.closeIfAllowed } overlayClassName="eafl-admin-modal-overlay" className={`eafl-admin-modal eafl-admin-modal-${this.state.mode}`} > <ErrorBoundary module="Modal"> <Content ref={ this.content } mode={ this.state.mode } args={ this.state.args } maybeCloseModal={ this.closeIfAllowed } /> </ErrorBoundary> </Modal> ); } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete