197 lines
4.9 KiB
TypeScript
197 lines
4.9 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { recordEvent } from '@woocommerce/tracks';
|
|
|
|
/**
|
|
* Get the product data.
|
|
*
|
|
* @return object
|
|
*/
|
|
const getProductData = () => {
|
|
return {
|
|
product_id: ( document.querySelector( '#post_ID' ) as HTMLInputElement )
|
|
?.value,
|
|
product_type: ( document.querySelector(
|
|
'#product-type'
|
|
) as HTMLInputElement )?.value,
|
|
is_downloadable: ( document.querySelector(
|
|
'#_downloadable'
|
|
) as HTMLInputElement )?.value,
|
|
is_virtual: ( document.querySelector(
|
|
'#_virtual'
|
|
) as HTMLInputElement )?.value,
|
|
manage_stock: ( document.querySelector(
|
|
'#_manage_stock'
|
|
) as HTMLInputElement )?.value,
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Get the publish date as a string.
|
|
*
|
|
* @param prefix Prefix for date element selectors.
|
|
* @return string
|
|
*/
|
|
const getPublishDate = ( prefix = '' ) => {
|
|
const month = ( document.querySelector(
|
|
`#${ prefix }mm`
|
|
) as HTMLInputElement )?.value;
|
|
const day = ( document.querySelector(
|
|
`#${ prefix }jj`
|
|
) as HTMLInputElement )?.value;
|
|
const year = ( document.querySelector(
|
|
`#${ prefix }aa`
|
|
) as HTMLInputElement )?.value;
|
|
const hours = ( document.querySelector(
|
|
`#${ prefix }hh`
|
|
) as HTMLInputElement )?.value;
|
|
const seconds = ( document.querySelector(
|
|
`#${ prefix }mn`
|
|
) as HTMLInputElement )?.value;
|
|
|
|
return `${ month }-${ day }-${ year } ${ hours }:${ seconds }`;
|
|
};
|
|
|
|
/**
|
|
* Get the data from the publishing widget.
|
|
*
|
|
* @return object
|
|
*/
|
|
const getPublishingWidgetData = () => {
|
|
return {
|
|
status: ( document.querySelector( '#post_status' ) as HTMLInputElement )
|
|
?.value,
|
|
visibility: ( document.querySelector(
|
|
'input[name="visibility"]:checked'
|
|
) as HTMLInputElement )?.value,
|
|
date: getPublishDate() !== getPublishDate( 'hidden_' ) ? 'yes' : 'no',
|
|
catalog_visibility: ( document.querySelector(
|
|
'input[name="_visibility"]:checked'
|
|
) as HTMLInputElement )?.value,
|
|
featured: ( document.querySelector( '#_featured' ) as HTMLInputElement )
|
|
?.checked,
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Prefix all object keys with a string.
|
|
*
|
|
* @param obj Object to create keys from.
|
|
* @param prefix Prefix used before all keys.
|
|
* @return object
|
|
*/
|
|
const prefixObjectKeys = (
|
|
obj: { [ key: string ]: unknown },
|
|
prefix: string
|
|
) => {
|
|
return Object.fromEntries(
|
|
Object.entries( obj ).map( ( [ k, v ] ) => [ `${ prefix }${ k }`, v ] )
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Initialize all product screen tracks.
|
|
*/
|
|
export const initProductScreenTracks = () => {
|
|
const initialPublishingData = getPublishingWidgetData();
|
|
|
|
document
|
|
.querySelector( '#post-preview' )
|
|
?.addEventListener( 'click', () => {
|
|
recordEvent( 'product_preview_changes' );
|
|
} );
|
|
|
|
document
|
|
.querySelector( '.submitduplicate' )
|
|
?.addEventListener( 'click', () => {
|
|
recordEvent( 'product_copy', getProductData() );
|
|
} );
|
|
|
|
document
|
|
.querySelector( '.submitdelete' )
|
|
?.addEventListener( 'click', () => {
|
|
recordEvent( 'product_delete', getProductData() );
|
|
} );
|
|
|
|
document
|
|
.querySelectorAll(
|
|
'.edit-post-status, .edit-visibility, .edit-timestamp, .edit-catalog-visibility'
|
|
)
|
|
.forEach( ( button ) => {
|
|
button.addEventListener( 'click', () => {
|
|
recordEvent( 'product_publish_widget_edit', {
|
|
...getPublishingWidgetData(),
|
|
...getProductData(),
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
document
|
|
.querySelectorAll(
|
|
'.save-post-status, .save-post-visibility, .save-timestamp, .save-post-visibility'
|
|
)
|
|
.forEach( ( button ) => {
|
|
button.addEventListener( 'click', () => {
|
|
recordEvent( 'product_publish_widget_save', {
|
|
...prefixObjectKeys( getPublishingWidgetData(), 'new_' ),
|
|
...prefixObjectKeys( initialPublishingData, 'current_' ),
|
|
...getProductData(),
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
document
|
|
.querySelectorAll( '.handle-order-lower, .handle-order-higher' )
|
|
.forEach( ( button ) => {
|
|
button.addEventListener( 'click', ( event ) => {
|
|
const postBox = ( event.target as HTMLElement ).closest(
|
|
'.postbox'
|
|
);
|
|
|
|
if ( ! postBox ) {
|
|
return;
|
|
}
|
|
|
|
recordEvent( 'product_widget_order_change', {
|
|
widget: postBox.id,
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
document
|
|
.querySelector( '#show-settings-link' )
|
|
?.addEventListener( 'click', () => {
|
|
recordEvent( 'product_screen_options_open' );
|
|
} );
|
|
|
|
document
|
|
.querySelectorAll( '#adv-settings .metabox-prefs input[type=checkbox]' )
|
|
.forEach( ( input ) => {
|
|
input.addEventListener( 'change', () => {
|
|
recordEvent( 'product_screen_elements', {
|
|
selected_element: ( input as HTMLInputElement ).value,
|
|
checkbox: ( input as HTMLInputElement ).checked,
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
document
|
|
.querySelectorAll( 'input[name="screen_columns"]' )
|
|
.forEach( ( input ) => {
|
|
input.addEventListener( 'change', () => {
|
|
recordEvent( 'product_layout', {
|
|
selected_layout: ( input as HTMLInputElement ).value,
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
document
|
|
.querySelector( '#editor-expand-toggle' )
|
|
?.addEventListener( 'change', ( event ) => {
|
|
recordEvent( 'product_additional_settings', {
|
|
checkbox: ( event.target as HTMLInputElement ).checked,
|
|
} );
|
|
} );
|
|
};
|