saleor-dashboard/src/misc.ts

350 lines
8.8 KiB
TypeScript
Raw Normal View History

2019-08-09 11:14:35 +00:00
import moment from "moment-timezone";
2019-08-12 11:47:38 +00:00
import { MutationFunction, MutationResult } from "react-apollo";
2019-10-17 11:47:11 +00:00
import { defineMessages, IntlShape } from "react-intl";
2019-08-09 10:26:22 +00:00
import urlJoin from "url-join";
2019-06-19 14:40:52 +00:00
import { ConfirmButtonTransitionState } from "./components/ConfirmButton/ConfirmButton";
import { APP_MOUNT_URI } from "./config";
2019-10-25 12:18:52 +00:00
import { AddressType, AddressTypeInput } from "./customers/types";
2019-06-19 14:40:52 +00:00
import { PartialMutationProviderOutput, UserError } from "./types";
import {
2019-10-25 12:18:52 +00:00
AddressInput,
2019-06-19 14:40:52 +00:00
AuthorizationKeyType,
2019-10-25 12:18:52 +00:00
CountryCode,
2019-06-19 14:40:52 +00:00
OrderStatus,
2019-10-17 11:47:11 +00:00
PaymentChargeStatusEnum
2019-06-19 14:40:52 +00:00
} from "./types/globalTypes";
export type RequireAtLeastOne<T, Keys extends keyof T = keyof T> = Pick<
T,
Exclude<keyof T, Keys>
> &
{ [K in Keys]-?: Required<Pick<T, K>> }[Keys];
export type RequireOnlyOne<T, Keys extends keyof T = keyof T> = Pick<
T,
Exclude<keyof T, Keys>
> &
{
[K in Keys]-?: Required<Pick<T, K>> &
2019-08-29 10:55:56 +00:00
Partial<Record<Exclude<Keys, K>, undefined>>;
2019-06-19 14:40:52 +00:00
}[Keys];
export function renderCollection<T>(
collection: T[],
renderItem: (
item: T | undefined,
index: number | undefined,
collection: T[]
) => any,
renderEmpty?: (collection: T[]) => any
) {
if (collection === undefined) {
return renderItem(undefined, undefined, collection);
}
if (collection.length === 0) {
return !!renderEmpty ? renderEmpty(collection) : null;
}
return collection.map(renderItem);
}
export function decimal(value: string | number) {
if (typeof value === "string") {
return value === "" ? null : value;
}
return value;
}
export const removeDoubleSlashes = (url: string) =>
url.replace(/([^:]\/)\/+/g, "$1");
2019-08-29 10:55:56 +00:00
const paymentStatusMessages = defineMessages({
paid: {
defaultMessage: "Fully paid",
description: "payment status"
},
partiallyPaid: {
defaultMessage: "Partially paid",
description: "payment status"
},
partiallyRefunded: {
defaultMessage: "Partially refunded",
description: "payment status"
},
refunded: {
defaultMessage: "Fully refunded",
description: "payment status"
},
unpaid: {
defaultMessage: "Unpaid",
description: "payment status"
}
});
export const transformPaymentStatus = (status: string, intl: IntlShape) => {
2019-06-19 14:40:52 +00:00
switch (status) {
case PaymentChargeStatusEnum.PARTIALLY_CHARGED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(paymentStatusMessages.partiallyPaid),
status: "error"
};
2019-06-19 14:40:52 +00:00
case PaymentChargeStatusEnum.FULLY_CHARGED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(paymentStatusMessages.paid),
status: "success"
};
2019-06-19 14:40:52 +00:00
case PaymentChargeStatusEnum.PARTIALLY_REFUNDED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(paymentStatusMessages.partiallyRefunded),
status: "error"
};
2019-06-19 14:40:52 +00:00
case PaymentChargeStatusEnum.FULLY_REFUNDED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(paymentStatusMessages.refunded),
status: "success"
};
2019-06-19 14:40:52 +00:00
default:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(paymentStatusMessages.unpaid),
status: "error"
};
2019-06-19 14:40:52 +00:00
}
};
2019-08-29 10:55:56 +00:00
const orderStatusMessages = defineMessages({
cancelled: {
defaultMessage: "Cancelled",
description: "order status"
},
draft: {
defaultMessage: "Draft",
description: "order status"
},
fulfilled: {
defaultMessage: "Fulfilled",
description: "order status"
},
partiallyFulfilled: {
defaultMessage: "Partially fulfilled",
description: "order status"
},
unfulfilled: {
defaultMessage: "Unfulfilled",
description: "order status"
}
});
export const transformOrderStatus = (status: string, intl: IntlShape) => {
2019-06-19 14:40:52 +00:00
switch (status) {
case OrderStatus.FULFILLED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(orderStatusMessages.fulfilled),
status: "success"
};
2019-06-19 14:40:52 +00:00
case OrderStatus.PARTIALLY_FULFILLED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(orderStatusMessages.partiallyFulfilled),
status: "neutral"
};
2019-06-19 14:40:52 +00:00
case OrderStatus.UNFULFILLED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(orderStatusMessages.unfulfilled),
status: "error"
};
2019-06-19 14:40:52 +00:00
case OrderStatus.CANCELED:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(orderStatusMessages.cancelled),
status: "error"
};
2019-06-19 14:40:52 +00:00
case OrderStatus.DRAFT:
2019-08-29 10:55:56 +00:00
return {
localized: intl.formatMessage(orderStatusMessages.draft),
status: "error"
};
2019-06-19 14:40:52 +00:00
}
return {
localized: status,
status: "error"
};
};
export const transformAddressToForm = (data: AddressType) => ({
city: maybe(() => data.city, ""),
cityArea: maybe(() => data.cityArea, ""),
companyName: maybe(() => data.companyName, ""),
2019-08-09 11:14:35 +00:00
country: maybe(() => data.country.code, ""),
2019-06-19 14:40:52 +00:00
countryArea: maybe(() => data.countryArea, ""),
firstName: maybe(() => data.firstName, ""),
lastName: maybe(() => data.lastName, ""),
phone: maybe(() => data.phone, ""),
postalCode: maybe(() => data.postalCode, ""),
streetAddress1: maybe(() => data.streetAddress1, ""),
streetAddress2: maybe(() => data.streetAddress2, "")
});
2019-08-29 10:55:56 +00:00
export const authorizationKeyTypes = {
[AuthorizationKeyType.FACEBOOK]: "Facebook",
[AuthorizationKeyType.GOOGLE_OAUTH2]: "Google OAuth2"
};
2019-06-19 14:40:52 +00:00
2019-08-09 11:14:35 +00:00
export function maybe<T>(exp: () => T): T | undefined;
export function maybe<T>(exp: () => T, d: T): T;
export function maybe(exp: any, d?: any) {
2019-06-19 14:40:52 +00:00
try {
const result = exp();
return result === undefined ? d : result;
} catch {
return d;
}
}
export function only<T>(obj: T, key: keyof T): boolean {
return Object.keys(obj).every(objKey =>
objKey === key ? obj[key] !== undefined : obj[key] === undefined
);
}
export function empty(obj: object): boolean {
return Object.keys(obj).every(key => obj[key] === undefined);
}
export function hasErrors(errorList: UserError[] | null): boolean {
return !(
errorList === undefined ||
errorList === null ||
errorList.length === 0
);
}
export function getMutationState(
called: boolean,
loading: boolean,
...errorList: UserError[][]
): ConfirmButtonTransitionState {
if (loading) {
return "loading";
}
if (called) {
return errorList.map(hasErrors).reduce((acc, curr) => acc || curr, false)
? "error"
: "success";
}
return "default";
}
export function getMutationProviderData<TData, TVariables>(
2019-08-12 11:47:38 +00:00
mutateFn: MutationFunction<TData, TVariables>,
2019-06-19 14:40:52 +00:00
opts: MutationResult<TData>
): PartialMutationProviderOutput<TData, TVariables> {
return {
mutate: variables => mutateFn({ variables }),
opts
};
}
interface User {
email: string;
firstName?: string;
lastName?: string;
}
export function getUserName(user?: User, returnEmail?: boolean) {
return user && (user.email || (user.firstName && user.lastName))
? user.firstName && user.lastName
? [user.firstName, user.lastName].join(" ")
: returnEmail
? user.email
: user.email.split("@")[0]
: undefined;
}
export function getUserInitials(user?: User) {
return user && (user.email || (user.firstName && user.lastName))
? (user.firstName && user.lastName
? user.firstName[0] + user.lastName[0]
: user.email.slice(0, 2)
).toUpperCase()
: undefined;
}
export function createHref(url: string) {
return urlJoin(APP_MOUNT_URI, url);
}
interface AnyEvent {
stopPropagation: () => void;
}
export function stopPropagation(cb: () => void) {
return (event: AnyEvent) => {
event.stopPropagation();
cb();
};
}
2019-08-09 11:14:35 +00:00
export function joinDateTime(date: string, time?: string) {
if (!date) {
return null;
}
const setTime = time || "00:00";
const dateTime = moment(date + " " + setTime).format();
return dateTime;
}
export function splitDateTime(dateTime: string) {
if (!dateTime) {
return {
date: "",
time: ""
};
}
// Default html input format YYYY-MM-DD HH:mm
const splitDateTime = moment(dateTime)
.format("YYYY-MM-DD HH:mm")
.split(" ");
return {
date: splitDateTime[0],
time: splitDateTime[1]
};
}
export function generateCode(charNum: number) {
let result = "";
const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
for (let i = 0; i < charNum; i++) {
result += characters.charAt(Math.floor(Math.random() * characters.length));
}
return result;
}
2019-09-05 13:05:12 +00:00
export function findInEnum<TEnum extends object>(
needle: string,
haystack: TEnum
) {
const match = Object.keys(haystack).find(key => key === needle);
if (!!match) {
return haystack[needle as keyof TEnum];
}
throw new Error(`Key ${needle} not found in enum`);
}
2019-09-13 11:33:42 +00:00
export function parseBoolean(a: string): boolean {
2019-09-26 10:14:07 +00:00
if (a === undefined) {
return true;
}
2019-09-13 11:33:42 +00:00
return a === "true";
}
2019-10-18 12:29:01 +00:00
export function capitalize(s: string) {
return s.charAt(0).toLocaleUpperCase() + s.slice(1);
}
2019-10-25 12:18:52 +00:00
export function transformFormToAddress(
address: AddressTypeInput
): AddressInput {
return {
...address,
country: findInEnum(address.country, CountryCode)
};
}