whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
plugins
/
burst-statistics
/
settings
/
src
/
api
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/plugins/burst-statistics/settings/src/api/getDevicesData.js
import {__} from '@wordpress/i18n'; import {getData} from '../utils/api'; import { formatNumber, formatTime, getBouncePercentage, getChangePercentage, getPercentage, } from '../utils/formatting'; const deviceNames = { 'desktop': __('Desktop', 'burst-statistics'), 'tablet': __('Tablet', 'burst-statistics'), 'mobile': __('Mobile', 'burst-statistics'), 'other': __('Other', 'burst-statistics'), }; // Existing transform function for title and value export const transformDevicesTitleAndValue = (response) => { let data = {}; for (const [key, value] of Object.entries(deviceNames)) { Object.assign(data, { [key]: { 'title': value, 'value': getPercentage(response[key].count, response['all'].count), }, }); } return data; } // New transform function for subtitle export const transformDevicesSubtitle = (response) => { let data = {}; for (const [key] of Object.entries(deviceNames)) { let os = response[key].os ? response[key].os : ''; let browser = response[key].browser ? response[key].browser : ''; Object.assign(data, { [key]: { 'subtitle': os === '' && browser === '' ? '-' : os + ' / ' + browser, }, }); } return data; } /** * Get live visitors * @param {Object} args * @param {string} args.startDate * @param {string} args.endDate * @param {string} args.range * @param {Object} args.filters * @returns {Promise<*>} */ export const getDevicesTitleAndValueData = async ({ startDate, endDate, range, args } ) => { const { data } = await getData( 'devicesTitleAndValue', startDate, endDate, range, args ); return transformDevicesTitleAndValue(data); } /** * Get live visitors * @param {Object} args * @param {string} args.startDate * @param {string} args.endDate * @param {string} args.range * @param {Object} args.filters * @returns {Promise<*>} */ export const getDevicesSubtitleData = async ({ startDate, endDate, range, args } ) => { const { data } = await getData( 'devicesSubtitle', startDate, endDate, range, args ); return transformDevicesSubtitle(data); }
Copyright ©2021 || Defacer Indonesia