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
67
68
69
70
71
72
73
74
75
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\InstantPurchase\Block;
use Magento\Framework\View\Element\Template;
use Magento\Framework\View\Element\Template\Context;
use Magento\InstantPurchase\Model\Config;
/**
* Configuration for JavaScript instant purchase button component.
*
* @api
* @since 100.2.0
*/
class Button extends Template
{
/**
* @var Config
*/
private $instantPurchaseConfig;
/**
* Button constructor.
* @param Context $context
* @param Config $instantPurchaseConfig
* @param array $data
*/
public function __construct(
Context $context,
Config $instantPurchaseConfig,
array $data = []
) {
parent::__construct($context, $data);
$this->instantPurchaseConfig = $instantPurchaseConfig;
}
/**
* Checks if button enabled.
*
* @return bool
* @since 100.2.0
*/
public function isEnabled(): bool
{
return $this->instantPurchaseConfig->isModuleEnabled($this->getCurrentStoreId());
}
/**
* @inheritdoc
* @since 100.2.0
*/
public function getJsLayout(): string
{
$buttonText = $this->instantPurchaseConfig->getButtonText($this->getCurrentStoreId());
$purchaseUrl = $this->getUrl('instantpurchase/button/placeOrder', ['_secure' => true]);
// String data does not require escaping here and handled on transport level and on client side
$this->jsLayout['components']['instant-purchase']['config']['buttonText'] = $buttonText;
$this->jsLayout['components']['instant-purchase']['config']['purchaseUrl'] = $purchaseUrl;
return parent::getJsLayout();
}
/**
* Returns active store view identifier.
*
* @return int
*/
private function getCurrentStoreId(): int
{
return $this->_storeManager->getStore()->getId();
}
}