mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
import React, {Component} from 'react';
|
|
import Modal from '../base/Modal';
|
|
import ModalBody from '../base/ModalBody';
|
|
import ModalHeader from '../base/ModalHeader';
|
|
import ModalFooter from '../base/ModalFooter';
|
|
import PaymentModal from './PaymentModal';
|
|
import {showModal} from './index';
|
|
import * as session from '../../../sync/session';
|
|
import {trackEvent} from '../../../analytics';
|
|
|
|
|
|
let hidePaymentNotificationUntilNextLaunch = false;
|
|
|
|
class PaymentNotificationModal extends Component {
|
|
show () {
|
|
// Don't trigger automatically if user has dismissed it already
|
|
if (hidePaymentNotificationUntilNextLaunch) {
|
|
return;
|
|
}
|
|
|
|
hidePaymentNotificationUntilNextLaunch = true;
|
|
this.modal.show();
|
|
}
|
|
|
|
hide () {
|
|
trackEvent('Billing', 'Trial Ended', 'Cancel');
|
|
this.modal.hide();
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<Modal ref={m => this.modal = m}>
|
|
<ModalHeader>Free Trial has Ended</ModalHeader>
|
|
<ModalBody className="pad changelog">
|
|
<div className="text-center pad">
|
|
<h1>
|
|
Hi {session.getFirstName()},
|
|
</h1>
|
|
<p style={{maxWidth: '30rem', margin: 'auto'}}>
|
|
Your Insomnia Plus trial has ended. please enter your billing information to
|
|
continue using your account.
|
|
</p>
|
|
<br/>
|
|
<p className="pad-top">
|
|
<button className="btn btn--compact btn--outlined" onClick={e => {
|
|
this.hide();
|
|
showModal(PaymentModal);
|
|
trackEvent('Billing', 'Trial Ended', 'Proceed')
|
|
}}>
|
|
Proceed to Billing
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<button className="btn" onClick={e => {
|
|
this.hide();
|
|
showModal(PaymentModal);
|
|
}}>Maybe Later
|
|
</button>
|
|
|
|
<div></div>
|
|
</ModalFooter>
|
|
</Modal>
|
|
)
|
|
}
|
|
}
|
|
|
|
PaymentNotificationModal.propTypes = {};
|
|
|
|
export default PaymentNotificationModal;
|