2014-07-28 18:07:48 +02:00
|
|
|
/*
|
|
|
|
|
2015-03-09 15:45:35 +01:00
|
|
|
Copyright 2008-2015 Clipperz Srl
|
2014-07-28 18:07:48 +02:00
|
|
|
|
|
|
|
This file is part of Clipperz, the online password manager.
|
|
|
|
For further information about its features and functionalities please
|
|
|
|
refer to http://www.clipperz.com.
|
|
|
|
|
|
|
|
* Clipperz is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
* Clipperz is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
License along with Clipperz. If not, see http://www.gnu.org/licenses/.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-03-10 22:59:24 +01:00
|
|
|
"use strict";
|
2014-07-28 18:07:48 +02:00
|
|
|
Clipperz.Base.module('Clipperz.PM.UI.Components');
|
|
|
|
|
2015-03-23 18:10:09 +01:00
|
|
|
Clipperz.PM.UI.Components.AccountStatusClass = React.createClass({
|
2014-07-28 18:07:48 +02:00
|
|
|
|
|
|
|
propTypes: {
|
2014-08-22 08:38:53 +02:00
|
|
|
// 'currentSubscriptionType': React.PropTypes.oneOf(['EARLY_ADOPTER', 'FRIEND', 'FAN', 'DEVOTEE', 'PATRON', 'TRIAL', 'TRIAL_EXPIRED', 'PAYMENT_FAILED_2', 'EXPIRED', 'PAYMENT_FAILED', 'VERIFYING_PAYMENT', 'VERIFYING_PAYMENT_2']).isRequired,
|
|
|
|
'expirationDate': React.PropTypes.string /* .isRequired */,
|
2015-03-10 22:59:24 +01:00
|
|
|
'referenceDate': React.PropTypes.string /* .isRequired */,
|
2014-08-22 08:38:53 +02:00
|
|
|
'featureSet': React.PropTypes.oneOf(['TRIAL', 'EXPIRED', 'FULL']) /* .isRequired */ ,
|
2015-03-10 22:59:24 +01:00
|
|
|
'proxyType': React.PropTypes.oneOf(['ONLINE', 'OFFLINE', 'OFFLINE_COPY']),
|
2014-08-22 08:38:53 +02:00
|
|
|
'isExpired': React.PropTypes.bool /* .isRequired */ ,
|
|
|
|
'isExpiring': React.PropTypes.bool /* .isRequired */ ,
|
|
|
|
'paymentVerificationPending': React.PropTypes.bool /* .isRequired */ ,
|
2014-07-28 18:07:48 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
//=========================================================================
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
//console.log("AccountStatus props", this.props);
|
2015-03-10 22:59:24 +01:00
|
|
|
var accountInfoClasses = {
|
2014-07-28 18:07:48 +02:00
|
|
|
'accountStatus': true,
|
|
|
|
'isExpiring': this.props['isExpiring'],
|
|
|
|
'isExpired': this.props['isExpired'],
|
|
|
|
};
|
2015-03-10 22:59:24 +01:00
|
|
|
accountInfoClasses[this.props['featureSet']] = true;
|
2014-07-28 18:07:48 +02:00
|
|
|
|
2015-03-10 22:59:24 +01:00
|
|
|
var proxyInfoClasses = {
|
2015-08-20 12:04:31 +02:00
|
|
|
'proxyInfo': true
|
2015-03-10 22:59:24 +01:00
|
|
|
}
|
|
|
|
proxyInfoClasses[this.props['proxyType']] = true;
|
2015-08-20 12:04:31 +02:00
|
|
|
proxyInfoClasses['withReferenceDate'] = (this.props['referenceDate'] != null);
|
2014-07-28 18:07:48 +02:00
|
|
|
|
2015-03-10 22:59:24 +01:00
|
|
|
return React.DOM.div({'className':'miscInfo'}, [
|
2015-03-23 18:10:09 +01:00
|
|
|
React.DOM.div({'className':Clipperz.PM.UI.Components.classNames(proxyInfoClasses)}, [
|
2015-03-10 22:59:24 +01:00
|
|
|
React.DOM.span({'className':'proxyDescription'}, this.props['proxyTypeDescription']),
|
|
|
|
React.DOM.span({'className':'referenceDate'}, this.props['referenceDate'])
|
|
|
|
]),
|
2015-03-23 18:10:09 +01:00
|
|
|
React.DOM.div({'className':Clipperz.PM.UI.Components.classNames(accountInfoClasses)}, [
|
2015-03-10 22:59:24 +01:00
|
|
|
React.DOM.span({'className':'level'}, Clipperz.PM.DataModel.Feature['featureSets'][this.props['featureSet']]),
|
|
|
|
React.DOM.span({'className':'expirationMessage'}, "expiring on"),
|
|
|
|
React.DOM.span({'className':'expirationDate'}, this.props['expirationDate'])
|
|
|
|
])
|
2014-07-28 18:07:48 +02:00
|
|
|
]);
|
2015-03-10 22:59:24 +01:00
|
|
|
|
2014-07-28 18:07:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//=========================================================================
|
|
|
|
});
|
2015-03-23 18:10:09 +01:00
|
|
|
|
|
|
|
Clipperz.PM.UI.Components.AccountStatus = React.createFactory(Clipperz.PM.UI.Components.AccountStatusClass);
|