/* global List */ 'use strict'; var WPMailSMTP = window.WPMailSMTP || {}; WPMailSMTP.Admin = WPMailSMTP.Admin || {}; /** * WP Mail SMTP Admin area Code Snippets module. * * @since 4.9.0 */ WPMailSMTP.Admin.CodeSnippets = WPMailSMTP.Admin.CodeSnippets || ( function( document, window, $ ) { /** * Public functions and properties. * * @since 4.9.0 * * @type {object} */ var app = { /** * List.js instance for the snippet grid. * * @since 4.9.0 * * @type {object} */ snippetSearch: null, /** * Start the engine. DOM is not ready yet, use only to init something. * * @since 4.9.0 */ init: function() { $( app.ready ); }, /** * DOM is fully loaded. * * @since 4.9.0 */ ready: function() { app.snippetSearch = new List( 'wp-mail-smtp-wpcode-snippets-list', { valueNames: [ 'wp-mail-smtp-wpcode-snippet-title' ], } ); app.events(); }, /** * Bind events. * * @since 4.9.0 */ events: function() { // Fallback overlay button installs WPCode directly. $( '.wp-mail-smtp-wpcode-fallback-install-plugin' ).on( 'click', app.onFallbackInstallClick ); // Card "Install Snippet" (WPCode absent) opens the install-plugin popup. $( '.wp-mail-smtp-wpcode-install-plugin' ).on( 'click', app.openInstallPluginPopup ); // Card "Install Snippet" (WPCode installed but inactive) activates WPCode, then installs. $( '.wp-mail-smtp-wpcode-activate-plugin' ).on( 'click', app.onActivatePluginClick ); // "View" opens the code-preview modal. $( '.wp-mail-smtp-wpcode-view-snippet' ).on( 'click', app.openViewSnippetModal ); // Active-state "Install Snippet" shows an installing state before navigating to WPCode. $( '.wp-mail-smtp-wpcode-install-snippet' ).on( 'click', app.installSnippet ); $( '#wp-mail-smtp-wpcode-snippet-search' ).on( 'keyup search', function() { app.searchSnippet( this ); } ); }, /** * POST to an admin-ajax action with the nonce attached. * * @since 4.9.0 * * @param {string} action admin-ajax action name. * @param {object} extra Action-specific fields merged into the request. * * @returns {object} The jQuery jqXHR promise. */ post: function( action, extra ) { var data = $.extend( { action: action, nonce: window.wp_mail_smtp.nonce, }, extra || {} ); return $.post( window.wp_mail_smtp.ajax_url, data ); }, /** * Enter the installing state: hide the badge/label and overlay a spinner * on the button (CSS keeps the button width). * * @since 4.9.0 * * @param {object} $label Badge or "installing" label element. * @param {object} $button Action button element. */ setInstalling: function( $label, $button ) { $label.addClass( 'wp-mail-smtp-wpcode-installing-in-progress' ).text( window.wp_mail_smtp_code_snippets.installing_text ); $button.addClass( 'wp-mail-smtp-btn-loading' ); }, /** * Leave the installing state (used when a flow fails and the UI stays put). * * @since 4.9.0 * * @param {object} $label Badge or "installing" label element. * @param {object} $button Action button element. */ clearInstalling: function( $label, $button ) { $label.removeClass( 'wp-mail-smtp-wpcode-installing-in-progress' ).text( '' ); $button.removeClass( 'wp-mail-smtp-btn-loading' ); }, /** * Filter the snippet grid against the search field value. * * @since 4.9.0 * * @param {object} searchField The search field HTML element. */ searchSnippet: function( searchField ) { var searchTerm = $( searchField ).val(); var searchResults = app.snippetSearch.search( searchTerm ); var $noResults = $( '#wp-mail-smtp-wpcode-no-results' ); if ( searchResults.length === 0 ) { $noResults.show(); } else { $noResults.hide(); } }, /** * Active-state "Install Snippet": show an installing state, then let the * link navigate to WPCode's install screen (perceived-load only, no AJAX). * * @since 4.9.0 */ installSnippet: function() { var $button = $( this ); // Edit is a plain navigation to the WPCode edit screen; no JS needed. if ( $button.data( 'action' ) === 'edit' ) { return; } app.setInstalling( $button.closest( '.wp-mail-smtp-wpcode-snippet' ).find( '.wp-mail-smtp-wpcode-snippet-badge' ), $button ); }, /** * Card "Install Snippet" when WPCode is installed but inactive: activate * WPCode, then navigate to the snippet's install URL. On activation * failure, show the activation popup. * * @since 4.9.0 * * @param {object} event The click event. */ onActivatePluginClick: function( event ) { event.preventDefault(); var $button = $( this ); var $badge = $button.closest( '.wp-mail-smtp-wpcode-snippet' ).find( '.wp-mail-smtp-wpcode-snippet-badge' ); app.setInstalling( $badge, $button ); app.activatePluginThenInstallSnippet( $button.data( 'library-id' ), $button.data( 'plugin' ), function() { app.clearInstalling( $badge, $button ); app.showManualActivationPluginPopup(); } ); }, /** * Activate WPCode via AJAX, then resolve the snippet's install URL via a * second AJAX request and navigate there. If activation fails, run the * provided callback; if only the URL lookup fails, reload so the tab * re-renders in its active state. * * @since 4.9.0 * * @param {number} libraryId The snippet library id. * @param {string} plugin WPCode plugin path. * @param {Function} onActivateFail Called when activation fails. */ activatePluginThenInstallSnippet: function( libraryId, plugin, onActivateFail ) { app.post( 'wp_mail_smtp_ajax', { task: 'about_plugin_activate', plugin: plugin } ) .done( function( response ) { if ( ! response || ! response.success ) { onActivateFail(); return; } app.navigateToSnippetInstall( libraryId ); } ) .fail( function() { onActivateFail(); } ); }, /** * Resolve a snippet's WPCode install URL (now that WPCode is active) via * AJAX and navigate to it. Falls back to a reload if the URL can't be * resolved, so the tab still re-renders in its active state. * * @since 4.9.0 * * @param {number} libraryId The snippet library id. */ navigateToSnippetInstall: function( libraryId ) { var extra = {}; extra['library_id'] = libraryId; // eslint-disable-line dot-notation app.post( 'wp_mail_smtp_get_wpcode_snippet_install_url', extra ) .done( function( response ) { if ( response && response.success && response.data && response.data.install_url ) { window.location.href = response.data.install_url; return; } window.location.reload(); } ) .fail( function() { window.location.reload(); } ); }, /** * Install and activate WPCode via AJAX. Runs onDone on full success, or * onError('install') if the install failed / errored, or onError('activate') * if WPCode installed but silent activation failed. * * WP returns logical failures with HTTP 200 + success:false, so a failed * install lands in .done (not .fail) and must be checked explicitly. * * @since 4.9.0 * * @param {string} plugin WPCode download URL. * @param {Function} onDone Called after a successful install + activation. * @param {Function} onError Called with 'install' or 'activate' on failure. */ installAndActivatePlugin: function( plugin, onDone, onError ) { app.post( 'wp_mail_smtp_ajax', { task: 'about_plugin_install', plugin: plugin } ) .done( function( response ) { if ( ! response || ! response.success ) { onError( 'install' ); return; } if ( response.data && response.data.is_activated === false ) { onError( 'activate' ); return; } onDone(); } ) .fail( function() { onError( 'install' ); } ); }, /** * Show the activate-WPCode popup. Its button forwards to the Plugins page * activation action for the installed WPCode plugin. * * @since 4.9.0 */ showManualActivationPluginPopup: function() { var l10n = window.wp_mail_smtp_code_snippets; $.confirm( { title: l10n.activate_popup_title, container: '#wp-mail-smtp', boxWidth: '600px', useBootstrap: false, closeIcon: true, draggable: false, content: '

' + l10n.activate_popup_desc + '

', buttons: { activate: { text: l10n.activate_popup_btn, btnClass: 'btn btn-confirm', action: function( button ) { button.addClass( 'wp-mail-smtp-btn-loading' ); window.location.href = l10n.activate_url; // Keep the popup open so the loader stays visible during navigation. return false; }, }, }, } ); }, /** * Map a snippet code_type to a CodeMirror mode. * * @since 4.9.0 * * @param {string} codeType Snippet code type. * * @returns {string} CodeMirror mode. */ mapMode: function( codeType ) { switch ( codeType ) { case 'js': case 'javascript': return 'javascript'; case 'css': return 'css'; case 'html': return 'htmlmixed'; default: return 'text/x-php'; } }, /** * Open the read-only code-preview modal for a snippet. * * @since 4.9.0 * * @param {object} event The click event. */ openViewSnippetModal: function( event ) { event.preventDefault(); var $btn = $( this ); var libraryId = $btn.data( 'library-id' ); var installUrl = $btn.data( 'install-url' ); var plugin = $btn.data( 'plugin' ); var l10n = window.wp_mail_smtp_code_snippets; // $.dialog has no jconfirm button row (whose styles can't be overridden // cleanly) — the action button is rendered inside our own content. $.dialog( { title: l10n.loading_text, container: '#wp-mail-smtp', boxWidth: '720px', useBootstrap: false, closeIcon: true, draggable: false, content: '
' + l10n.loading_text + '
', onContentReady: function() { this.$el.addClass( 'wp-mail-smtp-wpcode-dialog' ); app.loadSnippetCode( this, libraryId, installUrl, plugin ); }, } ); }, /** * Fetch a snippet's code and render it into an open dialog. * * @since 4.9.0 * * @param {object} dialog The jconfirm dialog instance. * @param {number} libraryId The snippet library id. * @param {string} installUrl WPCode install URL (active state). * @param {string} plugin WPCode download URL (inactive state). */ loadSnippetCode: function( dialog, libraryId, installUrl, plugin ) { var l10n = window.wp_mail_smtp_code_snippets; var error = '
' + l10n.error_text + '
'; var extra = {}; extra['library_id'] = libraryId; // eslint-disable-line dot-notation app.post( 'wp_mail_smtp_get_wpcode_snippet_code', extra ) .done( function( response ) { if ( ! response || ! response.success || ! response.data ) { dialog.setContent( error ); return; } dialog.setTitle( response.data.title ); var $content = $( '
' ); var $codeWrap = $( '
' ); var $textarea = $( '' ).val( response.data.code ); var $footer = $( '' ); var $installing = $( '' ); var $action = $( '' ).text( l10n.install_text ); $codeWrap.append( $textarea ); $footer.append( $installing ).append( $action ); $content.append( $codeWrap ).append( $footer ); if ( response.data.note ) { $content.prepend( $( '
' ).text( response.data.note ) ); } dialog.setContent( $content ); app.initEditor( $textarea[ 0 ], response.data.code_type ); app.bindModalInstall( dialog, libraryId, installUrl, plugin, $action, $installing ); } ) .fail( function() { dialog.setContent( error ); } ); }, /** * Wire the preview modal's "Install Snippet" button to the right action for * the current WPCode state (active, installed-inactive, or absent). * * @since 4.9.0 * * @param {object} dialog The jconfirm dialog instance. * @param {number} libraryId The snippet library id. * @param {string} installUrl WPCode install URL (active state). * @param {string} plugin WPCode download URL (WPCode-absent branch). * @param {object} $action The modal action button. * @param {object} $installing The modal "installing" text element. */ bindModalInstall: function( dialog, libraryId, installUrl, plugin, $action, $installing ) { var l10n = window.wp_mail_smtp_code_snippets; $action.on( 'click', function( clickEvent ) { clickEvent.preventDefault(); if ( l10n.wpcode_active ) { if ( installUrl ) { app.setInstalling( $installing, $action ); window.location.href = installUrl; } return; } // WPCode installed but inactive: activate, then install (mirrors the card button). if ( l10n.wpcode_path ) { app.setInstalling( $installing, $action ); app.activatePluginThenInstallSnippet( libraryId, l10n.wpcode_path, function() { app.clearInstalling( $installing, $action ); dialog.close(); app.showManualActivationPluginPopup(); } ); return; } dialog.close(); app.showInstallPluginPopup( plugin, libraryId ); } ); }, /** * Initialize CodeMirror on a textarea, with a plain-text fallback. * * @since 4.9.0 * * @param {HTMLElement} textarea The textarea element. * @param {string} codeType Snippet code type. */ initEditor: function( textarea, codeType ) { var l10n = window.wp_mail_smtp_code_snippets; if ( ! window.wp || ! window.wp.codeEditor || ! l10n.code_editor ) { // Syntax highlighting unavailable (user profile setting): leave the // textarea as a plain read-only code box. $( textarea ).prop( 'readonly', true ); return; } var settings = $.extend( true, {}, l10n.code_editor ); settings.codemirror = $.extend( {}, settings.codemirror, { mode: app.mapMode( codeType ), readOnly: true, lineNumbers: true, } ); window.wp.codeEditor.initialize( textarea, settings ); }, /** * Card "Install Snippet" (WPCode absent): open the install-plugin popup. * * @since 4.9.0 * * @param {object} event The click event. */ openInstallPluginPopup: function( event ) { event.preventDefault(); app.showInstallPluginPopup( $( this ).data( 'plugin' ), $( this ).data( 'library-id' ) ); }, /** * Show the install-plugin popup. Its button installs + activates WPCode, * then navigates to the chosen snippet's install URL. * * @since 4.9.0 * * @param {string} plugin WPCode download URL. * @param {number} libraryId The snippet library id. */ showInstallPluginPopup: function( plugin, libraryId ) { var l10n = window.wp_mail_smtp_code_snippets; // $.dialog (no jconfirm button row) so the icon row, title, description, // CTA, and link render as one centered content block per the design. $.dialog( { title: '', container: '#wp-mail-smtp', boxWidth: '550px', useBootstrap: false, closeIcon: true, draggable: false, content: app.installPopupHtml( l10n ), // The scoped modal styles key off these classes. jQuery-Confirm v3.3.4 // has no containerClass option, so add them in onOpenBefore: it is the // earliest hook where $el exists and it fires before the open animation // reveals the box, so the modal paints styled on first render. onOpenBefore: function() { this.$el.addClass( 'wp-mail-smtp-wpcode-dialog wp-mail-smtp-wpcode-install-dialog' ); }, onContentReady: function() { var dialog = this; dialog.$content.find( '.wp-mail-smtp-wpcode-install-modal-btn' ).on( 'click', function( event ) { event.preventDefault(); var $btn = $( this ); if ( $btn.hasClass( 'wp-mail-smtp-btn-loading' ) ) { return; } $btn.addClass( 'wp-mail-smtp-btn-loading' ); dialog.$content.find( '.wp-mail-smtp-wpcode-modal-error' ).remove(); app.installAndActivatePlugin( plugin, function() { app.navigateToSnippetInstall( libraryId ); }, function( reason ) { $btn.removeClass( 'wp-mail-smtp-btn-loading' ); dialog.$content.append( app.modalErrorHtml( reason ) ); } ); } ); }, } ); }, /** * Build the install-WPCode popup body: an icon row, a two-line title and * description, the install CTA, and a "learn more" link. * * @since 4.9.0 * * @param {object} l10n Localized strings and URLs. * * @returns {string} The popup body markup. */ installPopupHtml: function( l10n ) { return '
' + '' + '
' + l10n.install_popup_title + '
' + '
' + l10n.install_popup_desc + '
' + '' + '' + l10n.learn_more_text + '' + '
'; }, /** * Build the inline error shown in the install/activate confirm dialog on * failure: a message plus a manual-fallback link (activation URL for * activation failures). * * @since 4.9.0 * * @param {string} reason 'install' or 'activate'. * * @returns {object} jQuery element for the error paragraph. */ modalErrorHtml: function( reason ) { var l10n = window.wp_mail_smtp_code_snippets; var $error = $( '

' ); // Install failure: message only. A plugin-directory search link is // fragile (it can surface the wrong plugin), so we don't offer one. if ( reason !== 'activate' ) { return $error.text( l10n.install_error_text ); } // Activation failure: WPCode is installed, so link to its exact // activation URL. return $error .text( l10n.activate_error_text + ' ' ) .append( $( '' ) .attr( 'href', l10n.lite_activate_url ) .text( l10n.activate_manual_link ) ); }, /** * Fallback overlay button: install (or activate) WPCode directly, then * reload so the tab re-renders with live snippet data. * * @since 4.9.0 * * @param {object} event The click event. */ onFallbackInstallClick: function( event ) { if ( event && typeof event.preventDefault === 'function' ) { event.preventDefault(); } var $btn = $( this ); if ( $btn.hasClass( 'disabled' ) ) { return; } // Lock the width, hide the label, and disable while the request runs. $btn.width( $btn.width() ).text( '' ).addClass( 'disabled' ); var task = $btn.data( 'action' ) === 'activate' ? 'about_plugin_activate' : 'about_plugin_install'; app.post( 'wp_mail_smtp_ajax', { task: task, plugin: $btn.data( 'plugin' ) } ) .done( function() { window.location.reload(); } ); }, }; return app; }( document, window, jQuery ) ); WPMailSMTP.Admin.CodeSnippets.init(); Uncategorized – Oleg V. Pavlov http://www.olegpavlov.org Sun, 20 Oct 2024 22:42:48 +0000 en hourly 1 https://wordpress.org/?v=6.6.8 http://www.olegpavlov.org/wp-content/uploads/2022/01/cropped-pavlov-6-32x32.jpg Uncategorized – Oleg V. Pavlov http://www.olegpavlov.org 32 32 AI and the Transformation of Higher Education Institutions http://www.olegpavlov.org/ai-and-the-transformation-of-higher-education-institutions/ Thu, 17 Oct 2024 00:49:50 +0000 http://www.olegpavlov.org/?p=858 This article develops a causal model that explains AI transformation in a university. We identify important variables and their relationships and map multiple reinforcing and balancing feedback loops accounting for the forces that drive the AI transformation and their impact on value creation in a typical higher education institution.

Publication

Katsamakas, E., Pavlov, O. V., and R. Saklad. ”Artificial Intelligence and the Transformation of Higher Education Institutions: A Systems Approach.” Sustainability, 16 (14), 2024: 6118.

]]>
Feedback Economics http://www.olegpavlov.org/feedback-economics/ Tue, 18 Jan 2022 02:06:45 +0000 http://www.olegpavlov.org/?p=539

This book examines economic problems from the systems thinking and feedback perspectives. By using system dynamics methods and computer simulation models, the contributors apply feedback analysis and dynamic simulation modeling to local, national, and global economic issues and concerns.

More at Springer


]]>
Violent Radicalization: A Systems Perspective http://www.olegpavlov.org/violent-radicalization/ Fri, 21 Jan 2022 15:55:30 +0000 http://www.olegpavlov.org/?p=535 These articles examine from the systems perspective root causes of violent radicalization, its profiles, contingencies and how to counter it.

Publications:
Clancy, T., B. Addison, O.V. Pavlov, E. Palmer, and K. Saeed. ”Systemic Innovation for Countering Violent Radicalization: Systems Engineering in a Policy Context.” Systems Engineering, 27(4), 2024: 663-684..

Clancy, T., B. Addison, O.V. Pavlov, and K. Saeed. ”Root Causes of Radicalization: The Terror Contagion Hypothesis.” System Dynamics Review, 40(1), 2024: e1749.

Clancy, T., B. Addison, O.V. Pavlov, and K. Saeed. “Contingencies of Violent Radicalization: The Terror Contagion Simulation.” Systems, 9(4), 2021: 90.



]]>
Unsanctioned Music Sharing on Peer-to-Peer Networks http://www.olegpavlov.org/unsanctioned-music-sharing-on-peer-to-peer-networks/ Sat, 13 Aug 2022 14:58:56 +0000 http://www.olegpavlov.org/?p=782

A new technology in the early 2000s, peer-to-peer (P2P) networks made massive unsanctioned music exchange possible, which had a profound effect on the recording industry. Record labels responded to the emergence of online music-sharing networks with litigation and “self-help measures.” This project adds to our understanding of the conflict within the commercial music industry. We conduct an institutional analysis of the conflict by extending pattern modeling with a formal resource-based model of a representative P2P network. To build the model, we use the system dynamics methodology. The model accounts for complex causal interactions between resources such as bandwidth and music files, private provision of common goods, free-riding, and membership dynamics. In a series of experiments that emulate the offensive against music-sharing networks, our analysis shows that due to the feedback effects, P2P systems might be quite resilient to outside attempts to disrupt them through technical or legal means. The experiments also demonstrate that policies against unsanctioned music exchanges on P2P networks rank differently in their effectiveness based on a selected yardstick.

Publications and presentations:
Pavlov, O. “Dynamic Analysis of an Institutional Conflict: Copyright Owners against Online File Sharing.” Journal of Economic Issues. v.39 (3), 2005: 633-663.

Pavlov, O. and K. Saeed, “A Resource-Based Analysis of Peer-to-Peer Technology.” System Dynamics Review. v.20 (3), 2004: 237-262.

Pavlov, O. “Dynamic analysis of an institutional conflict within the music industry.” 11th International Conference on Computing in Economics and Finance. Washington, DC. June 23-25, 2005.

Pavlov, O. “A Dynamic Analysis of an Institutional Conflict Induced by Online Music Swapping.” International System Dynamics Conference. Oxford, U.K., July 25-29, 2004.

Pavlov, O. “Analysis of an Intra-Institutional Conflict Within the Recording Industry.” Invited lecture. Sree Narayana Guru Institute of Science and Technology (SNGIST). Thekethazham, Kerala State, India. January 5, 2004.

Pavlov, O. and K. Saeed. “Growth and Development in a Virtual World of P2P.” Conference on Economic Behavior and Organization. Sponsored by the USC Center in Law, Economics and Organization, the JEBO, the USC Center for the Study of Law and Politics, and the USC Letters Arts and Sciences. April 26-27, 2003. University of Southern California Law School. Los Angeles, USA.

Pavlov, O. “A Resource-Based Assessment of the P2P Technology.” International Conference on Information Systems (ICIS 2003). Seattle, WA, December 15, 2003.

]]>