32 lines
866 B
TypeScript
32 lines
866 B
TypeScript
import React, { Fragment } from 'react';
|
|
import { connectionStatus } from '../../constants/leadinConfig';
|
|
import ConnectPluginBanner from '../Common/ConnectPluginBanner';
|
|
import ElementorMeetingSelect from './ElementorMeetingSelect';
|
|
import { IMeetingAttributes } from './registerMeetingWidget';
|
|
|
|
const ConnectionStatus = {
|
|
Connected: 'Connected',
|
|
NotConnected: 'NotConnected',
|
|
};
|
|
|
|
export default function MeetingControlController(
|
|
attributes: IMeetingAttributes,
|
|
setValue: Function
|
|
) {
|
|
return () => {
|
|
const render = () => {
|
|
if (connectionStatus === ConnectionStatus.Connected) {
|
|
return (
|
|
<ElementorMeetingSelect
|
|
url={attributes.url}
|
|
setAttributes={setValue}
|
|
/>
|
|
);
|
|
} else {
|
|
return <ConnectPluginBanner />;
|
|
}
|
|
};
|
|
return <Fragment>{render()}</Fragment>;
|
|
};
|
|
}
|