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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Wishlist\Block;
use Magento\Catalog\Helper\Image;
use Magento\Catalog\Model\Product\Image\UrlBuilder;
use Magento\Framework\View\ConfigInterface;
use Magento\Framework\App\ObjectManager;
/**
* Wishlist Product Items abstract Block
*/
abstract class AbstractBlock extends \Magento\Catalog\Block\Product\AbstractProduct
{
/**
* Wishlist Product Items Collection
*
* @var \Magento\Wishlist\Model\ResourceModel\Item\Collection
*/
protected $_collection;
/**
* Store wishlist Model
*
* @var \Magento\Wishlist\Model\Wishlist
*/
protected $_wishlist;
/**
* @var \Magento\Framework\App\Http\Context
*/
protected $httpContext;
/**
* @var ConfigInterface
*/
private $viewConfig;
/**
* @var UrlBuilder
*/
private $imageUrlBuilder;
/**
* @param \Magento\Catalog\Block\Product\Context $context
* @param \Magento\Framework\App\Http\Context $httpContext
* @param array $data
* @param ConfigInterface|null $config
* @param UrlBuilder|null $urlBuilder
*/
public function __construct(
\Magento\Catalog\Block\Product\Context $context,
\Magento\Framework\App\Http\Context $httpContext,
array $data = [],
ConfigInterface $config = null,
UrlBuilder $urlBuilder = null
) {
$this->httpContext = $httpContext;
parent::__construct(
$context,
$data
);
$this->viewConfig = $config ?? ObjectManager::getInstance()->get(ConfigInterface::class);
$this->imageUrlBuilder = $urlBuilder ?? ObjectManager::getInstance()->get(UrlBuilder::class);
}
/**
* Retrieve Wishlist Data Helper
*
* @return \Magento\Wishlist\Helper\Data
*/
protected function _getHelper()
{
return $this->_wishlistHelper;
}
/**
* Retrieve Wishlist model
*
* @return \Magento\Wishlist\Model\Wishlist
*/
protected function _getWishlist()
{
return $this->_getHelper()->getWishlist();
}
/**
* Prepare additional conditions to collection
*
* @param \Magento\Wishlist\Model\ResourceModel\Item\Collection $collection
* @return \Magento\Wishlist\Block\Customer\Wishlist
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
protected function _prepareCollection($collection)
{
return $this;
}
/**
* Create wishlist item collection
*
* @return \Magento\Wishlist\Model\ResourceModel\Item\Collection
*/
protected function _createWishlistItemCollection()
{
return $this->_getWishlist()->getItemCollection();
}
/**
* Retrieve Wishlist Product Items collection
*
* @return \Magento\Wishlist\Model\ResourceModel\Item\Collection
*/
public function getWishlistItems()
{
if ($this->_collection === null) {
$this->_collection = $this->_createWishlistItemCollection();
$this->_prepareCollection($this->_collection);
}
return $this->_collection;
}
/**
* Retrieve wishlist instance
*
* @return \Magento\Wishlist\Model\Wishlist
*/
public function getWishlistInstance()
{
return $this->_getWishlist();
}
/**
* Retrieve params for Removing item from wishlist
*
* @param \Magento\Catalog\Model\Product|\Magento\Wishlist\Model\Item $item
*
* @return string
*/
public function getItemRemoveParams($item)
{
return $this->_getHelper()->getRemoveParams($item);
}
/**
* Retrieve Add Item to shopping cart params for POST request
*
* @param string|\Magento\Catalog\Model\Product|\Magento\Wishlist\Model\Item $item
* @return string
*/
public function getItemAddToCartParams($item)
{
return $this->_getHelper()->getAddToCartParams($item);
}
/**
* Retrieve Add Item to shopping cart URL from shared wishlist
*
* @param string|\Magento\Catalog\Model\Product|\Magento\Wishlist\Model\Item $item
* @return string
*/
public function getSharedItemAddToCartUrl($item)
{
return $this->_getHelper()->getSharedAddToCartUrl($item);
}
/**
* Retrieve URL for adding All items to shopping cart from shared wishlist
*
* @return string
*/
public function getSharedAddAllToCartUrl()
{
return $this->_getHelper()->getSharedAddAllToCartUrl();
}
/**
* Retrieve params for adding Product to wishlist
*
* @param \Magento\Catalog\Model\Product $product
* @return string
*/
public function getAddToWishlistParams($product)
{
return $this->_getHelper()->getAddParams($product);
}
/**
* Returns item configure url in wishlist
*
* @param \Magento\Catalog\Model\Product|\Magento\Wishlist\Model\Item $product
*
* @return string
*/
public function getItemConfigureUrl($product)
{
return $this->_getHelper()->getConfigureUrl($product);
}
/**
* Retrieve Escaped Description for Wishlist Item
*
* @param \Magento\Catalog\Model\Product $item
* @return string
*/
public function getEscapedDescription($item)
{
if ($item->getDescription()) {
return $this->escapeHtml($item->getDescription());
}
return ' ';
}
/**
* Check Wishlist item has description
*
* @param \Magento\Catalog\Model\Product $item
* @return bool
*/
public function hasDescription($item)
{
return trim($item->getDescription()) != '';
}
/**
* Retrieve formated Date
*
* @param string $date
* @deprecated 101.1.1
* @return string
*/
public function getFormatedDate($date)
{
return $this->getFormattedDate($date);
}
/**
* Retrieve formatted Date
*
* @param string $date
* @return string
*/
public function getFormattedDate($date)
{
return $this->formatDate($date, \IntlDateFormatter::MEDIUM);
}
/**
* Check is the wishlist has a salable product(s)
*
* @return bool
*/
public function isSaleable()
{
foreach ($this->getWishlistItems() as $item) {
if ($item->getProduct()->isSaleable()) {
return true;
}
}
return false;
}
/**
* Retrieve wishlist loaded items count
*
* @return int
*/
public function getWishlistItemsCount()
{
return $this->_getWishlist()->getItemsCount();
}
/**
* Retrieve Qty from item
*
* @param \Magento\Wishlist\Model\Item|\Magento\Catalog\Model\Product $item
* @return float
*/
public function getQty($item)
{
$qty = $item->getQty() * 1;
if (!$qty) {
$qty = 1;
}
return $qty;
}
/**
* Check is the wishlist has items
*
* @return bool
*/
public function hasWishlistItems()
{
return $this->getWishlistItemsCount() > 0;
}
/**
* Retrieve URL to item Product
*
* @param \Magento\Wishlist\Model\Item|\Magento\Catalog\Model\Product $item
* @param array $additional
* @return string
*/
public function getProductUrl($item, $additional = [])
{
return $this->_getHelper()->getProductUrl($item, $additional);
}
/**
* Product image url getter
*
* @param \Magento\Catalog\Model\Product $product
* @return string
*/
public function getImageUrl($product)
{
$viewImageConfig = $this->viewConfig->getViewConfig()->getMediaAttributes(
'Magento_Catalog',
Image::MEDIA_TYPE_CONFIG_NODE,
'wishlist_small_image'
);
return $this->imageUrlBuilder->getUrl(
$product->getData($viewImageConfig['type']),
'wishlist_small_image'
);
}
/**
* Return HTML block with price
*
* @param \Magento\Catalog\Model\Product\Configuration\Item\ItemInterface $item
* @param string $priceType
* @param string $renderZone
* @param array $arguments
* @return string|null
*/
public function getItemPriceHtml(
\Magento\Catalog\Model\Product\Configuration\Item\ItemInterface $item,
$priceType = \Magento\Catalog\Pricing\Price\ConfiguredPriceInterface::CONFIGURED_PRICE_CODE,
$renderZone = \Magento\Framework\Pricing\Render::ZONE_ITEM_LIST,
array $arguments = []
) {
/** @var \Magento\Framework\Pricing\Render $priceRender */
$priceRender = $this->getLayout()->getBlock('product.price.render.default');
$priceRender->setItem($item);
$arguments += [
'zone' => $renderZone,
'render_block' => $priceRender
];
return $priceRender ? $priceRender->render($priceType, $item->getProduct(), $arguments) : null;
}
}