✨ Features: - Implemented API integration for all 7 dashboard pages - Added Analytics REST API controller with 7 endpoints - Full loading and error states with retry functionality - Seamless dummy data toggle for development 📊 Dashboard Pages: - Customers Analytics (complete) - Revenue Analytics (complete) - Orders Analytics (complete) - Products Analytics (complete) - Coupons Analytics (complete) - Taxes Analytics (complete) - Dashboard Overview (complete) 🔌 Backend: - Created AnalyticsController.php with REST endpoints - All endpoints return 501 (Not Implemented) for now - Ready for HPOS-based implementation - Proper permission checks 🎨 Frontend: - useAnalytics hook for data fetching - React Query caching - ErrorCard with retry functionality - TypeScript type safety - Zero build errors 📝 Documentation: - DASHBOARD_API_IMPLEMENTATION.md guide - Backend implementation roadmap - Testing strategy 🔧 Build: - All pages compile successfully - Production-ready with dummy data fallback - Zero TypeScript errors
56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
|
namespace WooNooW\Admin\Rest;
|
|
|
|
use WP_REST_Request;
|
|
use WooNooW\Admin\Compat\SettingsProvider;
|
|
|
|
if ( ! defined('ABSPATH') ) exit;
|
|
|
|
class SettingsController {
|
|
public static function init() {
|
|
add_action('rest_api_init', [__CLASS__, 'register']);
|
|
}
|
|
|
|
public static function can_manage(): bool {
|
|
return current_user_can('manage_woocommerce');
|
|
}
|
|
|
|
public static function register() {
|
|
register_rest_route('wnw/v1', '/settings/tabs', [
|
|
'methods' => 'GET',
|
|
'callback' => [__CLASS__, 'tabs'],
|
|
'permission_callback' => [__CLASS__, 'can_manage'],
|
|
]);
|
|
|
|
register_rest_route('wnw/v1', '/settings/(?P<tab>[a-z0-9_\-]+)', [
|
|
[
|
|
'methods' => 'GET',
|
|
'callback' => [__CLASS__, 'get_tab'],
|
|
'permission_callback' => [__CLASS__, 'can_manage'],
|
|
'args' => ['section' => ['required' => false]],
|
|
],
|
|
[
|
|
'methods' => 'POST',
|
|
'callback' => [__CLASS__, 'save_tab'],
|
|
'permission_callback' => [__CLASS__, 'can_manage'],
|
|
],
|
|
]);
|
|
}
|
|
|
|
public static function tabs(WP_REST_Request $req) {
|
|
return ['tabs' => SettingsProvider::get_tabs()];
|
|
}
|
|
|
|
public static function get_tab(WP_REST_Request $req) {
|
|
$tab = sanitize_key($req['tab']);
|
|
$section = sanitize_text_field($req->get_param('section') ?? '');
|
|
return SettingsProvider::get_tab_schema($tab, $section);
|
|
}
|
|
|
|
public static function save_tab(WP_REST_Request $req) {
|
|
$tab = sanitize_key($req['tab']);
|
|
$section = sanitize_text_field($req->get_param('section') ?? '');
|
|
$payload = (array) $req->get_json_params();
|
|
return SettingsProvider::save_tab($tab, $section, $payload);
|
|
}
|
|
} |