saleor-dashboard/src/giftCards/GiftCardUpdate/GiftCardUpdateInfoCard/GiftCardUpdateInfoCardContent.tsx

144 lines
3.9 KiB
TypeScript
Raw Normal View History

Add Gift Cards #1 (#1291) * Add gift cards section to menu and add empty list component * Update messages * Change styling of app wide page header to match design * Add gift cards list table wip * Update prop name for status chip component to make it more consistent with other components * Replace old trash icon with new one * Add Size type based on action dialog sizes to be used app wide * Add delete icon button * Add new sizes option to status chip component * Add / update gift cards list components * Add bulk actions type * Work on gift cards list WIP * Small refactor * Fix styling of gift cards table * Remove temp files * Remove unnecessary type * Add gift cards section to menu and add empty list component * Update schema and types * Add link to gift card update page to gift cards list and add route to gift cards index * Extract order page title with status chip into a separate generic component and use it in order page title * wip * Update money component * Add gift card details card balance section * Refactor gift card details * Add vertical spacer component * Update schema and types * Add gift card tag input component along with necessary queries * Add gift card tag input to gift card update page * Add gift card update details card expiry section WIP * Add time period select field WIP * Post rebase refactor * Add time period select field to gift card update view * Fixes after review * Update schema, types and gift cards query * Add getFullName util function and replace existing manual usages * Add text with select field component * Add gift card update info card and refactor * Fix import * Add displaying order link in gift card update * Refactor * Connect gift card list to api * refactor * Add gift card create dialog * Fix gift card list styles, change location for gift card list query, minor refactor * Fix menu structure data for gift cards * Add channel currencies type to shop * Refactor text with select field * Add gift card expiry select component * Add gift card error type and fragment * Update global types * Add default prop to getFormErrors function * Move gift card details provider to providers dir * Update global utils with mapSingleValueNodeToChoice function * Update gift card tag input * Move and refactor time period field * Update schema * move format money function to other money ulities * Update gift card urls * Add content or skeleton component * Add gift card create util for extracting expiry settings input data * Remove content or skeleton component and move displaying logic to existing skeleton * Move displaying logic of gift card create dialog to list * Refactor * Add hooks for gift card bulk actions and gift card list to be used instead of context directly * Fix types for text with select field + add parsing for number typed field * Add initial currency to gift card create form * Fix gift card create dialog closing animation * Add gift card update info card * Refactor gift card update details card * Add gift card balance dialog * Move gift card update form providers to providers dir * Connect gift card update page to api, add necessary contexts etc. * Refactor * Refactor * Add hooks to use instead of gift card contexts directly * Fix types * Fix text field target name missing in passed event in text with select field * Add minimal value option to text with select field, add to gift card inputs * Fix gift card update balance dialog not changing hasChanged prop after submit * Refactor * Fix update balance dialog crashing the app when enetered wrong amount * Fix gift card list table header styles * Add enable / disable section to gift card update * Refactor * Refactor * Refactor * Add metadata to gift card update * Update messages ids * Refactor * Refactor * Refactor * Refactor * Update types after rebase * Fix types * Fixes after qa * Fix tests
2021-08-16 13:44:00 +00:00
import { Typography } from "@material-ui/core";
import { appUrl } from "@saleor/apps/urls";
import CardSpacer from "@saleor/components/CardSpacer";
import Link from "@saleor/components/Link";
import { customerUrl } from "@saleor/customers/urls";
import useDateLocalize from "@saleor/hooks/useDateLocalize";
import useNavigator from "@saleor/hooks/useNavigator";
import { getFullName, getStringOrPlaceholder } from "@saleor/misc";
import Label from "@saleor/orders/components/OrderHistory/Label";
import { getOrderNumberLinkObject } from "@saleor/orders/components/OrderHistory/utils";
import { productUrl } from "@saleor/products/urls";
import { staffMemberDetailsUrl } from "@saleor/staff/urls";
import { GiftCardEventsEnum } from "@saleor/types/globalTypes";
import React from "react";
import { MessageDescriptor, useIntl } from "react-intl";
import useGiftCardDetails from "../providers/GiftCardDetailsProvider/hooks/useGiftCardDetails";
import { giftCardUpdateInfoCardMessages as messages } from "./messages";
const PLACEHOLDER = "-";
const GiftCardUpdateInfoCardContent: React.FC = () => {
const intl = useIntl();
const localizeDate = useDateLocalize();
const navigate = useNavigator();
const { giftCard } = useGiftCardDetails();
const {
created,
createdByEmail,
createdBy,
usedByEmail,
usedBy,
app,
product,
events
} = giftCard;
const cardIssuedEvent = events.find(
({ type }) => type === GiftCardEventsEnum.ISSUED
);
const getBuyerFieldData = (): {
label: MessageDescriptor;
name: string;
url?: string;
} => {
// createdBy can be either customer or staff hence
// we check for issued event
if (cardIssuedEvent) {
const userName = getFullName(createdBy);
return {
label: messages.issuedByLabel,
name: userName || createdByEmail,
url: staffMemberDetailsUrl(createdBy.id)
};
}
if (createdByEmail) {
return {
label: messages.boughtByLabel,
name: createdByEmail
};
}
if (app) {
return {
label: messages.issuedByAppLabel,
name: app.name,
url: appUrl(app.id)
};
}
return {
label: messages.boughtByLabel,
name: getFullName(createdBy),
url: customerUrl(createdBy?.id)
};
};
const orderData =
cardIssuedEvent && cardIssuedEvent.orderId
? getOrderNumberLinkObject({
id: cardIssuedEvent.orderId,
number: cardIssuedEvent.orderNumber
})
: null;
const {
label: buyerLabelMessage,
name: buyerName,
url: buyerUrl
} = getBuyerFieldData();
return (
<>
<Label text={intl.formatMessage(messages.creationLabel)} />
<Typography>{localizeDate(created, "DD MMMM YYYY")}</Typography>
<CardSpacer />
<Label text={intl.formatMessage(messages.orderNumberLabel)} />
{orderData ? (
<Link onClick={() => navigate(orderData.link)}>{orderData.text}</Link>
) : (
<Typography>{PLACEHOLDER}</Typography>
)}
<CardSpacer />
<Label text={intl.formatMessage(messages.productLabel)} />
{product ? (
<Link onClick={() => navigate(productUrl(product?.id))}>
{product?.name}
</Link>
) : (
<Typography>{PLACEHOLDER}</Typography>
)}
<CardSpacer />
<Label text={intl.formatMessage(buyerLabelMessage)} />
{buyerUrl ? (
<Link onClick={() => navigate(buyerUrl)}>{buyerName}</Link>
) : (
<Typography>{buyerName}</Typography>
)}
<CardSpacer />
<Label text={intl.formatMessage(messages.usedByLabel)} />
{usedBy ? (
<Link onClick={() => navigate(customerUrl(usedBy.id))}>
{getFullName(usedBy)}
</Link>
) : (
<Typography>
{getStringOrPlaceholder(usedByEmail, PLACEHOLDER)}
</Typography>
)}
</>
);
};
export default GiftCardUpdateInfoCardContent;