File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/public_html/wp-content/plugins/easy-google-fonts/src/scripts/admin/store/actions.js
// WordPress dependencies.
import { apiFetch } from '@wordpress/data-controls';

/**
 * Font Control Actions
 */

// Hydrate
export const hydrateFontControls = fontControls => {
  return {
    type: 'HYDRATE_FONT_CONTROLS',
    payload: { fontControls }
  };
};

/**
 * Create Font Control
 *
 * @param {string} name Name of font control.
 * @param {array} selectors CSS selectors.
 * @param {boolean} forceStyles Force the !important css rule.
 * @param {string} description Description used in the customizer interface.
 * @param {number} minAmount Min screen media query amount.
 * @param {string} minUnit Min screen media query unit.
 */
export function* createFontControl({
  name,
  selectors,
  forceStyles,
  description,
  minAmount,
  minUnit,
  maxAmount,
  maxUnit
}) {
  const path = '/wp/v2/easy-google-fonts';
  const fontControl = yield apiFetch({
    path,
    method: 'POST',
    data: {
      title: name,
      status: 'publish',
      meta: {
        control_selectors: selectors,
        control_description: description,
        force_styles: forceStyles,
        min_screen_amount: minAmount || 0,
        min_screen_unit: minUnit,
        max_screen_amount: maxAmount || 0,
        max_screen_unit: maxUnit
      }
    }
  });

  return {
    type: 'CREATE_FONT_CONTROL',
    payload: {
      id: fontControl.id,
      fontControl
    }
  };
}

/**
 * Update Font Control
 *
 * @param {string} name Name of font control.
 * @param {array} selectors CSS selectors.
 * @param {boolean} forceStyles Force the !important css rule.
 * @param {string} description Description used in the customizer interface.
 */
export function* updateFontControl({
  id,
  name,
  selectors,
  forceStyles,
  description,
  minAmount,
  minUnit,
  maxAmount,
  maxUnit
}) {
  const path = `/wp/v2/easy-google-fonts/${id}`;
  const fontControl = yield apiFetch({
    path,
    method: 'POST',
    data: {
      title: name,
      meta: {
        control_selectors: selectors,
        control_description: description,
        force_styles: forceStyles,
        min_screen_amount: minAmount || 0,
        min_screen_unit: minUnit,
        max_screen_amount: maxAmount || 0,
        max_screen_unit: maxUnit
      }
    }
  });

  return {
    type: 'UPDATE_FONT_CONTROL',
    payload: {
      id: fontControl.id,
      fontControl
    }
  };
}

/**
 * Update Font Controls Force Styles
 * @param {*} id
 */
export function* updateFontControlForceStyles({ id, forceStyles }) {
  const path = `/wp/v2/easy-google-fonts/${id}`;

  const fontControl = yield apiFetch({
    path,
    method: 'POST',
    data: {
      meta: {
        force_styles: forceStyles
      }
    }
  });

  return {
    type: 'UPDATE_FONT_CONTROL_FORCE_STYLES',
    payload: { id, fontControl }
  };
}

/**
 * Delete Font Control
 * @param {int} id Post ID of the font control to delete.
 */
export function* deleteFontControl(id) {
  const path = `/wp/v2/easy-google-fonts/${id}`;
  const deleteFontControl = yield apiFetch({ path, method: 'DELETE' });

  return {
    type: 'DELETE_FONT_CONTROL',
    payload: { id, deleteFontControl }
  };
}

/**
 * Delete All Font Controls
 */
export function* deleteAllFontControls() {
  const path = '/easy-google-fonts/v1/font_controls';
  const completed = yield apiFetch({ path, method: 'DELETE' });

  return {
    type: 'DELETE_ALL_FONT_CONTROLS',
    payload: { completed }
  };
}

/**
 * API Key Actions
 */
export const hydrateApiKey = apiKey => {
  return {
    type: 'HYDRATE_API_KEY',
    payload: { apiKey }
  };
};

export function* updateApiKey(apiKey) {
  const path = '/easy-google-fonts/v1/api_key';

  yield apiFetch({
    path,
    method: 'POST',
    data: {
      api_key: apiKey
    }
  });

  return {
    type: 'UPDATE_API_KEY',
    payload: {
      apiKey
    }
  };
}