web-manager 3.2.20 → 3.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/account.js +11 -2
- package/package.json +1 -1
package/lib/account.js
CHANGED
@@ -180,6 +180,12 @@ function handlePlanVisibility(planId) {
|
|
180
180
|
});
|
181
181
|
}
|
182
182
|
|
183
|
+
function splitDashesAndUppercase(str) {
|
184
|
+
return str.split('-').map(function (word) {
|
185
|
+
return uppercase(word);
|
186
|
+
}).join(' ');
|
187
|
+
}
|
188
|
+
|
183
189
|
function uppercase(str) {
|
184
190
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
185
191
|
}
|
@@ -454,14 +460,17 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
|
|
454
460
|
}
|
455
461
|
|
456
462
|
// Update trial UI
|
457
|
-
if (
|
463
|
+
if (
|
464
|
+
account.plan.trial.activated
|
465
|
+
&& daysTillTrialExpire > 0
|
466
|
+
) {
|
458
467
|
billingTrialExpirationDateEl
|
459
468
|
.removeAttribute('hidden')
|
460
469
|
.setInnerHTML('<i class="fas fa-gift mr-1"></i> Your free trial expires in ' + daysTillTrialExpire + ' days');
|
461
470
|
}
|
462
471
|
|
463
472
|
// Update billing UI
|
464
|
-
billingPlanId.setInnerHTML(
|
473
|
+
billingPlanId.setInnerHTML(splitDashesAndUppercase(account.plan.id));
|
465
474
|
billingFrequencyEl.setInnerHTML(account.plan.id !== defaultPlanId ? ' (billed ' + uppercase(account.plan.payment.frequency) + ')' : '');
|
466
475
|
billingStartDateEl.setInnerHTML(account.plan.id !== defaultPlanId ? ' - Purchased ' + getMonth(startDate) + ' ' + startDate.getDate() + ', ' + startDate.getFullYear() : '');
|
467
476
|
billingExpirationDateEl.setInnerHTML(account.plan.id !== defaultPlanId && daysTillExpire < 366
|
package/package.json
CHANGED