@tap-payments/os-micro-frontend-shared 0.1.389-test.5 → 0.1.390-test.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/StatusButton/StatusButton.js +16 -4
- package/build/components/StatusButton/constant.d.ts +1 -0
- package/build/components/StatusButton/constant.js +2 -1
- package/build/components/StatusButton/style.d.ts +6 -1
- package/build/components/StatusButton/style.js +11 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/InvoiceStatusCell.d.ts +1 -1
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/InvoiceStatusCell.js +59 -39
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +0 -2
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.js +0 -18
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/type.d.ts +0 -1
- package/build/constants/assets.d.ts +5 -0
- package/build/constants/assets.js +5 -0
- package/build/types/table.d.ts +1 -1
- package/package.json +2 -2
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/ChargeStatusIcon.d.ts +0 -11
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/ChargeStatusIcon.js +0 -15
|
@@ -15,7 +15,7 @@ import { useTranslation } from 'react-i18next';
|
|
|
15
15
|
import StyledBadge, { BadgeVariants } from '../CountBadge';
|
|
16
16
|
import { convertToNumber, formatNumber } from '../../utils/index.js';
|
|
17
17
|
import { ChevronIcon } from './ChevronIcon';
|
|
18
|
-
import { ChevronContainer, Label, LabelWrapper, StyledStatusIcon, StyledDropdown, statusButtonVariants } from './style';
|
|
18
|
+
import { ChevronContainer, Label, LabelWrapper, StyledStatusIcon, StyledDropdown, statusButtonVariants, IconWrapper } from './style';
|
|
19
19
|
import { statusButtonIcons } from './constant';
|
|
20
20
|
const StatusButton = memo((props) => {
|
|
21
21
|
var _a;
|
|
@@ -25,14 +25,26 @@ const StatusButton = memo((props) => {
|
|
|
25
25
|
const buttonRef = useRef(null);
|
|
26
26
|
const [anchorEl, setAnchorEl] = useState(null);
|
|
27
27
|
const [selectedStatus, setSelectedStatus] = useState(initialStatus !== null && initialStatus !== void 0 ? initialStatus : (_a = dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions[0]) === null || _a === void 0 ? void 0 : _a.status);
|
|
28
|
-
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
if (initialStatus !== undefined) {
|
|
30
|
+
setSelectedStatus(initialStatus);
|
|
31
|
+
}
|
|
32
|
+
}, [initialStatus]);
|
|
29
33
|
const hasDropdown = useMemo(() => Boolean(dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.length), [dropdownOptions]);
|
|
30
34
|
// only open if button is clicked more than once
|
|
31
35
|
const isDropdownOpen = Boolean(anchorEl) && buttonClicks > 1;
|
|
32
36
|
const isActiveVariant = variant === 'active';
|
|
33
37
|
const badgeVariant = useMemo(() => (isActiveVariant ? BadgeVariants.ACTIVE : BadgeVariants.INACTIVE), [isActiveVariant]);
|
|
34
|
-
|
|
35
|
-
|
|
38
|
+
const statusIcon = useMemo(() => {
|
|
39
|
+
const selectedOption = selectedStatus ? dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.find((option) => option.status === selectedStatus) : null;
|
|
40
|
+
if (selectedOption === null || selectedOption === void 0 ? void 0 : selectedOption.icon) {
|
|
41
|
+
return _jsx(IconWrapper, Object.assign({ variant: variant }, { children: selectedOption.icon }));
|
|
42
|
+
}
|
|
43
|
+
const iconKey = selectedStatus && iconMapper[selectedStatus] ? selectedStatus : icon;
|
|
44
|
+
if (iconKey && iconMapper[iconKey]) {
|
|
45
|
+
return _jsx(StyledStatusIcon, { icon: iconKey, variant: variant, src: iconMapper[iconKey], alt: `${iconKey}-icon` });
|
|
46
|
+
}
|
|
47
|
+
}, [selectedStatus, dropdownOptions, iconMapper, icon, variant]);
|
|
36
48
|
const statusBadge = useMemo(() => {
|
|
37
49
|
if (!badgeCount || Number.isNaN(convertToNumber(badgeCount)))
|
|
38
50
|
return null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { initiatedIcon, abandonedIcon, cancelledIcon, reportsIcon, searchIcon, chevronDownIcon, unAuthorizedIcon, settlementInitiatedIcon, unCapturedIcon, capturedIcon, authorizedIcon, openFlagIcon, closedFlagIcon, reverseActionIcon, authenticatedIcon, unauthenticatedIcon, paidOutFilterIcon, scheduledFilterIcon, completedBlackIcon, dashedCheckIcon, deactivatedIcon, destinationsServiceIcon, destinationWithoutBackgroundIcon,
|
|
1
|
+
import { initiatedIcon, abandonedIcon, cancelledIcon, reportsIcon, searchIcon, chevronDownIcon, unAuthorizedIcon, settlementInitiatedIcon, unCapturedIcon, capturedIcon, authorizedIcon, openFlagIcon, closedFlagIcon, reverseActionIcon, authenticatedIcon, unauthenticatedIcon, paidOutFilterIcon, scheduledFilterIcon, completedBlackIcon, dashedCheckIcon, deactivatedIcon, destinationsServiceIcon, destinationWithoutBackgroundIcon, outstandingIcon,
|
|
2
2
|
// trashBinIcon,
|
|
3
3
|
} from '../../constants/index.js';
|
|
4
4
|
export const statusButtonIcons = {
|
|
@@ -26,4 +26,5 @@ export const statusButtonIcons = {
|
|
|
26
26
|
deactivated: deactivatedIcon,
|
|
27
27
|
destination: destinationsServiceIcon,
|
|
28
28
|
destinationReversed: destinationWithoutBackgroundIcon,
|
|
29
|
+
outstanding: outstandingIcon,
|
|
29
30
|
};
|
|
@@ -21,7 +21,7 @@ export declare const CountBadge: import("@emotion/styled").StyledComponent<impor
|
|
|
21
21
|
}, {}, {}>;
|
|
22
22
|
export declare const StatusIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<Theme> & {
|
|
23
23
|
variant: StatusButtonVariant;
|
|
24
|
-
icon?: "search" | "scheduled" | "paidOut" | "destination" | "reversed" | "checked" | "inProgress" | "initiated" | "abandoned" | "cancelled" | "reports" | "chevronDown" | "unAuthorized" | "unSettled" | "unCaptured" | "captured" | "authorized" | "openFlag" | "closedFlag" | "unauthenticated" | "authenticated" | "dashedChecked" | "deactivated" | "destinationReversed" | undefined;
|
|
24
|
+
icon?: "search" | "scheduled" | "paidOut" | "destination" | "reversed" | "checked" | "inProgress" | "initiated" | "abandoned" | "cancelled" | "reports" | "chevronDown" | "unAuthorized" | "unSettled" | "unCaptured" | "captured" | "authorized" | "openFlag" | "closedFlag" | "unauthenticated" | "authenticated" | "dashedChecked" | "deactivated" | "destinationReversed" | "outstanding" | undefined;
|
|
25
25
|
}, React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
26
26
|
export declare const StyledFilterName: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<Theme>, React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
|
|
27
27
|
export declare const StyledDropdown: import("@emotion/styled").StyledComponent<import("../DropdownMenu").IProps & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
|
|
@@ -38,3 +38,8 @@ export declare const StyledStatusIcon: import("@emotion/styled").StyledComponent
|
|
|
38
38
|
variant: StatusButtonVariant;
|
|
39
39
|
icon?: StatusButtonProps['icon'];
|
|
40
40
|
}, React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
41
|
+
export declare const IconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
42
|
+
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
43
|
+
}, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme> & {
|
|
44
|
+
variant: StatusButtonVariant;
|
|
45
|
+
}, {}, {}>;
|
|
@@ -79,3 +79,14 @@ export const StyledStatusIcon = styled('img')(({ theme, variant, icon }) => {
|
|
|
79
79
|
filter: variant === 'active' ? 'brightness(0) invert(1)' : 'brightness(0) invert(0)',
|
|
80
80
|
})), { maxWidth: '14px', maxHeight: '14px' }));
|
|
81
81
|
});
|
|
82
|
+
export const IconWrapper = styled(Box)(({ variant }) => ({
|
|
83
|
+
width: '14px',
|
|
84
|
+
height: '14px',
|
|
85
|
+
display: 'flex',
|
|
86
|
+
alignItems: 'center',
|
|
87
|
+
'& img': {
|
|
88
|
+
width: '14px',
|
|
89
|
+
height: '14px',
|
|
90
|
+
filter: variant === 'active' ? 'brightness(0) invert(1)' : 'brightness(0) invert(0)',
|
|
91
|
+
},
|
|
92
|
+
}));
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DueCellProps } from './type';
|
|
2
|
-
export default function InvoiceStatusCell({ status, date, viewsCount, chargeStatus, errorCode, chargeTooltip,
|
|
2
|
+
export default function InvoiceStatusCell({ status, date, viewsCount, chargeStatus, errorCode, chargeTooltip, isTextShown, ...props }: DueCellProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -9,61 +9,81 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
9
9
|
}
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
13
|
import { useTranslation } from 'react-i18next';
|
|
14
14
|
import dayjs from 'dayjs';
|
|
15
|
-
import
|
|
15
|
+
import { motion } from 'framer-motion';
|
|
16
|
+
import camelCase from 'lodash/camelCase';
|
|
17
|
+
import capitalize from 'lodash/capitalize';
|
|
16
18
|
import { useTheme } from '@mui/material/styles';
|
|
17
19
|
import StyledBadge, { BadgeVariants } from '../../../CountBadge';
|
|
18
20
|
import Tooltip from '../../../Tooltip';
|
|
19
21
|
import { TableCell } from '../../../TableCells';
|
|
20
22
|
import { formatDate } from '../../../TableCells/CustomCells/DueDateCell/utils';
|
|
21
23
|
import { chargeStatusIcons } from '../../../TableCells/CustomCells/AuthenticationStatusCell/constant';
|
|
22
|
-
import {
|
|
23
|
-
import { RightLeftExpandingCenterChip } from '../../../RightLeftExpandingCenterChip';
|
|
24
|
+
import { ChargeStatusIcon } from '../../../StatusIcons';
|
|
24
25
|
import { statusIcons } from './constant';
|
|
25
|
-
import { DateIcon } from './style';
|
|
26
|
+
import { DueDateCellContainer, DateIcon, StatusTextLabel } from './style';
|
|
26
27
|
import { invoiceStatusStyles } from './utils';
|
|
27
|
-
import {
|
|
28
|
-
import { useMemo } from 'react';
|
|
28
|
+
import { StatusIconWrapper } from '../style';
|
|
29
29
|
export default function InvoiceStatusCell(_a) {
|
|
30
|
-
var { status, date, viewsCount, chargeStatus, errorCode, chargeTooltip,
|
|
31
|
-
const { t } = useTranslation();
|
|
30
|
+
var { status, date, viewsCount, chargeStatus, errorCode, chargeTooltip, isTextShown } = _a, props = __rest(_a, ["status", "date", "viewsCount", "chargeStatus", "errorCode", "chargeTooltip", "isTextShown"]);
|
|
32
31
|
const theme = useTheme();
|
|
32
|
+
const { t } = useTranslation();
|
|
33
33
|
const icon = status ? statusIcons[status] : null;
|
|
34
34
|
const statusStyles = invoiceStatusStyles(status);
|
|
35
|
+
const showExpansion = viewsCount !== 0 && !!viewsCount && status === 'VIEWED';
|
|
35
36
|
const statusTooltip = `${t((status === null || status === void 0 ? void 0 : status.toLowerCase()) || '')} ${formatDate(dayjs(date).valueOf())}`;
|
|
36
|
-
const statusIcon = useMemo(() => _jsx(ChargeStatusIcon, { chargeStatus: chargeStatus, errorCode: errorCode, chargeTooltip: chargeTooltip }), [chargeStatus, errorCode, chargeTooltip]);
|
|
37
|
-
const remindedIcon = useMemo(() => (_jsx(Tooltip, Object.assign({ title: t('reminded') }, { children: _jsxs(Box, Object.assign({ sx: { display: 'flex', alignItems: 'center', justifyContent: 'center', gap: '6px' } }, { children: [_jsx(DateIcon, { sx: {
|
|
38
|
-
width: '14px',
|
|
39
|
-
height: '14px',
|
|
40
|
-
}, src: remindedRedIcon, alt: "icon" }), _jsx(StyledBadge, Object.assign({ variant: BadgeVariants.DEFAULT, style: {
|
|
41
|
-
background: theme.palette.error.main,
|
|
42
|
-
fontWeight: 600,
|
|
43
|
-
color: theme.palette.common.white,
|
|
44
|
-
} }, { children: remindedCount }))] })) }))), [remindedCount]);
|
|
45
|
-
const centerIcon = useMemo(() => {
|
|
46
|
-
if (icon) {
|
|
47
|
-
return (_jsx(Tooltip, Object.assign({ title: t(statusTooltip || '') }, { children: _jsx(DateIcon, { src: icon, alt: "status icon" }) })));
|
|
48
|
-
}
|
|
49
|
-
if (chargeStatus && chargeStatusIcons[chargeStatus])
|
|
50
|
-
return statusIcon;
|
|
51
|
-
if (!!remindedCount)
|
|
52
|
-
return remindedIcon;
|
|
53
|
-
return undefined;
|
|
54
|
-
}, [icon, chargeStatus, remindedCount]);
|
|
55
|
-
if (!status && !chargeStatus && !remindedCount)
|
|
56
|
-
return null;
|
|
57
37
|
return (_jsx(TableCell, Object.assign({}, props, { sx: {
|
|
58
38
|
position: 'relative',
|
|
59
39
|
overflow: 'visible',
|
|
60
|
-
} }, { children:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
40
|
+
} }, { children: _jsxs("div", Object.assign({ style: {
|
|
41
|
+
display: 'flex',
|
|
42
|
+
alignItems: 'center',
|
|
43
|
+
justifyContent: 'flex-start',
|
|
44
|
+
gap: '8px',
|
|
45
|
+
overflow: 'visible',
|
|
46
|
+
} }, { children: [_jsx(Tooltip, Object.assign({ title: t(statusTooltip || '') }, { children: _jsx(DueDateCellContainer, Object.assign({ whileHover: showExpansion ? ['animate', 'fadeIn'] : [], animate: "start", sx: Object.assign({ zIndex: 25, position: 'absolute' }, (isTextShown && {
|
|
47
|
+
border: `1px solid ${statusStyles.color}1A`,
|
|
48
|
+
})), variants: {
|
|
49
|
+
animate: Object.assign({}, (showExpansion && {
|
|
50
|
+
boxShadow: theme.shadows[4],
|
|
51
|
+
})),
|
|
52
|
+
}, background: statusStyles.background }, { children: (icon || (isTextShown && status)) && (_jsxs(_Fragment, { children: [isTextShown ? (_jsx(StatusTextLabel, Object.assign({ sx: {
|
|
53
|
+
color: statusStyles.color,
|
|
54
|
+
} }, { children: capitalize(status) }))) : (icon && _jsx(DateIcon, { src: icon, alt: "icon" })), _jsx(motion.div, Object.assign({ style: {
|
|
55
|
+
alignItems: 'center',
|
|
56
|
+
justifyContent: 'center',
|
|
57
|
+
gap: '4px',
|
|
58
|
+
display: 'none',
|
|
59
|
+
width: 0,
|
|
60
|
+
}, initial: { width: 0, opacity: 0 }, transition: {
|
|
61
|
+
animate: {
|
|
62
|
+
duration: 0.5,
|
|
63
|
+
},
|
|
64
|
+
fadeIn: {
|
|
65
|
+
duration: 0.2,
|
|
66
|
+
},
|
|
67
|
+
}, variants: {
|
|
68
|
+
animate: {
|
|
69
|
+
width: 'auto',
|
|
70
|
+
display: 'flex',
|
|
71
|
+
},
|
|
72
|
+
fadeIn: {
|
|
73
|
+
transition: {
|
|
74
|
+
delay: 0.5,
|
|
75
|
+
},
|
|
76
|
+
opacity: 1,
|
|
77
|
+
},
|
|
78
|
+
} }, { children: showExpansion && (_jsx(StyledBadge, Object.assign({ variant: BadgeVariants.DEFAULT, style: {
|
|
79
|
+
color: '#fff',
|
|
80
|
+
backgroundColor: statusStyles.color,
|
|
81
|
+
} }, { children: viewsCount }))) }))] })) })) })), _jsx(StatusIconWrapper, Object.assign({ sx: {
|
|
82
|
+
position: 'absolute',
|
|
83
|
+
left: isTextShown ? '88px' : '32px',
|
|
84
|
+
width: isTextShown ? '65px' : '24px',
|
|
85
|
+
} }, { children: chargeStatus && chargeStatusIcons[chargeStatus] && (_jsx(_Fragment, { children: isTextShown ? (_jsx(Tooltip, Object.assign({ title: t(camelCase(chargeStatus)) }, { children: _jsx(StatusTextLabel, Object.assign({ sx: {
|
|
86
|
+
color: invoiceStatusStyles('VIEWED').color,
|
|
87
|
+
backgroundColor: `${invoiceStatusStyles('VIEWED').color}0d`,
|
|
88
|
+
} }, { children: capitalize(chargeStatus) })) }))) : (_jsx(ChargeStatusIcon, { chargeStatus: chargeStatus, errorCode: errorCode, chargeTooltip: chargeTooltip })) })) }))] })) })));
|
|
69
89
|
}
|
|
@@ -265,5 +265,3 @@ export declare const DueDateCellContainer: import("@emotion/styled").StyledCompo
|
|
|
265
265
|
}, {}, {}>;
|
|
266
266
|
export declare const DateIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
267
267
|
export declare const StatusTextLabel: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
268
|
-
export declare const ErrorChip: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
269
|
-
export declare const StatusIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -30,21 +30,3 @@ export const StatusTextLabel = styled('div')(() => ({
|
|
|
30
30
|
padding: '4.5px 8px',
|
|
31
31
|
borderRadius: '24px',
|
|
32
32
|
}));
|
|
33
|
-
export const ErrorChip = styled('div')(({ theme }) => ({
|
|
34
|
-
color: theme.palette.common.white,
|
|
35
|
-
background: theme.palette.error.main,
|
|
36
|
-
fontSize: '0.6rem',
|
|
37
|
-
fontWeight: 600,
|
|
38
|
-
borderRadius: '16px',
|
|
39
|
-
padding: '2px 8px',
|
|
40
|
-
display: 'flex',
|
|
41
|
-
alignItems: 'center',
|
|
42
|
-
justifyContent: 'center',
|
|
43
|
-
}));
|
|
44
|
-
export const StatusIconWrapper = styled('div')(() => ({
|
|
45
|
-
display: 'flex',
|
|
46
|
-
alignItems: 'center',
|
|
47
|
-
justifyContent: 'center',
|
|
48
|
-
width: '16px',
|
|
49
|
-
height: '16px',
|
|
50
|
-
}));
|
|
@@ -77,6 +77,11 @@ export declare const maximizeIcon: string;
|
|
|
77
77
|
export declare const minimizeIcon: string;
|
|
78
78
|
export declare const closeIcon: string;
|
|
79
79
|
export declare const dashedCheckIcon: string;
|
|
80
|
+
export declare const outstandingIcon: string;
|
|
81
|
+
export declare const cancelledNoBgIcon: string;
|
|
82
|
+
export declare const expiredNoBgIcon: string;
|
|
83
|
+
export declare const paidNoBgIcon: string;
|
|
84
|
+
export declare const refundedNoBgIcon: string;
|
|
80
85
|
export declare const deactivatedIcon: string;
|
|
81
86
|
export declare const topUpIcon: string;
|
|
82
87
|
export declare const deMaximizeIcon: string;
|
|
@@ -82,6 +82,11 @@ export const maximizeIcon = `${lightUrl}/maximize.svg`;
|
|
|
82
82
|
export const minimizeIcon = `${lightUrl}/minimize.svg`;
|
|
83
83
|
export const closeIcon = `${lightUrl}/close.svg`;
|
|
84
84
|
export const dashedCheckIcon = `${lightUrl}/dashedCheckIcon.svg`;
|
|
85
|
+
export const outstandingIcon = `${lightUrl}/outstandingIcon.svg`;
|
|
86
|
+
export const cancelledNoBgIcon = `${lightUrl}/cancelledNoBgIcon.svg`;
|
|
87
|
+
export const expiredNoBgIcon = `${lightUrl}/expiredNoBgIcon.svg`;
|
|
88
|
+
export const paidNoBgIcon = `${lightUrl}/paidNoBgIcon.svg`;
|
|
89
|
+
export const refundedNoBgIcon = `${lightUrl}/refundedNoBgIcon.svg`;
|
|
85
90
|
export const deactivatedIcon = `${lightUrl}/deactivatedIcon.svg`;
|
|
86
91
|
export const topUpIcon = `${lightUrl}/topup.svg`;
|
|
87
92
|
export const deMaximizeIcon = `${appBaseUrl}/demaximize.svg`;
|
package/build/types/table.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface TableStatus<T> {
|
|
|
20
20
|
filterStatus: T;
|
|
21
21
|
totalCount?: number;
|
|
22
22
|
}
|
|
23
|
-
export type TableHeaderStatus = 'all' | 'initiated' | 'captured' | 'unCaptured' | 'inProgress' | 'abandoned' | 'cancelled' | 'reversed' | 'unsettled' | 'unauthorized' | 'completed' | 'authorized' | 'refunded' | 'paidOut' | 'pending' | 'cleared' | 'open' | 'revered' | 'unauthenticated' | 'authenticated' | 'issued' | 'drafted' | 'scheduled' | 'paid' | 'outstanding' | 'draft' | 'expired' | 'transacted' | 'settled' | 'unSettled' | 'summary' | 'chargeSettlements' | 'refundSettlements' | 'destinationSettlements' | 'chargebackSettlements' | 'used' | 'active' | 'expired' | 'consumed' | 'notActive' | 'signedUp' | 'checked' | (string & {}) | undefined;
|
|
23
|
+
export type TableHeaderStatus = 'all' | 'initiated' | 'captured' | 'unCaptured' | 'inProgress' | 'abandoned' | 'cancelled' | 'reversed' | 'unsettled' | 'unauthorized' | 'completed' | 'authorized' | 'refunded' | 'paidOut' | 'pending' | 'cleared' | 'open' | 'revered' | 'unauthenticated' | 'authenticated' | 'issued' | 'drafted' | 'scheduled' | 'paid' | 'outstanding' | 'draft' | 'expired' | 'transacted' | 'settled' | 'unSettled' | 'summary' | 'chargeSettlements' | 'refundSettlements' | 'destinationSettlements' | 'chargebackSettlements' | 'used' | 'active' | 'expired' | 'consumed' | 'notActive' | 'signedUp' | 'checked' | 'outstanding' | (string & {}) | undefined;
|
|
24
24
|
export interface IColumnProps<R = any> {
|
|
25
25
|
header?: string | (() => React.ReactNode);
|
|
26
26
|
render?: (props: IRenderAttr<R, IColumnProps<R>>) => React.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
3
|
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"testVersion":
|
|
4
|
+
"version": "0.1.390-test.1",
|
|
5
|
+
"testVersion": 1,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|
|
8
8
|
"module": "build/index.js",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { CSSProperties } from 'react';
|
|
2
|
-
import { type ChargeStatus } from '../../../TableCells';
|
|
3
|
-
interface SmallChargeStatusIconProps {
|
|
4
|
-
chargeStatus?: ChargeStatus;
|
|
5
|
-
chargeTooltip?: string;
|
|
6
|
-
errorCode?: string;
|
|
7
|
-
iconStyles?: CSSProperties;
|
|
8
|
-
iconWrapperStyles?: CSSProperties;
|
|
9
|
-
}
|
|
10
|
-
export declare function ChargeStatusIcon({ chargeStatus, chargeTooltip, errorCode, iconStyles, iconWrapperStyles }: Readonly<SmallChargeStatusIconProps>): import("react/jsx-runtime").JSX.Element | null;
|
|
11
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import Box from '@mui/material/Box';
|
|
3
|
-
import { useTranslation } from 'react-i18next';
|
|
4
|
-
import Tooltip from '../../../Tooltip';
|
|
5
|
-
import { statusIcons, unCapturedStatusesStyles } from '../../../TableCells/CustomCells/StatusCell/constant';
|
|
6
|
-
import { StatusIcon } from '../../../TableCells/CustomCells/style';
|
|
7
|
-
import { ErrorChip, StatusIconWrapper } from './style';
|
|
8
|
-
export function ChargeStatusIcon({ chargeStatus, chargeTooltip, errorCode, iconStyles, iconWrapperStyles }) {
|
|
9
|
-
const { t } = useTranslation();
|
|
10
|
-
const unCapturedStatusStyle = chargeStatus ? unCapturedStatusesStyles[chargeStatus] : null;
|
|
11
|
-
const chargeIcon = chargeStatus && statusIcons[chargeStatus] && (_jsx(StatusIconWrapper, Object.assign({ style: iconWrapperStyles }, { children: _jsx(StatusIcon, { src: statusIcons[chargeStatus], alt: "charge-icon", style: Object.assign({ width: '16px', height: '16px' }, iconStyles) }) })));
|
|
12
|
-
if (!chargeStatus)
|
|
13
|
-
return null;
|
|
14
|
-
return (_jsx(Tooltip, Object.assign({ title: chargeTooltip !== null && chargeTooltip !== void 0 ? chargeTooltip : t(chargeStatus) }, { children: _jsxs(Box, Object.assign({ sx: { display: 'flex', gap: '6px', alignItems: 'center' } }, { children: [chargeIcon, errorCode && _jsx(ErrorChip, Object.assign({ style: { background: unCapturedStatusStyle === null || unCapturedStatusStyle === void 0 ? void 0 : unCapturedStatusStyle.color } }, { children: errorCode }))] })) })));
|
|
15
|
-
}
|