🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-06 17:55:08 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
easy-accordion-free
/
src
/
components
/
border
📍 /home/eliteewa/public_html/wp-content/plugins/easy-accordion-free/src/components/border
🔄 Refresh
✏️
Editing: flatBorder.js
Writable
import { __ } from "@wordpress/i18n"; import { useState } from "@wordpress/element"; import { Spacing, ButtonGroup, ColorPicker } from "@easy-accordion/components"; import { borderStyles } from "@easy-accordion/constants"; import "./editor.scss"; const FlatBorder = ({ attributes, attributesKey, setAttributes, defaultValue = { unit: "px", value: { top: "0", right: "0", bottom: "0", left: "0", }, }, showColorPicker = true, }) => { const { border, borderWidth } = attributes; const [activeState, setActiveState] = useState("color"); const borderColor = (newColor) => { setAttributes({ [attributesKey.border]: { ...attributes?.border, [activeState]: newColor, }, }); }; const borderOptions = { color: "Default", hoverColor: "Hover", activeColor: "Active", }; const borderColorOptions = Object.entries(borderOptions).reduce( (acc, [key, label]) => (key === "color" || key in border ? [...acc, { label, value: key }] : acc), [] ); return ( <div className="sp-eab-border-component"> <ButtonGroup label={false} attributes={border?.style} items={borderStyles} onClick={(newStyle) => { setAttributes({ [attributesKey.border]: { ...attributes.border, style: newStyle, }, }); }} /> <Spacing label={__("Border Width", "easy-accordion-free")} attributes={borderWidth} attributesKey={attributesKey.borderWidth} setAttributes={setAttributes} defaultValue={defaultValue} /> {/* Border Color */} {showColorPicker && ( <> {borderColorOptions?.length > 1 && ( <ButtonGroup label={false} attributes={activeState} items={borderColorOptions} onClick={(value) => setActiveState(value)} /> )} <ColorPicker label={__("Border Color", "easy-accordion-free")} value={border[activeState]} onChange={borderColor} /> </> )} </div> ); }; export default FlatBorder;
💾 Save Changes
❌ Cancel