Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/view/base/web/js/product/list/columns/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/view/base/web/js/product/list/columns/image.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
    'underscore',
    'Magento_Ui/js/grid/columns/column',
    'Magento_Catalog/js/product/list/column-status-validator'
], function (_, Element, columnStatusValidator) {
    'use strict';

    return Element.extend({
        defaults: {
            bodyTmpl: 'Magento_Catalog/product/list/columns/image',
            imageCode: 'default',
            image: {}
        },

        /**
         * Find image by code in scope of images
         *
         * @param {Object} images
         * @returns {*|T}
         */
        getImage: function (images) {
            return _.filter(images, function (image) {
                return this.imageCode === image.code;
            }, this).pop();
        },

        /**
         * Get image path.
         *
         * @param {Object} row
         * @return {String}
         */
        getImageUrl: function (row) {
            return this.getImage(row.images).url;
        },

        /**
         * Get image box width.
         *
         * @param {Object} row
         * @return {Number}
         */
        getWidth: function (row) {
            return this.getImage(row.images).width;
        },

        /**
         * Get image box height.
         *
         * @param {Object} row
         * @return {Number}
         */
        getHeight: function (row) {
            return this.getImage(row.images).height;
        },

        /**
         * Get resized image width.
         *
         * @param {Object} row
         * @return {Number}
         */
        getResizedImageWidth: function (row) {
            return this.getImage(row.images)['resized_width'];
        },

        /**
         * Get resized image height.
         *
         * @param {Object} row
         * @return {Number}
         */
        getResizedImageHeight: function (row) {
            return this.getImage(row.images)['resized_height'];
        },

        /**
         * Get image alt text.
         *
         * @param {Object} row
         * @return {String}
         */
        getLabel: function (row) {
            if (!this.imageExists(row)) {
                return this._super();
            }

            return this.getImage(row.images).label;
        },

        /**
         * Check if image exist.
         *
         * @param {Object} row
         * @return {Boolean}
         */
        imageExists: function (row) {
            return this.getImage(row.images) !== 'undefined';
        },

        /**
         * Check if component must be shown.
         *
         * @return {Boolean}
         */
        isAllowed: function () {
            return columnStatusValidator.isValid(this.source(), 'image', 'show_attributes');
        }
    });
});