Skip to content

Commit

Permalink
Merge pull request #18 from britannica/dev
Browse files Browse the repository at this point in the history
Beta Publish
  • Loading branch information
ryanwalters authored Aug 1, 2023
2 parents 4bd7c5b + 34db084 commit 73a8e78
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 58 deletions.
9 changes: 3 additions & 6 deletions src/components/MediaOverlay/MediaOverlayContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,18 +285,17 @@ class MediaOverlayContainer extends Component {
});
}


// --- Sidebar

toggleSidebar() {
this.setState(prevState => ({
this.setState((prevState) => ({
isSidebarVisible: !prevState.isSidebarVisible,
}));
}

toggleSidebarAndControls() {
if (areControlsToggleable()) {
this.setState(prevState => ({
this.setState((prevState) => ({
controlsHidden: !prevState.controlsHidden,
isSidebarVisible: !prevState.isSidebarVisible,
}));
Expand Down Expand Up @@ -345,7 +344,7 @@ class MediaOverlayContainer extends Component {
betweenWidths(ViewportWidth.LG_MIN, ViewportWidth.LG_MAX),
betweenWidths(ViewportWidth.MD_MIN, ViewportWidth.MD_MAX),
],
this.handleBreakpoints
this.handleBreakpoints,
);

onMinWidth(ViewportWidth.LG_MIN, () => this.showSidebarAndControls(true));
Expand Down Expand Up @@ -390,7 +389,6 @@ class MediaOverlayContainer extends Component {
// --- Props

MediaOverlayContainer.propTypes = {
adUrl: PropTypes.string,
assemblies: PropTypes.arrayOf(AssemblyProp).isRequired,
audioComponent: PropTypes.func,
baseHref: PropTypes.string,
Expand Down Expand Up @@ -427,7 +425,6 @@ MediaOverlayContainer.defaultProps = {
className: null,
collapsibleSidebar: false,
generatePrerollUrl: null,
adUrl: null,
locale: Locale['en-us'],
title: '',
videoPlayerId: '',
Expand Down
1 change: 0 additions & 1 deletion src/components/MediaOverlay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ MediaOverlay.propTypes = {

hasMediaStrip: PropTypes.bool,
collapsibleSidebar: PropTypes.bool,
adUrl: PropTypes.string,

// An object with all the labels, or a string specifying the language and region. Accepts: 'en-us', 'pt-br'
locale: PropTypes.oneOfType([PropTypes.shape(), PropTypes.string]),
Expand Down
49 changes: 6 additions & 43 deletions src/components/MediaOverlay/Sidebar/Ad/Ad.js
Original file line number Diff line number Diff line change
@@ -1,50 +1,13 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import withRouter from '../../../../hocs/withRouter';
import React from 'react';
import styles from './Ad.module.scss';

function randomString() {
return Math.random()
.toString(36)
.replace(/[^a-z]+/g, '');
}

class Ad extends Component {
shouldComponentUpdate(nextProps) {
const { previousMediaId } = this.props;
const nextMediaId = nextProps.params.assemblyId;

return nextMediaId !== previousMediaId;
}

render() {
const { adUrl } = this.props;

return (
<div className={styles.Ad}>
<iframe
src={`${adUrl}?${randomString()}`}
title="advertisement"
height="100%"
width="100%"
scrolling="no"
/>
</div>
);
}
}
const Ad = ({ assemblyId }) => (
<div className={styles.Ad} id="media-overlay-ad" data-assembly-id={assemblyId} />
);

Ad.propTypes = {
adUrl: PropTypes.string.isRequired,
previousMediaId: PropTypes.string,

// withRouter props

params: PropTypes.shape().isRequired,
};

Ad.defaultProps = {
previousMediaId: null,
assemblyId: PropTypes.number.isRequired,
};

export default withRouter(Ad);
export default Ad;
2 changes: 1 addition & 1 deletion src/components/MediaOverlay/Sidebar/Ad/Ad.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

.Ad {
margin-bottom: $overlay-gap;
height: 250px;
max-height: 250px;
width: 300px;
}
12 changes: 5 additions & 7 deletions src/components/MediaOverlay/Sidebar/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ function getSidebarPanel(panel, assembly, localeLabels, CaptionPanelAddons, Cite
const Sidebar = () => (
<MediaOverlayContext.Consumer>
{({ overlayProps, overlayState }) => {
const { activeSidebarPanel, isSidebarVisible, localeLabels, assembly, previousMediaId } = overlayState;
const { adUrl, CaptionPanelAddons, CitePanelAddons, EmailPanel, SidebarTools } = overlayProps;
const { activeSidebarPanel, isSidebarVisible, localeLabels, assembly } = overlayState;
const { CaptionPanelAddons, CitePanelAddons, EmailPanel, SidebarTools } = overlayProps;

if (!isSidebarVisible) {
return null;
Expand Down Expand Up @@ -59,11 +59,9 @@ const Sidebar = () => (

{/* Show ads if they're enabled, and if we're on md-lg */}

{adUrl && (
<MediaQuery minWidth={ViewportWidth.LG_MIN}>
<Ad previousMediaId={previousMediaId} adUrl={adUrl} />
</MediaQuery>
)}
<MediaQuery minWidth={ViewportWidth.MD_MIN}>
<Ad />
</MediaQuery>
</div>
);
}}
Expand Down

0 comments on commit 73a8e78

Please sign in to comment.