![JAR search and dependency download from the Maven repository](/logo.png)
META-INF.resources.js.addCommerceChannel.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.channel.web
Show all versions of com.liferay.commerce.channel.web
Liferay Commerce Channel Web
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import {FormUtils, commerceEvents} from 'commerce-frontend-js';
import {createPortletURL} from 'frontend-js-web';
export default function main({getEditCommerceChannelRenderURL, namespace}) {
Liferay.provide(window, `${namespace}apiSubmit`, (form) => {
const API_URL = '/o/headless-commerce-admin-channel/v1.0/channels';
window.parent.Liferay.fire(commerceEvents.IS_LOADING_MODAL, {
isLoading: true,
});
FormUtils.apiSubmit(form, API_URL)
.then((payload) => {
const redirectURL = createPortletURL(
getEditCommerceChannelRenderURL,
{
commerceChannelId: payload.id,
p_auth: Liferay.authToken,
}
);
window.parent.Liferay.fire(commerceEvents.CLOSE_MODAL, {
redirectURL,
successNotification: {
message: Liferay.Language.get(
'your-request-completed-successfully'
),
showSuccessNotification: true,
},
});
})
.catch(() => {
window.parent.Liferay.fire(commerceEvents.IS_LOADING_MODAL, {
isLoading: false,
});
Liferay.Util.openToast({
closeable: true,
delay: {
hide: 5000,
show: 0,
},
duration: 500,
message: Liferay.Language.get(
'an-unexpected-error-occurred'
),
render: true,
title: Liferay.Language.get('danger'),
type: 'danger',
});
});
});
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy