0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added dynamic popup width

no refs.
- set popup width for signup and signin pages based on the number of plans
This commit is contained in:
Peter Zimon 2020-09-15 12:22:13 +02:00
parent 9a233e8210
commit 533b3fcbbb
4 changed files with 17 additions and 7 deletions

View file

@ -13,7 +13,7 @@ const DEV_MODE_DATA = {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.paid,
page: 'accountHome'
page: 'signup'
};
export default class App extends React.Component {
constructor(props) {

View file

@ -325,16 +325,19 @@ const GlobalStyles = `
letter-spacing: 0;
text-rendering: optimizeLegibility;
background: var(--white);
width: 440px;
/*max-height: calc(100vh - 12vw);*/
width: 400px;
margin: 0 auto;
border-radius: 5px;
box-shadow: 0 3.8px 2.2px rgba(0, 0, 0, 0.028), 0 9.2px 5.3px rgba(0, 0, 0, 0.04), 0 17.3px 10px rgba(0, 0, 0, 0.05), 0 30.8px 17.9px rgba(0, 0, 0, 0.06), 0 57.7px 33.4px rgba(0, 0, 0, 0.072), 0 138px 80px rgba(0, 0, 0, 0.1);
animation: popup 0.25s ease-in-out;
}
.gh-portal-container-singleplan {
width: 390px;
.gh-portal-container-wide {
width: 440px;
}
.gh-portal-container-narrow {
width: 380px;
}
.gh-portal-popup-container.preview {

View file

@ -88,9 +88,16 @@ class PopupContent extends React.Component {
const pageStyle = {
...Styles.page[page]
};
let popupWidthStyle = '';
if (portalPlans.length === 3 && (page === 'signup' || page === 'signin')) {
popupWidthStyle = 'gh-portal-container-wide';
}
if (portalPlans.length <= 1) {
popupWidthStyle = 'gh-portal-container-narrow';
}
return (
<div className='gh-portal-popup-wrapper'>
<div className={(hasMode(['preview', 'dev']) ? 'gh-portal-popup-container preview' : 'gh-portal-popup-container') + (portalPlans.length <= 1 ? ' gh-portal-container-singleplan' : '')} style={pageStyle} ref={node => (this.node = node)} tabIndex="-1">
<div className={(hasMode(['preview', 'dev']) ? 'gh-portal-popup-container preview' : 'gh-portal-popup-container') + ' ' + popupWidthStyle} style={pageStyle} ref={node => (this.node = node)} tabIndex="-1">
{this.renderPopupClose()}
{this.renderActivePage()}
</div>

View file

@ -15,7 +15,7 @@ export const site = {
is_stripe_configured: true,
portal_button: true,
portal_name: true,
portal_plans: ['free', 'monthly', 'yearly'],
portal_plans: ['free'],
portal_button_icon: 'icon-1',
portal_button_signup_text: 'Subscribe now',
portal_button_style: 'icon-and-text',