PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / assets / src / apps / js / blocks / course-elements / course-delivery / edit.js

edit.js in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.8, at assets/src/apps/js/blocks/course-elements/course-delivery/edit.js

58 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 courseDelivery = '<span class="course-deliver-type">Private 1-1</span>';
11
12 return (
13 <>
14 <InspectorControls>
15 <PanelBody title={ __( 'Settings', 'learnpress' ) }>
16 <ToggleControl
17 label={ __( 'Show Label', 'learnpress' ) }
18 checked={ attributes.showLabel }
19 onChange={ ( value ) => {
20 setAttributes( {
21 showLabel: value,
22 } );
23 } }
24 />
25 <ToggleControl
26 label={ __( 'Show Icon', 'learnpress' ) }
27 checked={ attributes.showIcon }
28 onChange={ ( value ) => {
29 setAttributes( {
30 showIcon: value,
31 } );
32 } }
33 />
34 </PanelBody>
35 </InspectorControls>
36
37 <div { ...blockProps }>
38 <div className="info-meta-item">
39 <span className="info-meta-left">
40 { attributes.showIcon && (
41 <span dangerouslySetInnerHTML={ { __html: '<i class="lp-icon-bookmark-o"></i>' } } />
42 ) }
43 { attributes.showLabel ? __( 'Delivery type:', 'learnpress' ) : '' }
44 </span>
45 <span
46 className="info-meta-right"
47 dangerouslySetInnerHTML={ {
48 __html: courseDelivery,
49 } }
50 ></span>
51 </div>
52 </div>
53 </>
54 );
55 };
56
57 export default Edit;
58