Overlay develop feature (#71)

Thanks again @Steague
This commit is contained in:
Sean Teague
2020-06-17 10:25:21 +02:00
committed by GitHub
parent 9169c132fe
commit 76ec5ba9e6
4 changed files with 95 additions and 45 deletions

3
src/index.d.ts vendored
View File

@@ -35,6 +35,9 @@ export interface CookieConsentProps {
enableDeclineButton?: boolean;
flipButtons?: boolean;
ButtonComponent?: React.ElementType;
overlay?: boolean,
overlayClasses?: string,
overlayStyle?: object,
}
export default class CookieConsent extends React.Component<CookieConsentProps, {}> {}

View File

@@ -59,6 +59,15 @@ class CookieConsent extends Component {
flex: "1 0 300px",
margin: "15px",
},
overlayStyle: {
position: "absolute",
left: 0,
top: 0,
width: "100%",
height: "100%",
zIndex: "999",
backgroundColor: "rgba(0,0,0,0.3)",
},
};
this.handleScroll = this.handleScroll.bind(this);
@@ -226,12 +235,16 @@ class CookieConsent extends Component {
enableDeclineButton,
flipButtons,
ButtonComponent,
overlay,
overlayClasses,
overlayStyle,
} = this.props;
let myStyle = {};
let myButtonStyle = {};
let myDeclineButtonStyle = {};
let myContentStyle = {};
let myOverlayStyle = {};
if (disableStyles) {
// if styles are disabled use the provided styles (or none)
@@ -239,10 +252,12 @@ class CookieConsent extends Component {
myButtonStyle = Object.assign({}, buttonStyle);
myDeclineButtonStyle = Object.assign({}, declineButtonStyle);
myContentStyle = Object.assign({}, contentStyle);
myOverlayStyle = Object.assign({}, overlayStyle);
} else {
// if styles aren't disabled merge them with the styles that are provided (or use default styles)
myStyle = Object.assign({}, { ...this.state.style, ...style });
myContentStyle = Object.assign({}, { ...this.state.contentStyle, ...contentStyle });
myOverlayStyle = Object.assign({}, { ...this.state.overlayStyle, ...overlayStyle });
// switch to disable JUST the button styles
if (disableButtonStyles) {
@@ -305,17 +320,23 @@ class CookieConsent extends Component {
buttonsToRender.reverse();
}
const OverlayWrapper = !overlay
? props => <React.Fragment {...props} />
: props => <div {...props} />;
return (
<div className={`${containerClasses}`} style={myStyle}>
<div style={myContentStyle} className={contentClasses}>
{this.props.children}
<OverlayWrapper style={myOverlayStyle} className={overlayClasses}>
<div className={`${containerClasses}`} style={myStyle}>
<div style={myContentStyle} className={contentClasses}>
{this.props.children}
</div>
<div className={`${buttonWrapperClasses}`}>
{buttonsToRender.map(button => {
return button;
})}
</div>
</div>
<div className={`${buttonWrapperClasses}`}>
{buttonsToRender.map((button) => {
return button;
})}
</div>
</div>
</OverlayWrapper>
);
}
}
@@ -356,6 +377,9 @@ CookieConsent.propTypes = {
flipButtons: PropTypes.bool,
ButtonComponent: PropTypes.elementType,
cookieSecurity: PropTypes.bool,
overlay: PropTypes.bool,
overlayClasses: PropTypes.string,
overlayStyle: PropTypes.object,
};
CookieConsent.defaultProps = {
@@ -388,6 +412,8 @@ CookieConsent.defaultProps = {
flipButtons: false,
sameSite: SAME_SITE_OPTIONS.NONE,
ButtonComponent: ({ children, ...props }) => <button {...props}>{children}</button>,
overlay: false,
overlayClasses: "",
};
export default CookieConsent;