-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathDashboardPopularPagesWidget.js
188 lines (166 loc) · 4.68 KB
/
DashboardPopularPagesWidget.js
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/**
* DashboardPopularPagesWidget component.
*
* Site Kit by Google, Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* External dependencies
*/
import cloneDeep from 'lodash/cloneDeep';
/**
* WordPress dependencies
*/
import { __, _x } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import Data from 'googlesitekit-data';
import {
DATE_RANGE_OFFSET,
MODULES_ANALYTICS,
} from '../../datastore/constants';
import { CORE_USER } from '../../../../googlesitekit/datastore/user/constants';
import whenActive from '../../../../util/when-active';
import PreviewTable from '../../../../components/PreviewTable';
import SourceLink from '../../../../components/SourceLink';
import { isZeroReport } from '../../util';
import TableOverflowContainer from '../../../../components/TableOverflowContainer';
import { generateDateRangeArgs } from '../../util/report-date-range-args';
import ReportTable from '../../../../components/ReportTable';
import DetailsPermaLinks from '../../../../components/DetailsPermaLinks';
import { numFmt } from '../../../../util';
const { useSelect } = Data;
function DashboardPopularPagesWidget( props ) {
const { Widget, WidgetReportZero, WidgetReportError } = props;
const isGatheringData = useSelect( ( select ) =>
select( MODULES_ANALYTICS ).isGatheringData()
);
const { data, titles, error, loading, analyticsMainURL } = useSelect(
( select ) => {
const store = select( MODULES_ANALYTICS );
const {
startDate,
endDate,
compareStartDate,
compareEndDate,
} = select( CORE_USER ).getDateRangeDates( {
offsetDays: DATE_RANGE_OFFSET,
} );
const args = {
startDate,
endDate,
dimensions: [ 'ga:pagePath' ],
metrics: [
{
expression: 'ga:pageviews',
alias: 'Pageviews',
},
],
orderby: [
{
fieldName: 'ga:pageviews',
sortOrder: 'DESCENDING',
},
],
limit: 10,
};
const report = store.getReport( args );
const pageTitles = store.getPageTitles( report, args );
const hasLoadedPageTitles = undefined !== pageTitles;
const hasLoaded =
hasLoadedPageTitles &&
store.hasFinishedResolution( 'getReport', [ args ] );
return {
analyticsMainURL: store.getServiceReportURL(
'content-pages',
generateDateRangeArgs( {
startDate,
endDate,
compareStartDate,
compareEndDate,
} )
),
data: report,
titles: pageTitles,
error: store.getErrorForSelector( 'getReport', [ args ] ),
loading: ! hasLoaded,
};
}
);
const Footer = () => (
<SourceLink
className="googlesitekit-data-block__source"
name={ _x( 'Analytics', 'Service name', 'google-site-kit' ) }
href={ analyticsMainURL }
external
/>
);
if ( loading || isGatheringData === undefined ) {
return (
<Widget noPadding Footer={ Footer }>
<PreviewTable padding />
</Widget>
);
}
if ( error ) {
return (
<Widget Footer={ Footer }>
<WidgetReportError moduleSlug="analytics" error={ error } />
</Widget>
);
}
if ( isGatheringData && isZeroReport( data ) ) {
return (
<Widget Footer={ Footer }>
<WidgetReportZero moduleSlug="analytics" />
</Widget>
);
}
const rows = data?.[ 0 ]?.data?.rows?.length
? cloneDeep( data[ 0 ].data.rows )
: [];
// Combine the titles from the pageTitles with the rows from the metrics report.
rows.forEach( ( row ) => {
const url = row.dimensions[ 0 ];
row.dimensions.unshift( titles[ url ] ); // We always have an entry for titles[url].
} );
return (
<Widget noPadding Footer={ Footer }>
<TableOverflowContainer>
<ReportTable rows={ rows } columns={ tableColumns } />
</TableOverflowContainer>
</Widget>
);
}
const tableColumns = [
{
title: __( 'Most popular content', 'google-site-kit' ),
primary: true,
Component: ( { row } ) => {
const [ title, path ] = row.dimensions;
return <DetailsPermaLinks title={ title } path={ path } />;
},
},
{
title: __( 'Views', 'google-site-kit' ),
field: 'metrics.0.values.0',
Component: ( { fieldValue } ) => (
<span>{ numFmt( fieldValue, { style: 'decimal' } ) }</span>
),
},
];
export default whenActive( { moduleName: 'analytics' } )(
DashboardPopularPagesWidget
);