HEX
Server: LiteSpeed
System: Linux server240.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: creaqbdc (8964)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/creaqbdc/public_html/wp-content/plugins/essential-blocks/src/global-styles/index.js
/**
 * WordPress Dependencies
 */
import {
    select,
    subscribe,
    dispatch
} from '@wordpress/data';

/**
 * Register Essential Block Global Controls Panel
 */
import { registerPlugin } from '@wordpress/plugins';

import EBGlobalControls from "./controls";
import EBIcon from "./assets/icon"

//Import Constants
import {
    globalColorKey,
    customColorKey,
    gradientColorKey,
    customGradientColorKey,
    globalTypoKey
} from "../store/constant"
import { getGlobalSettings } from "../helpers/helpers"
import { updateGlobalStyle } from '../helpers/fetch';


/**
 * Save Global Values on Save Page/Post
 */
// subscribe(() => {
//     const isSavingPost = select('core/editor').isSavingPost();
//     const isAutosavingPost = select('core/editor').isAutosavingPost();

//     const ebIsSaving = select('essential-blocks').getIsSaving()

//     if (!ebIsSaving || isAutosavingPost || !isSavingPost) {
//         return;
//     }

//     const globals = getGlobalSettings(select)
//     const allData = {
//         [globalColorKey]: globals?.getGlobalColors,
//         [customColorKey]: globals?.getCustomColors,
//         [gradientColorKey]: globals?.getGradientColors,
//         [customGradientColorKey]: globals?.getCustomGradientColors,
//         [globalTypoKey]: globals?.getGlobalTypography
//     }

//     let response = updateGlobalStyle(allData);

//     //setIsSaving to 'false' so that 'updateGlobalStyle' won't run multiple times
//     dispatch('essential-blocks').setIsSaving(false)
// });



/**
 * Register EB Global Controls Slotfill
 */
registerPlugin(
    'eb-global-controls',
    {
        icon: EBIcon,
        render: EBGlobalControls,
    }
);