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-button-read-more / 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-button-read-more/edit.js

95 lines 2.4 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 {
3 PanelBody,
4 __experimentalToggleGroupControl as ToggleGroupControl,
5 __experimentalToggleGroupControlOption as ToggleGroupControlOption,
6 } from '@wordpress/components';
7
8 import {
9 useBlockProps,
10 BlockControls,
11 InspectorControls,
12 AlignmentToolbar,
13 JustifyToolbar,
14 BlockVerticalAlignmentToolbar,
15 } from '@wordpress/block-editor';
16
17 const Edit = ( props ) => {
18 const { attributes, setAttributes, context } = props;
19 const blockProps = useBlockProps( {
20 style: {
21 textAlign: attributes.textAlign,
22 width: '100%',
23 },
24 } );
25
26 const mapAlignItems = {
27 top: 'flex-start',
28 center: 'center',
29 bottom: 'flex-end',
30 };
31
32 let classOfDiv = blockProps.className;
33 classOfDiv = classOfDiv
34 .split( ' ' )
35 .filter( ( cls ) => cls.startsWith( 'align' ) )
36 .join( ' ' );
37 return (
38 <>
39 <BlockControls>
40 <AlignmentToolbar
41 value={ attributes.textAlign }
42 onChange={ ( newAlign ) => setAttributes( { textAlign: newAlign } ) }
43 />
44 <JustifyToolbar
45 value={ attributes.justifyContent }
46 onChange={ ( newJustify ) => setAttributes( { justifyContent: newJustify } ) }
47 />
48 <BlockVerticalAlignmentToolbar
49 value={ attributes.alignItems }
50 onChange={ ( newAlign ) => setAttributes( { alignItems: newAlign } ) }
51 />
52 </BlockControls>
53 <InspectorControls>
54 <PanelBody title={ __( 'Settings', 'learnpress' ) }>
55 <ToggleGroupControl
56 label={ __( 'Width', 'learnpress' ) }
57 value={ attributes.width || '100' }
58 onChange={ ( value ) => {
59 setAttributes( {
60 width: value || '100',
61 } );
62 } }
63 isBlock={ true }
64 >
65 <ToggleGroupControlOption value="25" label="25%" />
66 <ToggleGroupControlOption value="50" label="50%" />
67 <ToggleGroupControlOption value="75" label="75%" />
68 <ToggleGroupControlOption value="100" label="100%" />
69 </ToggleGroupControl>
70 </PanelBody>
71 </InspectorControls>
72 <div
73 class="course-button-read-more"
74 className={ classOfDiv }
75 style={ {
76 display: 'flex',
77 textAlign: attributes.textAlign,
78 alignItems: mapAlignItems[ attributes.alignItems ] || 'flex-start',
79 justifyContent: attributes.justifyContent,
80 } }
81 >
82 <a
83 style={ {
84 width: attributes.width ? `${ attributes.width }%` : undefined,
85 } }
86 >
87 <button { ...blockProps }>{ __( 'Read more', 'learnpress' ) }</button>
88 </a>
89 </div>
90 </>
91 );
92 };
93
94 export default Edit;
95