
* Create a dropdown and modal for uploading Video URLs * Add ability to upload video URL to product gallery * Add support for other video providers, minor UI tweaks * Extract translations * Style changes * Adjust dashboard to fetch media oembed data * Update codebase to match the schema * Changes after code review * Update schema.graphql and fixtures * Update defaultMessages.json * Fix failing jest tests * Update schema and types
119 lines
3.2 KiB
TypeScript
119 lines
3.2 KiB
TypeScript
import DialogContentText from "@material-ui/core/DialogContentText";
|
|
import ActionDialog from "@saleor/components/ActionDialog";
|
|
import NotFoundPage from "@saleor/components/NotFoundPage";
|
|
import useNavigator from "@saleor/hooks/useNavigator";
|
|
import useNotifier from "@saleor/hooks/useNotifier";
|
|
import { commonMessages } from "@saleor/intl";
|
|
import React from "react";
|
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
|
|
import ProductMediaPage from "../components/ProductMediaPage";
|
|
import {
|
|
useProductMediaDeleteMutation,
|
|
useProductMediaUpdateMutation
|
|
} from "../mutations";
|
|
import { useProductMediaQuery } from "../queries";
|
|
import {
|
|
productImageUrl,
|
|
ProductImageUrlQueryParams,
|
|
productListUrl,
|
|
productUrl
|
|
} from "../urls";
|
|
|
|
interface ProductMediaProps {
|
|
mediaId: string;
|
|
productId: string;
|
|
params: ProductImageUrlQueryParams;
|
|
}
|
|
|
|
export const ProductImage: React.FC<ProductMediaProps> = ({
|
|
mediaId,
|
|
productId,
|
|
params
|
|
}) => {
|
|
const navigate = useNavigator();
|
|
const notify = useNotifier();
|
|
const intl = useIntl();
|
|
|
|
const handleBack = () => navigate(productUrl(productId));
|
|
|
|
const { data, loading } = useProductMediaQuery({
|
|
displayLoader: true,
|
|
variables: {
|
|
mediaId,
|
|
productId
|
|
}
|
|
});
|
|
|
|
const [updateImage, updateResult] = useProductMediaUpdateMutation({
|
|
onCompleted: data => {
|
|
if (data.productMediaUpdate.errors.length === 0) {
|
|
notify({
|
|
status: "success",
|
|
text: intl.formatMessage(commonMessages.savedChanges)
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
const [deleteImage, deleteResult] = useProductMediaDeleteMutation({
|
|
onCompleted: handleBack
|
|
});
|
|
|
|
const product = data?.product;
|
|
|
|
if (product === null) {
|
|
return <NotFoundPage onBack={() => navigate(productListUrl())} />;
|
|
}
|
|
|
|
const handleDelete = () => deleteImage({ variables: { id: mediaId } });
|
|
const handleImageClick = (id: string) => () =>
|
|
navigate(productImageUrl(productId, id));
|
|
const handleUpdate = (formData: { description: string }) => {
|
|
updateImage({
|
|
variables: {
|
|
alt: formData.description,
|
|
id: mediaId
|
|
}
|
|
});
|
|
};
|
|
const mediaObj = data?.product?.mainImage;
|
|
|
|
return (
|
|
<>
|
|
<ProductMediaPage
|
|
disabled={loading}
|
|
product={data?.product?.name}
|
|
mediaObj={mediaObj || null}
|
|
media={data?.product?.media}
|
|
onBack={handleBack}
|
|
onDelete={() =>
|
|
navigate(
|
|
productImageUrl(productId, mediaId, {
|
|
action: "remove"
|
|
})
|
|
)
|
|
}
|
|
onRowClick={handleImageClick}
|
|
onSubmit={handleUpdate}
|
|
saveButtonBarState={updateResult.status}
|
|
/>
|
|
<ActionDialog
|
|
onClose={() => navigate(productImageUrl(productId, mediaId), true)}
|
|
onConfirm={handleDelete}
|
|
open={params.action === "remove"}
|
|
title={intl.formatMessage({
|
|
defaultMessage: "Delete Image",
|
|
description: "dialog header"
|
|
})}
|
|
variant="delete"
|
|
confirmButtonState={deleteResult.status}
|
|
>
|
|
<DialogContentText>
|
|
<FormattedMessage defaultMessage="Are you sure you want to delete this image?" />
|
|
</DialogContentText>
|
|
</ActionDialog>
|
|
</>
|
|
);
|
|
};
|
|
export default ProductImage;
|