File size: 4,708 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
/**
* This renders the Concierge Chats scheduling page. It is a "wizard" interface with three steps.
* Each step is a separate component that calls `onComplete` when the step is complete or `onBack`
* if the user requests to go back. This component uses those callbacks to keep track of the current
* step and render it.
*
* This is still a work in progress and right now it just sets up step navigation. Fetching full data
* and doing actual work will come later, at which point we'll determine how the step components will
* gather the data they need.
*/
import { isEmpty } from 'lodash';
import { Component } from 'react';
import { connect } from 'react-redux';
import QueryConciergeInitial from 'calypso/components/data/query-concierge-initial';
import QuerySitePlans from 'calypso/components/data/query-site-plans';
import QuerySites from 'calypso/components/data/query-sites';
import QueryUserSettings from 'calypso/components/data/query-user-settings';
import Main from 'calypso/components/main';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import twoStepAuthorization from 'calypso/lib/two-step-authorization';
import ReauthRequired from 'calypso/me/reauth-required';
import getConciergeAvailableTimes from 'calypso/state/selectors/get-concierge-available-times';
import getConciergeNextAppointment from 'calypso/state/selectors/get-concierge-next-appointment';
import getConciergeScheduleId from 'calypso/state/selectors/get-concierge-schedule-id';
import getConciergeUserBlocked from 'calypso/state/selectors/get-concierge-user-blocked';
import getUserSettings from 'calypso/state/selectors/get-user-settings';
import { getSite } from 'calypso/state/sites/selectors';
import AppointmentInfo from './shared/appointment-info';
import NoAvailableTimes from './shared/no-available-times';
import Upsell from './shared/upsell';
export class ConciergeMain extends Component {
constructor( props ) {
super( props );
this.state = {
currentStep: 0,
reauthRequired: false,
};
}
componentDidMount() {
twoStepAuthorization.on( 'change', this.checkReauthRequired );
this.checkReauthRequired();
}
componentWillUnmount() {
twoStepAuthorization.off( 'change', this.checkReauthRequired );
}
checkReauthRequired = () => {
const reauthRequired = twoStepAuthorization.isReauthRequired();
if ( this.state.reauthRequired !== reauthRequired ) {
this.setState( { reauthRequired } );
}
};
goToPreviousStep = () => {
this.setState( { currentStep: this.state.currentStep - 1 } );
};
goToNextStep = () => {
this.setState( { currentStep: this.state.currentStep + 1 } );
};
getDisplayComponent = () => {
const {
appointmentId,
availableTimes,
site,
steps,
scheduleId,
userSettings,
nextAppointment,
rescheduling,
isUserBlocked,
} = this.props;
const CurrentStep = steps[ this.state.currentStep ];
const Skeleton = this.props.skeleton;
if ( ! availableTimes || ! site || ! site.plan || null == scheduleId || ! userSettings ) {
return <Skeleton />;
}
// if scheduleId is 0, it means the user is not eligible for the concierge service.
if ( ! isUserBlocked && scheduleId === 0 ) {
return <Upsell site={ site } />;
}
if ( nextAppointment && ! rescheduling ) {
return <AppointmentInfo appointment={ nextAppointment } site={ site } />;
}
if ( isEmpty( availableTimes ) ) {
return <NoAvailableTimes isUserBlocked={ isUserBlocked } />;
}
// We have shift data and this is a business site — show the signup steps
return (
<CurrentStep
appointmentId={ appointmentId }
availableTimes={ availableTimes }
site={ site }
onComplete={ this.goToNextStep }
onBack={ this.goToPreviousStep }
/>
);
};
render() {
const { analyticsPath, analyticsTitle, site } = this.props;
const { reauthRequired } = this.state;
const siteId = site && site.ID;
return (
<Main>
<PageViewTracker path={ analyticsPath } title={ analyticsTitle } />
<ReauthRequired twoStepAuthorization={ twoStepAuthorization } />
{ ! reauthRequired && (
<>
<QueryUserSettings />
<QuerySites />
{ siteId && <QueryConciergeInitial siteId={ siteId } /> }
{ siteId && <QuerySitePlans siteId={ siteId } /> }
</>
) }
{ this.getDisplayComponent() }
</Main>
);
}
}
export default connect( ( state, props ) => ( {
availableTimes: getConciergeAvailableTimes( state ),
nextAppointment: getConciergeNextAppointment( state ),
site: getSite( state, props.siteSlug ),
scheduleId: getConciergeScheduleId( state ),
userSettings: getUserSettings( state ),
isUserBlocked: getConciergeUserBlocked( state ),
} ) )( ConciergeMain );
|