Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import moment from 'moment';
import { STATS_CHART_COUNTS_REQUEST } from 'calypso/state/action-types';
import { registerHandlers } from 'calypso/state/data-layer/handler-registry';
import { http } from 'calypso/state/data-layer/wpcom-http/actions';
import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils';
import { receiveChartCounts } from 'calypso/state/stats/chart-tabs/actions';
import fromApi from './from-api';
export const fetch = ( action ) => {
const { chartTab, date, chartStart, period, quantity, siteId, statFields } = action;
if ( period === 'hour' ) {
// Move the date to the end of the day to get the correct data for hours; otherwise, we get the data for the previous day.
const adjustedDate = moment( date ).endOf( 'day' ).format( 'YYYY-MM-DD HH:00:00' );
return http(
{
method: 'GET',
path: `/sites/${ siteId }/stats/visits`,
apiVersion: '1.1',
query: {
unit: period,
date: adjustedDate,
quantity,
stat_fields: statFields,
},
},
action
);
}
const currentTabFields = chartTab === 'views' ? [ 'views', 'visitors' ] : [ chartTab ];
const otherTabFields =
statFields?.filter( ( field ) => ! currentTabFields.includes( field ) ) ?? [];
return [
http(
{
method: 'GET',
path: `/sites/${ siteId }/stats/visits`,
apiVersion: '1.1',
query: {
unit: period,
date,
start_date: chartStart,
quantity,
stat_fields: currentTabFields.join( ',' ),
},
},
action
),
http(
{
method: 'GET',
path: `/sites/${ siteId }/stats/visits`,
apiVersion: '1.1',
query: {
unit: period,
date,
start_date: chartStart,
quantity,
stat_fields: otherTabFields.join( ',' ),
},
},
action
),
];
};
export const onSuccess = ( { siteId, period, date, quantity }, data ) =>
receiveChartCounts( siteId, date, period, quantity, data );
registerHandlers( 'state/data-layer/wpcom/sites/stats/visits/index.js', {
[ STATS_CHART_COUNTS_REQUEST ]: [
dispatchRequest( {
fetch,
onSuccess,
onError: () => {},
fromApi,
} ),
],
} );
export default {};