Orders.php 2.93 KB
<?php

namespace ACA\WC\Column\User;

use AC;
use AC\Settings\Column\NumberOfItems;
use ACA\WC\Export;
use ACA\WC\Settings\OrderStatuses;
use ACA\WC\Sorting;
use ACP;
use WC_Order;

class Orders extends AC\Column implements ACP\Export\Exportable, ACP\Sorting\Sortable
{

    public function __construct()
    {
        $this->set_type('column-wc-user-orders')
             ->set_label(__('Orders', 'woocommerce'))
             ->set_group('woocommerce');
    }

    public function get_value($user_id)
    {
        $orders = $this->get_raw_value($user_id);

        if ( ! $orders) {
            return $this->get_empty_char();
        }

        $values = [];

        foreach ($orders as $order) {
            $values[] = sprintf(
                '<div class="order order-%s" %s>%s</div>',
                esc_attr($order->get_status()),
                ac_helper()->html->get_tooltip_attr($this->get_order_tooltip($order)),
                ac_helper()->html->link($order->get_edit_order_url(), $order->get_order_number())
            );
        }

        return ac_helper()->html->more($values, $this->get_limit(), '');
    }

    private function get_limit(): int
    {
        $setting_limit = $this->get_setting(NumberOfItems::NAME);

        return $setting_limit instanceof NumberOfItems
            ? $setting_limit->get_number_of_items()
            : 0;
    }

    public function get_raw_value($user_id)
    {
        return wc_get_orders([
            'customer_id'    => $user_id,
            'status'         => $this->get_order_statuses(),
            'orderby'        => 'date',
            'order'          => 'DESC',
            'posts_per_page' => -1,
        ]);
    }

    private function get_order_statuses(): array
    {
        $setting = $this->get_setting(OrderStatuses::NAME);

        return $setting instanceof OrderStatuses
            ? $setting->get_order_status()
            : [];
    }

    public function export()
    {
        return new Export\User\Orders($this);
    }

    private function get_order_tooltip(WC_Order $order): string
    {
        $tooltip = [
            wc_get_order_status_name($order->get_status()),
        ];

        $item_count = $order->get_item_count();

        if ($item_count) {
            $tooltip[] = $item_count . ' ' . __('items', 'codepress-admin-columns');
        }

        $total = $order->get_total();

        if ($total) {
            $tooltip[] = get_woocommerce_currency_symbol($order->get_currency()) . wc_trim_zeros(
                    number_format($total, 2)
                );
        }

        $tooltip[] = ac_format_date(get_option('date_format'), strtotime($order->get_date_created()));

        return implode(' | ', $tooltip);
    }

    public function register_settings()
    {
        $this->add_setting(new OrderStatuses($this))
             ->add_setting(new AC\Settings\Column\NumberOfItems($this));
    }

    public function sorting()
    {
        return new Sorting\User\OrderCount();
    }

}