2023-01-17 18:04:42 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { useSelect } from '@wordpress/data';
|
2023-01-18 17:12:50 +00:00
|
|
|
import { __, sprintf } from '@wordpress/i18n';
|
2023-01-17 18:04:42 +00:00
|
|
|
|
2022-12-23 13:21:52 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { InstalledChannel } from '~/marketing/types';
|
2023-01-17 18:04:42 +00:00
|
|
|
import { STORE_KEY } from '~/marketing/data-multichannel/constants';
|
|
|
|
import { ApiFetchError, Channel, Channels } from '../data-multichannel/types';
|
2022-12-23 13:21:52 +00:00
|
|
|
|
|
|
|
type UseRegisteredChannels = {
|
|
|
|
loading: boolean;
|
|
|
|
data: Array< InstalledChannel >;
|
2023-01-17 18:04:42 +00:00
|
|
|
error?: ApiFetchError;
|
2022-12-23 13:21:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-14 12:11:40 +00:00
|
|
|
// // TODO: To be removed. This is for testing loading state.
|
|
|
|
// export const useRegisteredChannels = () => {
|
|
|
|
// // TODO: call API here to get data.
|
|
|
|
// // The following are just dummy data for testing now.
|
|
|
|
// return {
|
|
|
|
// loading: true,
|
|
|
|
// data: [],
|
|
|
|
// };
|
|
|
|
// };
|
|
|
|
|
|
|
|
// // TODO: To be removed. This is for testing isSetupCompleted = false.
|
|
|
|
// export const useRegisteredChannels = () => {
|
|
|
|
// // TODO: call API here to get data.
|
|
|
|
// // The following are just dummy data for testing now.
|
|
|
|
// return {
|
|
|
|
// loading: false,
|
|
|
|
// data: [
|
|
|
|
// {
|
|
|
|
// slug: 'google-listings-and-ads',
|
|
|
|
// title: 'Google Listings and Ads',
|
|
|
|
// description:
|
|
|
|
// 'Get in front of shoppers and drive traffic so you can grow your business with Smart Shopping Campaigns and free listings.',
|
|
|
|
// icon: 'https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google.svg',
|
|
|
|
// isSetupCompleted: false,
|
|
|
|
// setupUrl: 'https://www.example.com/setup',
|
|
|
|
// manageUrl: 'https://www.example.com/manage',
|
|
|
|
// syncStatus: 'synced' as const,
|
|
|
|
// issueType: 'none' as const,
|
|
|
|
// issueText: 'No issues to resolve',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// };
|
|
|
|
// };
|
|
|
|
|
|
|
|
// // TODO: To be removed. This is for testing error state.
|
|
|
|
// export const useRegisteredChannels = () => {
|
|
|
|
// // TODO: call API here to get data.
|
|
|
|
// // The following are just dummy data for testing now.
|
|
|
|
// return {
|
|
|
|
// loading: false,
|
|
|
|
// data: [
|
|
|
|
// {
|
|
|
|
// slug: 'google-listings-and-ads',
|
|
|
|
// title: 'Google Listings and Ads',
|
|
|
|
// description:
|
|
|
|
// 'Get in front of shoppers and drive traffic so you can grow your business with Smart Shopping Campaigns and free listings.',
|
|
|
|
// icon: 'https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google.svg',
|
|
|
|
// isSetupCompleted: true,
|
|
|
|
// setupUrl: 'https://www.example.com/setup',
|
|
|
|
// manageUrl: 'https://www.example.com/manage',
|
|
|
|
// syncStatus: 'failed' as const,
|
|
|
|
// issueType: 'error' as const,
|
|
|
|
// issueText: '3 issues to resolve',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// };
|
|
|
|
// };
|
|
|
|
|
2023-01-17 18:04:42 +00:00
|
|
|
// // TODO: To be removed. This is for testing everything works okay.
|
|
|
|
// export const useRegisteredChannels = (): UseRegisteredChannels => {
|
|
|
|
// // TODO: call API here to get data.
|
|
|
|
// // The following are just dummy data for testing now.
|
|
|
|
// return {
|
|
|
|
// loading: false,
|
|
|
|
// data: [
|
|
|
|
// {
|
|
|
|
// slug: 'google-listings-and-ads',
|
|
|
|
// title: 'Google Listings and Ads',
|
|
|
|
// description:
|
|
|
|
// 'Get in front of shoppers and drive traffic so you can grow your business with Smart Shopping Campaigns and free listings.',
|
|
|
|
// icon: 'https://woocommerce.com/wp-content/plugins/wccom-plugins/marketing-tab-rest-api/icons/google.svg',
|
|
|
|
// isSetupCompleted: true,
|
|
|
|
// setupUrl: 'https://www.example.com/setup',
|
|
|
|
// manageUrl: 'https://www.example.com/manage',
|
|
|
|
// syncStatus: 'synced' as const,
|
|
|
|
// issueType: 'none' as const,
|
|
|
|
// issueText: 'No issues to resolve',
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// };
|
|
|
|
// };
|
|
|
|
|
|
|
|
const convert = ( data: Channel ): InstalledChannel => {
|
|
|
|
// TODO: map all the fields correctly from API to UI.
|
2023-01-18 17:12:50 +00:00
|
|
|
|
|
|
|
const issueType = data.errors_count >= 1 ? 'error' : 'none';
|
|
|
|
const issueText =
|
|
|
|
data.errors_count >= 1
|
|
|
|
? sprintf(
|
|
|
|
// translators: %d: The number of issues to resolve.
|
|
|
|
__( '%d issues to resolve', 'woocommerce' ),
|
|
|
|
data.errors_count
|
|
|
|
)
|
|
|
|
: __( 'No issues to resolve', 'woocommerce' );
|
|
|
|
|
2022-12-08 15:53:36 +00:00
|
|
|
return {
|
2023-01-17 18:04:42 +00:00
|
|
|
slug: data.slug,
|
|
|
|
title: data.name,
|
|
|
|
description: data.description,
|
|
|
|
icon: data.icon,
|
|
|
|
isSetupCompleted: data.is_setup_completed,
|
|
|
|
setupUrl: data.settings_url,
|
|
|
|
manageUrl: data.settings_url,
|
|
|
|
syncStatus: 'synced',
|
2023-01-18 17:12:50 +00:00
|
|
|
issueType,
|
|
|
|
issueText,
|
2022-12-08 15:53:36 +00:00
|
|
|
};
|
|
|
|
};
|
2023-01-17 18:04:42 +00:00
|
|
|
|
|
|
|
export const useRegisteredChannels = (): UseRegisteredChannels => {
|
|
|
|
return useSelect( ( select ) => {
|
|
|
|
const { hasFinishedResolution, getChannels } = select( STORE_KEY );
|
|
|
|
const channels = getChannels< Channels >();
|
|
|
|
|
|
|
|
return {
|
|
|
|
loading: ! hasFinishedResolution( 'getChannels' ),
|
|
|
|
data: channels.data?.map( convert ) || [],
|
|
|
|
error: channels.error,
|
|
|
|
};
|
|
|
|
} );
|
|
|
|
};
|