Sindbad~EG File Manager
import { getFirstLevelOptions } from '../../options/helpers/get-value-from-input'
export const getAttributesFromOptions = (options) => {
return Object.entries(getFirstLevelOptions(options)).reduce((acc, item) => {
const blocksyType = item[1].type
let type = 'string'
if (blocksyType === 'ct-number') {
type = 'number'
}
if (blocksyType === 'ct-image-uploader') {
type = 'object'
}
if (blocksyType === 'ct-checkboxes') {
type = 'object'
}
if (blocksyType === 'ct-layers') {
type = 'array'
}
acc[item[0]] = {
type,
default: item[1].value,
}
return acc
}, {})
}
export const getDefaultsFromOptions = (options) => {
const attributes = getAttributesFromOptions(options)
return Object.entries(attributes).reduce((acc, item) => {
acc[item[0]] = item[1].default
return acc
}, {})
}
export const getOptionsForBlock = (blockName) => {
return (
(window.ct_localizations || window.ct_customizer_localizations)
?.gutenberg_blocks_data?.[blockName] || []
)
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists