File: //proc/self/cwd/nueva/admin346k89tef/themes/new-theme/js/pages/product/services/images.js
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
import Router from '@components/router';
const router = new Router();
const {$} = window;
export const getProductImages = async (productId) => {
const imagesUrl = router.generate('admin_products_v2_get_images', {
productId,
});
return $.get(imagesUrl);
};
export const saveImageInformations = async (selectedFile, token, formName) => {
const saveUrl = router.generate('admin_products_v2_update_image', {
productImageId: selectedFile.image_id,
});
const data = {};
data[`${formName}[is_cover]`] = selectedFile.is_cover ? 1 : 0;
Object.keys(selectedFile.legends).forEach((langId) => {
data[`${formName}[legend][${langId}]`] = selectedFile.legends[langId];
});
data[`${formName}[_token]`] = token;
return $.ajax(saveUrl, {
method: 'PATCH',
data,
});
};
export const replaceImage = async (selectedFile, newFile, formName, token) => {
const replaceUrl = router.generate('admin_products_v2_update_image', {
productImageId: selectedFile.image_id,
});
const formData = new FormData();
formData.append(`${formName}[file]`, newFile);
formData.append(`${formName}[_token]`, token);
formData.append('_method', 'PATCH');
return $.ajax(replaceUrl, {
method: 'POST',
data: formData,
processData: false,
contentType: false,
});
};
export const saveImagePosition = async (productImageId, newPosition, formName, token) => {
const sortUrl = router.generate('admin_products_v2_update_image', {
productImageId,
});
const data = {};
data[`${formName}[position]`] = newPosition;
data[`${formName}[_token]`] = token;
return $.ajax(sortUrl, {
method: 'PATCH',
data,
});
};
export const removeProductImage = async (productImageId) => {
const deleteUrl = router.generate('admin_products_v2_delete_image', {
productImageId,
});
return $.post(deleteUrl);
};
export default {
getProductImages,
saveImageInformations,
replaceImage,
saveImagePosition,
removeProductImage,
};