| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
import { InspectorControls, useBlockProps } from '@wordpress/block-editor'; |
| 3 |
import { PanelBody, ToggleControl } from '@wordpress/components'; |
| 4 |
import { useState, useEffect } from '@wordpress/element'; |
| 5 |
|
| 6 |
const Edit = ( props ) => { |
| 7 |
const blockProps = useBlockProps(); |
| 8 |
const { attributes, setAttributes, context } = props; |
| 9 |
const { lpCourseData } = context; |
| 10 |
const courseLevel = |
| 11 |
lpCourseData?.level || |
| 12 |
'<div class="course-count-level"><span class="course-level">All levels</span></div>'; |
| 13 |
|
| 14 |
return ( |
| 15 |
<> |
| 16 |
<InspectorControls> |
| 17 |
<PanelBody title={ __( 'Settings', 'learnpress' ) }> |
| 18 |
<ToggleControl |
| 19 |
label={ __( 'Show Label', 'learnpress' ) } |
| 20 |
checked={ attributes.showLabel } |
| 21 |
onChange={ ( value ) => { |
| 22 |
setAttributes( { |
| 23 |
showLabel: value, |
| 24 |
} ); |
| 25 |
} } |
| 26 |
/> |
| 27 |
<ToggleControl |
| 28 |
label={ __( 'Show Icon', 'learnpress' ) } |
| 29 |
checked={ attributes.showIcon } |
| 30 |
onChange={ ( value ) => { |
| 31 |
setAttributes( { |
| 32 |
showIcon: value, |
| 33 |
} ); |
| 34 |
} } |
| 35 |
/> |
| 36 |
</PanelBody> |
| 37 |
</InspectorControls> |
| 38 |
<div { ...blockProps }> |
| 39 |
<div className="info-meta-item"> |
| 40 |
<span className="info-meta-left"> |
| 41 |
{ attributes.showIcon && ( |
| 42 |
<span dangerouslySetInnerHTML={ { __html: '<i class="lp-icon-signal"></i>' } } /> |
| 43 |
) } |
| 44 |
{ attributes.showLabel ? 'Level:' : '' } |
| 45 |
</span> |
| 46 |
<span |
| 47 |
className="info-meta-right" |
| 48 |
dangerouslySetInnerHTML={ { |
| 49 |
__html: courseLevel, |
| 50 |
} } |
| 51 |
></span> |
| 52 |
</div> |
| 53 |
</div> |
| 54 |
</> |
| 55 |
); |
| 56 |
}; |
| 57 |
|
| 58 |
export default Edit; |
| 59 |
|