index.tsx
39 lines
| 1 | import {SelectControl} from '@wordpress/components'; |
| 2 | |
| 3 | import './styles.scss'; |
| 4 | |
| 5 | /** |
| 6 | * @since 4.0.0 |
| 7 | */ |
| 8 | export default ({label, options, onChange, value}: GridLayoutProps) => { |
| 9 | |
| 10 | const index = options.findIndex((option) => value === option.value); |
| 11 | |
| 12 | return ( |
| 13 | <> |
| 14 | <div className="give-campaign-components-gridLayout"> |
| 15 | <div className="give-campaign-components-gridLayout__columns"> |
| 16 | {Array(index + 1).fill(<div className="give-campaign-components-gridLayout__columns-item"></div>)} |
| 17 | </div> |
| 18 | </div> |
| 19 | |
| 20 | <SelectControl |
| 21 | label={label} |
| 22 | value={value} |
| 23 | onChange={(selected: string) => onChange(selected)} |
| 24 | options={options} |
| 25 | /> |
| 26 | </> |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | interface GridLayoutProps { |
| 31 | label: string; |
| 32 | value: string; |
| 33 | options: { |
| 34 | value: string, |
| 35 | label: string |
| 36 | }[], |
| 37 | onChange: (value: string) => void, |
| 38 | } |
| 39 |