RetryButton.php 1.69 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\AsynchronousOperations\Block\Adminhtml\Bulk\Details;

use Magento\Framework\View\Element\UiComponent\Control\ButtonProviderInterface;

/**
 * Retry button configuration provider
 */
class RetryButton implements ButtonProviderInterface
{
    /**
     * @var \Magento\AsynchronousOperations\Model\Operation\Details
     */
    private $details;

    /**
     * @var \Magento\Framework\App\RequestInterface
     */
    private $request;

    /**
     * @var string
     */
    private $targetName;

    /**
     * RetryButton constructor.
     *
     * @param \Magento\AsynchronousOperations\Model\Operation\Details $details
     * @param \Magento\Framework\App\RequestInterface $request
     * @param string $targetName
     */
    public function __construct(
        \Magento\AsynchronousOperations\Model\Operation\Details $details,
        \Magento\Framework\App\RequestInterface $request,
        $targetName = 'bulk_details_form.bulk_details_form'
    ) {
        $this->details = $details;
        $this->request = $request;
        $this->targetName = $targetName;
    }

    /**
     * {@inheritdoc}
     */
    public function getButtonData()
    {
        $uuid = $this->request->getParam('uuid');
        $details = $this->details->getDetails($uuid);
        if ($details['failed_retriable'] === 0) {
            return [];
        }
        return [
            'label' => __('Retry'),
            'class' => 'retry primary',
            'data_attribute' => [
                'mage-init' => ['button' => ['event' => 'save']],
                'form-role' => 'save',
            ],
        ];
    }
}