bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/smart-video-share/component.jsx

92 lines
2.4 KiB
React
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { defineMessages } from 'react-intl';
import { safeMatch } from '/imports/utils/string-utils';
import { isUrlValid } from '/imports/ui/components/external-video-player/service';
import BBBMenu from '/imports/ui/components/common/menu/component';
import Styled from './styles';
const intlMessages = defineMessages({
externalVideo: {
id: 'app.smartMediaShare.externalVideo',
},
});
const createAction = (url, startWatching) => {
const hasHttps = url?.startsWith('https://');
const finalUrl = hasHttps ? url : `https://${url}`;
const label = hasHttps ? url?.replace('https://', '') : url;
if (isUrlValid(finalUrl)) {
return {
label,
onClick: () => startWatching(finalUrl),
};
}
};
2024-06-11 21:05:08 +08:00
export const SmartMediaShare = ({
currentSlide = undefined,
intl,
isMobile,
isRTL,
startWatching,
}) => {
const linkPatt = /(https?:\/\/.*?)(?=\s|$)/g;
const externalLinks = safeMatch(linkPatt, currentSlide?.content?.replace(/[\r\n]/g, ' '), false);
if (!externalLinks) return null;
const actions = [];
externalLinks?.forEach((l) => {
const action = createAction(l, startWatching);
if (action) actions.push(action);
});
if (actions?.length === 0) return null;
const customStyles = { top: '-1rem' };
return (
<BBBMenu
customStyles={!isMobile ? customStyles : null}
trigger={(
<Styled.QuickVideoButton
role="button"
label={intl.formatMessage(intlMessages.externalVideo)}
2023-07-26 02:05:00 +08:00
color="primary"
circle
icon="external-video"
size="md"
onClick={() => null}
hideLabel
/>
)}
actions={actions}
opts={{
id: 'external-video-dropdown-menu',
keepMounted: true,
transitionDuration: 0,
elevation: 3,
2023-05-10 09:31:48 +08:00
getcontentanchorel: null,
fullwidth: 'true',
anchorOrigin: { vertical: 'top', horizontal: isRTL ? 'right' : 'left' },
transformOrigin: { vertical: 'bottom', horizontal: isRTL ? 'right' : 'left' },
}}
/>
);
};
export default SmartMediaShare;
SmartMediaShare.propTypes = {
currentSlide: PropTypes.shape({
content: PropTypes.string.isRequired,
}),
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
isMobile: PropTypes.bool.isRequired,
isRTL: PropTypes.bool.isRequired,
};