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

Added signup spacing logic

no refs.
- added logic to handle spacing on signup screen based on Portal settings
This commit is contained in:
Peter Zimon 2020-09-15 13:32:44 +02:00
parent 533b3fcbbb
commit 856f56f04e
3 changed files with 35 additions and 9 deletions

View file

@ -146,16 +146,16 @@ export const PlanSectionStyles = `
transform: rotate(45deg);
}
.gh-portal-signup-singleplan .gh-portal-plan-section {
.gh-portal-content.signup .gh-portal-section.singleplan .gh-portal-plan-section {
cursor: auto;
}
.gh-portal-signup-singleplan .gh-portal-plan-checkbox,
.gh-portal-signup-singleplan .gh-portal-plan-section.checked::before {
.gh-portal-content.signup .gh-portal-section.singleplan .gh-portal-plan-checkbox,
.gh-portal-content.signup .gh-portal-section.singleplan .gh-portal-plan-section.checked::before {
display: none;
}
.gh-portal-signup-singleplan .gh-portal-plan-name {
.gh-portal-content.signup .gh-portal-section.singleplan .gh-portal-plan-name {
margin-top: 0;
}
`;

View file

@ -57,6 +57,18 @@ export const SignupPageStyles = `
font-weight: 400;
margin-left: 4px;
}
.gh-portal-content.signup .gh-portal-section {
margin-bottom: 24px;
}
.gh-portal-content.signup .gh-portal-section.noplan {
margin-bottom: 32px;
}
.gh-portal-content.signup .gh-portal-section.single-field {
margin-bottom: 20px;
}
`;
class SignupPage extends React.Component {
@ -282,10 +294,9 @@ class SignupPage extends React.Component {
renderPlans() {
const plansData = this.getPlans();
const plansContainerClass = plansData.length <= 1 ? 'gh-portal-signup-singleplan' : 'gh-portal-signup-multiplan';
return (
<div className={plansContainerClass}>
<div>
<PlansSection
plans={plansData}
selectedPlan={this.state.plan}
@ -312,11 +323,26 @@ class SignupPage extends React.Component {
}
renderForm() {
const plansData = this.getPlans();
const fields = this.getInputFields({state: this.state});
let sectionClass = '';
if (plansData.length <= 1) {
if ((plansData.length === 1 && plansData[0].type === 'free') || plansData.length === 0) {
sectionClass = 'noplan';
if (fields.length === 1) {
sectionClass = 'single-field';
}
} else {
sectionClass = 'singleplan';
}
}
return (
<section>
<div className='gh-portal-section'>
<div className={'gh-portal-section ' + sectionClass}>
<InputForm
fields={this.getInputFields({state: this.state})}
fields={fields}
onChange={(e, field) => this.handleInputChange(e, field)}
onBlur={(e, field) => this.handleInputBlur(e, field)}
/>

View file

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