File size: 5,207 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
import 'moment-timezone';
import { CompactCard, FormLabel } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import Site from 'calypso/blocks/site';
import FormattedHeader from 'calypso/components/formatted-header';
import FormButton from 'calypso/components/forms/form-button';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation';
import FormTextInput from 'calypso/components/forms/form-text-input';
import { withLocalizedMoment } from 'calypso/components/localized-moment';
import Confirmation from './confirmation';
class AppointmentInfo extends Component {
static propTypes = {
appointment: PropTypes.object.isRequired,
};
renderAppointmentDetails() {
const {
appointment: { beginTimestamp, endTimestamp, id, scheduleId, meta },
translate,
moment,
site,
} = this.props;
const conferenceLink = meta.conference_link || '';
const guessedTimezone = moment.tz.guess();
const userTimezoneAbbr = moment.tz( guessedTimezone ).format( 'z' );
// Moment timezone does not display the abbreviation for some countries(e.g. for Dubai, it shows timezone abbr as +04 ).
// Don't display the timezone for such countries.
const shouldDisplayTzAbbr = /[a-zA-Z]/g.test( userTimezoneAbbr );
const momentDisplayFormat = shouldDisplayTzAbbr ? 'LT z' : 'LT';
const isAllowedToChangeAppointment = meta.canChangeAppointment;
return (
<>
<CompactCard className="shared__site-block">
<Site siteId={ site.ID } />
</CompactCard>
<CompactCard>
<FormattedHeader
headerText=""
subHeaderText={ translate( 'Your scheduled Quick Start session details are:' ) }
/>
<FormFieldset>
<FormLabel>
{ conferenceLink
? translate( 'Session link' )
: translate(
'A link to start the session will appear here a few minutes before the session'
) }
</FormLabel>
<div className="shared__appointment-info-start-session">
<FormTextInput
name="conferenceLink"
value={ conferenceLink }
disabled="disabled"
placeholder="Screen share URL (check back before the session starts)"
/>
{ conferenceLink && (
<a href={ conferenceLink } target="_blank" rel="noopener noreferrer">
<FormButton isPrimary type="button">
{ translate( 'Start session' ) }
</FormButton>
</a>
) }
</div>
</FormFieldset>
<FormFieldset>
<FormLabel>{ translate( 'When?' ) }</FormLabel>
<FormSettingExplanation>
{ moment( beginTimestamp ).format( 'llll - ' ) }
{ moment.tz( endTimestamp, guessedTimezone ).format( momentDisplayFormat ) }{ ' ' }
{ `(${ guessedTimezone })` }
</FormSettingExplanation>
</FormFieldset>
<FormFieldset>
<FormLabel>
{ translate( 'What are you hoping to accomplish with your site?' ) }
</FormLabel>
<FormSettingExplanation>{ meta.message }</FormSettingExplanation>
</FormFieldset>
{ isAllowedToChangeAppointment && (
<FormFieldset>
<a href={ `/me/quickstart/${ site.slug }/${ id }/cancel` } rel="noopener noreferrer">
<FormButton isPrimary={ false } type="button">
{ translate( 'Reschedule or cancel' ) }
</FormButton>
</a>
</FormFieldset>
) }
{ scheduleId === 1 ? (
<>
<br />
<FormSettingExplanation>
{ translate(
'Note: You have two free sessions with your plan. If you are unable to attend a ' +
'session, you may cancel or reschedule it at least one hour in advance so that it ' +
'does not count towards your session total.'
) }
</FormSettingExplanation>
</>
) : (
<>
<br />
<FormSettingExplanation>
{ translate(
'Note: You have %(days)d days from the date of purchase to cancel an unused Quick Start ' +
'session and receive a refund. Please note, if you miss a scheduled session twice, ' +
'the purchase will be cancelled without a refund.',
{ args: { days: 14 } }
) }
</FormSettingExplanation>
</>
) }
</CompactCard>
</>
);
}
render() {
const {
appointment: { beginTimestamp, endTimestamp },
translate,
moment,
} = this.props;
const beginTimeFormat = translate( 'LL [at] LT', {
comment:
'moment.js formatting string. See http://momentjs.com/docs/#/displaying/format/.' +
'e.g. Thursday, December 20, 2018 at 8PM.',
} );
return (
<div>
<Confirmation
title={ translate( 'Your upcoming appointment' ) }
description={ translate( 'Get all your questions ready — we look forward to chatting!', {
args: {
beginTime: moment( beginTimestamp ).format( beginTimeFormat ),
duration: moment( endTimestamp ).diff( beginTimestamp, 'minutes' ),
},
} ) }
/>
{ this.renderAppointmentDetails() }
</div>
);
}
}
export default localize( withLocalizedMoment( AppointmentInfo ) );
|