Current File : /home/jeconsul/public_html/wp-content/plugins/suremails/src/api/dashboard.js
// @api/dashboard.js
import apiFetch from '@wordpress/api-fetch';
import { __ } from '@wordpress/i18n';

/**
 * Fetches dashboard data.
 *
 * @return {Promise<Object>} The response containing dashboard data.
 */
export const fetchDashboardData = async () => {
	try {
		const response = await apiFetch( {
			path: '/suremails/v1/dashboard-data',
			method: 'GET',
			headers: {
				'X-WP-Nonce': suremails.nonce,
			},
		} );

		return response;
	} catch ( error ) {
		throw new Error(
			error.message ||
				__( 'There was an issue fetching dashboard data.', 'suremails' )
		);
	}
};

/**
 * Fetches email statistics based on a date range.
 *
 * @param {Object} dates      - The date range.
 * @param {string} dates.from - The start date in 'yyyy/MM/dd' format.
 * @param {string} dates.to   - The end date in 'yyyy/MM/dd' format.
 * @return {Promise<Object>} The response containing email statistics.
 */
export const fetchEmailStats = async ( dates ) => {
	if ( ! dates.from || ! dates.to ) {
		throw new Error(
			__( 'Both start and end dates are required.', 'suremails' )
		);
	}

	try {
		const response = await apiFetch( {
			path: '/suremails/v1/email-stats',
			method: 'POST',
			headers: {
				'X-WP-Nonce': suremails.nonce,
				'Content-Type': 'application/json',
			},
			body: JSON.stringify( {
				date_from: dates.from,
				date_to: dates.to,
			} ),
		} );

		return response;
	} catch ( error ) {
		throw new Error(
			error.message ||
				__(
					'There was an issue fetching email statistics.',
					'suremails'
				)
		);
	}
};