PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.61
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.61
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / gutenberg / MeetingsBlock / MeetingSaveBlock.tsx

MeetingSaveBlock.tsx in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.3.61, at scripts/gutenberg/MeetingsBlock/MeetingSaveBlock.tsx

24 lines 614 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React from 'react';
2 import { RawHTML } from '@wordpress/element';
3 import { IMeetingBlockAttributes } from './registerMeetingBlock';
4
5 import useCustomCssBlockProps from '../Common/useCustomCssBlockProps';
6
7 const DefaultCssClasses = 'wp-block-leadin-hubspot-meeting-block';
8
9 export default function MeetingSaveBlock({
10 attributes,
11 }: IMeetingBlockAttributes) {
12 const { url } = attributes;
13 const blockProps = useCustomCssBlockProps(DefaultCssClasses);
14
15 if (url) {
16 return (
17 <RawHTML
18 {...blockProps}
19 >{`[hubspot url="${url}" type="meeting"]`}</RawHTML>
20 );
21 }
22 return null;
23 }
24