/**
* 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 ;
}
// if scheduleId is 0, it means the user is not eligible for the concierge service.
if ( ! isUserBlocked && scheduleId === 0 ) {
return ;
}
if ( nextAppointment && ! rescheduling ) {
return ;
}
if ( isEmpty( availableTimes ) ) {
return ;
}
// We have shift data and this is a business site — show the signup steps
return (
);
};
render() {
const { analyticsPath, analyticsTitle, site } = this.props;
const { reauthRequired } = this.state;
const siteId = site && site.ID;
return (
{ ! reauthRequired && (
<>
{ siteId && }
{ siteId && }
>
) }
{ this.getDisplayComponent() }
);
}
}
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 );