????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/eaabusiness.com/wp-content/themes/zakra/assets/js/meta/components/ |
Upload File : |
import { CheckboxControl, Flex, PanelRow, SelectControl, withFilters, } from '@wordpress/components'; import { applyFilters } from '@wordpress/hooks'; import { __ } from '@wordpress/i18n'; import React from 'react'; import { withMeta } from '../hoc/withMeta'; import { CenteredSidebar, ContainedSidebar, Customizer, LeftSidebar, RightSidebar, StretchedSidebar, } from './Icons'; import { MetaProps } from './types'; const OPTIONS = applyFilters('zakra.meta.general.layout', [ { label: __('Customizer', 'zakra'), icon: Customizer, value: 'customizer', }, { label: __('Left Sidebar', 'zakra'), icon: LeftSidebar, value: 'left', }, { label: __('Right Sidebar', 'zakra'), icon: RightSidebar, value: 'right', }, { label: __('Centered Sidebar', 'zakra'), icon: CenteredSidebar, value: 'centered', }, { label: __('Contained Sidebar', 'zakra'), icon: ContainedSidebar, value: 'contained', }, { label: __('Stretched Sidebar', 'zakra'), icon: StretchedSidebar, value: 'stretched', }, ]) as Array<{ label: string; icon: React.ElementType; value: string; }>; const GeneralPanel = ({ meta, updateMeta }: MetaProps) => { const currentLayout = meta?.zakra_sidebar_layout ?? 'customizer'; return ( <PanelRow> <Flex className="mainFlexbox" direction={'column'}> <p>{__('Layout', 'zakra')}</p> <Flex style={{ flex: 1, flexWrap: 'wrap', gap: 8 }}> {OPTIONS?.map((option) => { const Icon = option.icon; return ( <Flex key={option.value} style={{ width: 'calc(50% - 10px)' }} data-state={ currentLayout === option.value ? 'active' : 'inactive' } onClick={() => { updateMeta?.('zakra_sidebar_layout', option.value); }} > <Icon className={option.value} /> </Flex> ); })} </Flex> <Flex className={'padding-section'} align="baseline"> <p>{__('Remove content padding', 'zakra')}</p> <CheckboxControl checked={meta?.zakra_remove_content_margin} onChange={(val) => { updateMeta?.('zakra_remove_content_margin', val); }} className="checkboxWidth" /> </Flex> <div className="underline" /> <Flex className={'padding-section'} direction={'column'}> <p className="bold" style={{ marginBottom: '4px' }}> {__('Sidebar', 'zakra')} </p> <SelectControl onChange={(value) => { updateMeta?.('zakra_sidebar', value); }} size="__unstable-large" value={meta?.zakra_sidebar} options={[ { label: __('Default', 'zakra'), value: 'default', }, { label: __('Sidebar Right', 'zakra'), value: 'sidebar-right', }, { label: __('Sidebar Left', 'zakra'), value: 'sidebar-left', }, { label: __('Footer One', 'zakra'), value: '1', }, { label: __('Footer Two', 'zakra'), value: '2', }, { label: __('Footer Three', 'zakra'), value: '3', }, { label: __('Footer Four', 'zakra'), value: '4', }, ]} /> </Flex> </Flex> </PanelRow> ); }; export default withMeta(withFilters('ZakraMetaGeneralPanel')(GeneralPanel));