?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/customizer/sync/variables/single/



?? Go up: /home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/customizer/sync/variables

?? Viewing: share-box.js

import {
	applyPrefixFor,
	handleResponsiveSwitch,
	getPrefixFor,
} from '../../helpers'
import { typographyOption } from '../../variables/typography'
import { makeVariablesWithCondition } from '../../helpers/variables-with-conditions'

let prefix = getPrefixFor()

export const getSingleShareBoxVariables = () =>
	prefix === 'single_page'
		? {}
		: {
				...typographyOption({
					id: `${prefix}_share_box_title_font`,
					selector: applyPrefixFor('.ct-share-box .ct-module-title', prefix),
				}),

				[`${prefix}_share_box_title_color`]: {
					selector: applyPrefixFor('.ct-share-box .ct-module-title', prefix),
					variable: 'theme-heading-color',
					type: 'color:default',
				},

				...makeVariablesWithCondition(
					`${prefix}_has_share_box`,
					{
						[`${prefix}_share_box_icon_size`]: {
							selector: applyPrefixFor('.ct-share-box', prefix),
							variable: 'theme-icon-size',
							responsive: true,
							unit: '',
						},

						[`${prefix}_share_box_icons_spacing`]: {
							selector: applyPrefixFor('.ct-share-box', prefix),
							variable: 'items-spacing',
							responsive: true,
							unit: '',
						},

						[`${prefix}_top_share_box_spacing`]: {
							selector: applyPrefixFor('.ct-share-box[data-location="top"]', prefix),
							variable: 'margin',
							responsive: true,
							unit: '',
						},

						[`${prefix}_bottom_share_box_spacing`]: {
							selector: applyPrefixFor('.ct-share-box[data-location="bottom"]', prefix),
							variable: 'margin',
							responsive: true,
							unit: '',
						},
					},

					() => true
				),

				...makeVariablesWithCondition(
					[`${prefix}_has_share_box`, `${prefix}_share_box_type`],
					{
						[`${prefix}_share_items_icon_color`]: [
							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
								variable: 'theme-icon-color',
								type: 'color:default',
							},

							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
								variable: 'theme-icon-hover-color',
								type: 'color:hover',
							},
						],

						[`${prefix}_share_items_border`]: {
							selector: applyPrefixFor('.ct-share-box[data-type="type-1"]', prefix),
							variable: 'theme-border',
							type: 'border',
						},

						[`${prefix}_share_items_icon`]: [
							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
								variable: 'theme-icon-color',
								type: 'color:default',
							},

							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
								variable: 'theme-icon-hover-color',
								type: 'color:hover',
							},
						],

						[`${prefix}_share_box_alignment`]: [
							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
								variable: 'horizontal-alignment',
								responsive: true,
								unit: '',
							},
						],

						[`${prefix}_share_items_background`]: [
							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
								variable: 'background-color',
								type: 'color:default',
							},

							{
								selector: applyPrefixFor('.ct-share-box[data-type="type-2"]', prefix),
								variable: 'background-hover-color',
								type: 'color:hover',
							},
						],
					},

					(values) => {
						let share_box_type = values[`${prefix}_share_box_type`]
						let has_share_box = values[`${prefix}_has_share_box`]

						if (has_share_box !== 'yes') {
							return false
						}

						if (share_box_type !== 'type-1') {
							// return false
						}

						return true
					}
				),
		  }


??

??