Add WooCommerce revenue to displayed stats

[MAILPOET-1853]
This commit is contained in:
Jan Jakeš
2019-05-02 15:16:44 +02:00
committed by M. Shull
parent 975266cb1f
commit b4edc5912a
2 changed files with 15 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import jQuery from 'jquery';
import _ from 'underscore';
import Hooks from 'wp-js-hooks';
import StatsBadge from 'newsletters/badges/stats.jsx';
import HelpTooltip from 'help-tooltip.jsx';
const QueueMixin = {
pauseSending: function pauseSending(newsletter) {
@@ -216,11 +217,13 @@ const StatisticsMixin = {
let percentageClicked = 0;
let percentageOpened = 0;
let percentageUnsubscribed = 0;
let revenue = null;
if (totalSent > 0) {
percentageClicked = (newsletter.statistics.clicked * 100) / totalSent;
percentageOpened = (newsletter.statistics.opened * 100) / totalSent;
percentageUnsubscribed = (newsletter.statistics.unsubscribed * 100) / totalSent;
revenue = newsletter.statistics.revenue;
}
// format to 1 decimal place
@@ -324,6 +327,17 @@ const StatisticsMixin = {
const content = (
<>
{ wrapContentInLink(openedAndClickedStats, 'opened-and-clicked') }
{ revenue !== null && revenue.value > 0 && (
<div className="mailpoet_stats_text">
{ wrapContentInLink(revenue.formatted, 'revenue') }
{' '}
<HelpTooltip
tooltip={MailPoet.I18n.t('revenueStatsTooltip')}
place="left"
tooltipId="helpTooltipStatsRevenue"
/>
</div>
) }
{ tooEarlyForStats && wrapContentInLink(
(
<div className="mailpoet_badge mailpoet_badge_green">

View File

@@ -125,6 +125,7 @@
'openedStatTooltip': __('Above 30% is excellent.\\nBetween 10 and 30% is good.\\nUnder 10% is bad.'),
'clickedStatTooltip': __('Above 3% is excellent.\\nBetween 1 and 3% is good.\\nUnder 1% is bad.'),
'unsubscribedStatTooltip': __('Under 1% is excellent.\\nBetween 1 and 3% is good.\\nOver 3% is bad.'),
'revenueStatsTooltip': __('Revenues generated by customers who clicked on this email in the last two weeks. This is the sum of the order totals including shipping and taxes.'),
'checkBackInHours': __('Nice job! Check back in %$1d hour(s) for more stats.'),
'improveThisLinkText': __('What can I do to improve this?'),