Skip to content

Commit

Permalink
Merge pull request #19734 from ramonlsouza/issue-19180
Browse files Browse the repository at this point in the history
fix: Download presentation popup window is broken
  • Loading branch information
ramonlsouza committed Mar 6, 2024
2 parents ca7c2d1 + f6b2d27 commit 361717c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ class Presentation extends PureComponent {
numPages,
currentPresentationId,
fitToWidth,
downloadPresentationUri,
} = this.props;
const {
presentationWidth,
Expand Down Expand Up @@ -258,8 +259,9 @@ class Presentation extends PureComponent {
);

if (
prevProps?.currentPresentation?.id !== currentPresentation.id ||
(downloadableOn && !userIsPresenter)
prevProps?.currentPresentation?.id !== currentPresentation.id
|| prevProps?.downloadPresentationUri !== downloadPresentationUri
|| (downloadableOn && !userIsPresenter)
) {
if (this.currentPresentationToastId) {
toast.update(this.currentPresentationToastId, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,15 @@ export default lockContextContainer(
}
}
const currentPresentation = PresentationService.getCurrentPresentation(podId);

const downloadPresentationUri = currentPresentation
? `${APP_CONFIG.bbbWebBase}/${currentPresentation?.originalFileURI}`
: null;

return {
currentSlide,
slidePosition,
downloadPresentationUri: PresentationService.downloadPresentationUri(podId),
downloadPresentationUri,
multiUser:
(WhiteboardService.hasMultiUserAccess(currentSlide && currentSlide.id, Auth.userID)
|| WhiteboardService.isMultiUserActive(currentSlide?.id)
Expand Down
12 changes: 0 additions & 12 deletions bigbluebutton-html5/imports/ui/components/presentation/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,12 @@ import { safeMatch } from '/imports/utils/string-utils';
const POLL_SETTINGS = Meteor.settings.public.poll;
const MAX_CUSTOM_FIELDS = POLL_SETTINGS.maxCustom;
const MAX_CHAR_LIMIT = POLL_SETTINGS.maxTypedAnswerLength;
const APP = Meteor.settings.public.app;

const getCurrentPresentation = (podId) => Presentations.findOne({
podId,
current: true,
});

const downloadPresentationUri = (podId) => {
const currentPresentation = getCurrentPresentation(podId);
if (!currentPresentation) {
return null;
}

const { originalFileURI: uri } = currentPresentation;
return `${APP.bbbWebBase}/${uri}`;
};

const isPresentationDownloadable = (podId) => {
const currentPresentation = getCurrentPresentation(podId);
if (!currentPresentation) {
Expand Down Expand Up @@ -248,7 +237,6 @@ export default {
getCurrentSlide,
getSlidePosition,
isPresentationDownloadable,
downloadPresentationUri,
currentSlidHasContent,
parseCurrentSlideContent,
getCurrentPresentation,
Expand Down

0 comments on commit 361717c

Please sign in to comment.