File size: 6,055 Bytes
1e92f2d | 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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | import { mapKeys, mapValues, snakeCase, startsWith } from 'lodash';
import {
composeAnalytics,
recordGoogleEvent,
recordTracksEvent,
} from 'calypso/state/analytics/actions';
const noop = () => {};
export const recordMapDomainButtonClick = ( section, flowName ) =>
composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Clicked "Map it" Button' ),
recordTracksEvent( 'calypso_domain_search_results_mapping_button_click', {
section,
flow_name: flowName,
} )
);
export const recordTransferDomainButtonClick = ( section, source, flowName ) =>
composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Clicked "Use a Domain I own" Button' ),
recordTracksEvent( 'calypso_domain_search_results_transfer_button_click', {
section,
source,
flow_name: flowName,
} )
);
export const recordUseYourDomainButtonClick = ( section, source, flowName ) =>
composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Clicked "Use a Domain I own" Button' ),
recordTracksEvent( 'calypso_domain_search_results_use_my_domain_button_click', {
section,
source,
flow_name: flowName,
} )
);
export const recordSearchFormSubmit = (
searchBoxValue,
section,
timeDiffFromLastSearch,
count,
vendor,
flowName
) =>
composeAnalytics(
recordGoogleEvent(
'Domain Search',
'Submitted Search Form',
'Search Box Value',
searchBoxValue
),
recordTracksEvent( 'calypso_domain_search', {
search_box_value: searchBoxValue,
seconds_from_last_search: timeDiffFromLastSearch,
search_count: count,
search_vendor: vendor,
section,
flow_name: flowName,
} )
);
export const recordSearchFormView = ( section, flowName ) =>
composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Landed on Search' ),
recordTracksEvent( 'calypso_domain_search_pageview', { section, flow_name: flowName } )
);
export const recordSearchResultsReceive = (
searchQuery,
searchResults,
responseTimeInMs,
resultCount,
section,
flowName
) =>
composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Receive Results', 'Response Time', responseTimeInMs ),
recordTracksEvent( 'calypso_domain_search_results_suggestions_receive', {
search_query: searchQuery,
results: searchResults.join( ';' ),
response_time_ms: responseTimeInMs,
result_count: resultCount,
section,
flow_name: flowName,
} )
);
export const recordDomainAvailabilityReceive = (
searchQuery,
availableStatus,
responseTimeInMs,
section,
flowName
) =>
composeAnalytics(
recordGoogleEvent(
'Domain Search',
'Domain Availability Result',
'Domain Available Status',
availableStatus
),
recordTracksEvent( 'calypso_domain_search_results_availability_receive', {
search_query: searchQuery,
available_status: availableStatus,
response_time: responseTimeInMs,
section,
flow_name: flowName,
} )
);
export const recordDomainAddAvailabilityPreCheck = (
domain,
unavailableStatus,
section,
flowName,
rootVendor
) =>
composeAnalytics(
recordGoogleEvent(
'Domain Search',
'Domain Add',
'Domain Precheck Unavailable',
unavailableStatus
),
recordTracksEvent( 'calypso_domain_add_availability_precheck', {
domain: domain,
unavailable_status: unavailableStatus,
section,
flow_name: flowName,
root_vendor: rootVendor,
} )
);
export function recordShowMoreResults( searchQuery, pageNumber, section, flowName ) {
return composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Show More Results' ),
recordTracksEvent( 'calypso_domain_search_show_more_results', {
search_query: searchQuery,
page_number: pageNumber,
section,
flow_name: flowName,
} )
);
}
function processFiltersForAnalytics( filters ) {
const convertArraysToCSV = ( input ) =>
mapValues( input, ( value ) => ( Array.isArray( value ) ? value.join( ',' ) : value ) );
const prepareKeys = ( input ) =>
mapKeys( input, ( value, key ) => `filters_${ snakeCase( key ) }` );
return convertArraysToCSV( prepareKeys( filters ) );
}
export function recordFiltersReset( filters, keysToReset, section, flowName ) {
return composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Filters Reset' ),
recordTracksEvent( 'calypso_domain_search_filters_reset', {
keys_to_reset: keysToReset.join( ',' ),
section,
flow_name: flowName,
...processFiltersForAnalytics( filters ),
} )
);
}
export function recordFiltersSubmit( filters, section, flowName ) {
return composeAnalytics(
recordGoogleEvent( 'Domain Search', 'Filters Submit' ),
recordTracksEvent( 'calypso_domain_search_filters_submit', {
section,
flow_name: flowName,
...processFiltersForAnalytics( filters ),
} )
);
}
let searchQueue = [];
let searchStackTimer = null;
let lastSearchTimestamp = null;
let searchCount = 0;
let recordSearchFormSubmitWithDispatch = noop;
export function resetSearchCount() {
searchCount = 0;
}
export function enqueueSearchStatReport( search, recordFunction ) {
recordSearchFormSubmitWithDispatch = recordFunction;
searchQueue.push( Object.assign( {}, search, { timestamp: Date.now() } ) );
if ( searchStackTimer ) {
window.clearTimeout( searchStackTimer );
}
searchStackTimer = window.setTimeout( processSearchStatQueue, 10000 );
}
function processSearchStatQueue() {
const queue = searchQueue.slice();
window.clearTimeout( searchStackTimer );
searchStackTimer = null;
searchQueue = [];
outerLoop: for ( let i = 0; i < queue.length; i++ ) {
for ( let k = i + 1; k < queue.length; k++ ) {
if ( startsWith( queue[ k ].query, queue[ i ].query ) ) {
continue outerLoop;
}
}
reportSearchStats( queue[ i ] );
}
}
function reportSearchStats( { query, section, timestamp, vendor, flowName } ) {
let timeDiffFromLastSearchInSeconds = 0;
if ( lastSearchTimestamp ) {
timeDiffFromLastSearchInSeconds = Math.floor( ( timestamp - lastSearchTimestamp ) / 1000 );
}
lastSearchTimestamp = timestamp;
searchCount++;
recordSearchFormSubmitWithDispatch(
query,
section,
timeDiffFromLastSearchInSeconds,
searchCount,
vendor,
flowName
);
}
|