@tap-payments/os-micro-frontend-shared 0.1.175 → 0.1.177
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/Menu/Menu.js +9 -4
- package/build/components/Menu/style.d.ts +6 -1
- package/build/components/Menu/style.js +12 -1
- package/build/components/RangeCalender/RangeCalender.d.ts +2 -2
- package/build/components/RangeCalender/RangeCalender.js +8 -17
- package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.d.ts +6 -2
- package/build/components/RangeCalender/components/CustomTimepicker/CustomTimepicker.js +27 -44
- package/build/components/RangeCalender/components/CustomTimepicker/style.d.ts +1 -1
- package/build/components/RangeCalender/components/RangeDatepicker/RangeDatepicker.d.ts +9 -1
- package/build/components/RangeCalender/components/RangeDatepicker/index.d.ts +0 -1
- package/build/components/RangeCalender/components/RangeDatepicker/index.js +0 -1
- package/build/components/RangeCalender/utils.d.ts +1 -3
- package/build/components/RangeCalender/utils.js +0 -2
- package/build/components/StatusChip/StatusChip.d.ts +1 -1
- package/build/components/StatusChip/StatusChip.js +2 -2
- package/build/components/StatusChip/style.d.ts +1 -0
- package/build/components/StatusChip/type.d.ts +1 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/SegmentsCell.js +2 -1
- package/build/components/Timepicker/Timepicker.d.ts +1 -2
- package/build/components/Timepicker/Timepicker.js +2 -2
- package/build/components/Timepicker/index.d.ts +0 -1
- package/build/components/Timepicker/index.js +0 -1
- package/build/components/Timepicker/style.d.ts +0 -1
- package/build/components/Timepicker/style.js +1 -1
- package/build/components/Widget/useScrollWithShadow.js +2 -1
- package/build/constants/table/cell/merchantsTableCellWidth.d.ts +7 -7
- package/build/constants/table/cell/merchantsTableCellWidth.js +7 -7
- package/package.json +1 -1
- package/build/components/RangeCalender/components/RangeDatepicker/type.d.ts +0 -9
- package/build/components/RangeCalender/components/RangeDatepicker/type.js +0 -1
|
@@ -9,12 +9,17 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
9
9
|
}
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
-
import { memo } from 'react';
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
import { memo, Children } from 'react';
|
|
14
14
|
import Popper from '@mui/material/Popper';
|
|
15
|
-
import {
|
|
15
|
+
import { useScrollWithShadow } from '../Widget/useScrollWithShadow';
|
|
16
|
+
import { listShadowBg } from '../../constants/index.js';
|
|
17
|
+
import { StyledDropdown, ShadowBackground } from './style';
|
|
16
18
|
function Menu(_a) {
|
|
17
19
|
var { open, anchorEl, children, sx, placement, popperSx } = _a, props = __rest(_a, ["open", "anchorEl", "children", "sx", "placement", "popperSx"]);
|
|
18
|
-
|
|
20
|
+
const { onScrollHandler, showShadow } = useScrollWithShadow();
|
|
21
|
+
const childrenCount = Children.count(children);
|
|
22
|
+
const shouldShowShadow = childrenCount > 11 && showShadow;
|
|
23
|
+
return (_jsx(Popper, Object.assign({ open: open, anchorEl: anchorEl, placement: placement || 'bottom-start', sx: popperSx }, props, { children: _jsxs(StyledDropdown, Object.assign({ onScroll: onScrollHandler, className: "MuiPopper-dropdown", sx: sx }, { children: [children, shouldShowShadow && _jsx(ShadowBackground, { component: "img", src: listShadowBg })] })) }), "menu"));
|
|
19
24
|
}
|
|
20
25
|
export default memo(Menu);
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const StyledDropdown: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3
3
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
4
|
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
|
|
5
|
+
export declare const ShadowBackground: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6
|
+
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
7
|
+
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
8
|
+
src: string;
|
|
9
|
+
}, {}, {}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Box from '@mui/material/Box';
|
|
2
2
|
import { styled } from '@mui/material/styles';
|
|
3
|
-
export const
|
|
3
|
+
export const StyledDropdown = styled(Box)(({ theme }) => ({
|
|
4
4
|
borderRadius: theme.spacing(0.5),
|
|
5
5
|
background: theme.palette.background.default,
|
|
6
6
|
width: 'max-content',
|
|
@@ -8,7 +8,18 @@ export const Dropdown = styled(Box)(({ theme }) => ({
|
|
|
8
8
|
boxShadow: theme.shadows[11],
|
|
9
9
|
display: 'flex',
|
|
10
10
|
flexDirection: 'column',
|
|
11
|
+
overflowY: 'scroll',
|
|
12
|
+
maxHeight: '432px',
|
|
11
13
|
'.menu-item + .menu-item': {
|
|
12
14
|
borderTop: `1px solid ${theme.palette.divider}`,
|
|
13
15
|
},
|
|
14
16
|
}));
|
|
17
|
+
export const ShadowBackground = styled(Box)(() => ({
|
|
18
|
+
width: '100%',
|
|
19
|
+
height: '34px',
|
|
20
|
+
objectFit: 'cover',
|
|
21
|
+
position: 'fixed',
|
|
22
|
+
bottom: 0,
|
|
23
|
+
pointerEvents: 'none',
|
|
24
|
+
zIndex: 999999,
|
|
25
|
+
}));
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { MouseEvent } from 'react';
|
|
2
2
|
import { PopperProps } from '@mui/material/Popper';
|
|
3
|
-
import { SxProps } from '@mui/system';
|
|
4
3
|
import type { CalenderMode, Timezone } from '../../types/index.js';
|
|
5
|
-
import {
|
|
4
|
+
import { SxProps } from '@mui/system';
|
|
5
|
+
import { RangeDatepickerProps } from './components/RangeDatepicker/RangeDatepicker';
|
|
6
6
|
interface RangeCalendarProps {
|
|
7
7
|
defaultDate: [Date, Date];
|
|
8
8
|
onDateChange: (date: [Date, Date], timezoneOffset?: number) => void;
|
|
@@ -13,10 +13,8 @@ import QuickFilters from './components/QuickFilters';
|
|
|
13
13
|
import RangeDatePicker from './components/RangeDatepicker';
|
|
14
14
|
import CustomTimezone from './components/Timezone';
|
|
15
15
|
import { ButtonsWrapper, CalenderWrapper, CancelButton, FiltersArea, Footer, Main, OkayButton, SelectedDate, TimeZone, Settings } from './style';
|
|
16
|
-
import CustomTimePicker from './components/CustomTimepicker';
|
|
17
|
-
import { getEndOfDate, getStartOfDate } from './utils';
|
|
18
16
|
function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalendarModeSwitch, numberOfMonths, noTimezone, noQuickFilter, maxDateRange, onCalendarGroupChange, groupBy, timezone, onChangeTimezoneHistory, onChangeTimezone, defaultTimezone, browserTimezone, renderCalendarButton, mainSx, popperProps, rangeDatePickerProps, }) {
|
|
19
|
-
const [dates, setDates] = useState([new DateObject(defaultDate
|
|
17
|
+
const [dates, setDates] = useState([new DateObject(defaultDate[0]), new DateObject(defaultDate[1])]);
|
|
20
18
|
const [values, setValues] = useState(dates);
|
|
21
19
|
const [selectedTimezone, setSelectedTimezone] = useState(timezone);
|
|
22
20
|
const [selectedGroupBy, setSelectedGroupBy] = useState(groupBy || 'day');
|
|
@@ -37,7 +35,7 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
|
|
|
37
35
|
if (!open) {
|
|
38
36
|
if (numberOfMonths === 1)
|
|
39
37
|
return;
|
|
40
|
-
setValues([new DateObject(defaultDate
|
|
38
|
+
setValues([new DateObject(defaultDate[0]), new DateObject(defaultDate[1])]);
|
|
41
39
|
}
|
|
42
40
|
}, [open]);
|
|
43
41
|
useEffect(() => {
|
|
@@ -47,20 +45,13 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
|
|
|
47
45
|
onChangeTimezone === null || onChangeTimezone === void 0 ? void 0 : onChangeTimezone(newTimezone);
|
|
48
46
|
onChangeTimezoneHistory === null || onChangeTimezoneHistory === void 0 ? void 0 : onChangeTimezoneHistory(newTimezone);
|
|
49
47
|
};
|
|
50
|
-
const formatDate = (date) => new Date(date.toDate().toLocaleString('en-us', {
|
|
48
|
+
const formatDate = (date) => new Date(date.setHour(new Date().getHours()).setMinute(new Date().getMinutes()).setSecond(new Date().getSeconds()).toDate().toLocaleString('en-us', {
|
|
51
49
|
timeZone: selectedTimezone === null || selectedTimezone === void 0 ? void 0 : selectedTimezone.timezone,
|
|
52
50
|
}));
|
|
53
51
|
const submitDate = () => {
|
|
54
52
|
setDates(values);
|
|
55
53
|
onCloseCalender();
|
|
56
|
-
|
|
57
|
-
if (values[0].dayOfYear === values[1].dayOfYear) {
|
|
58
|
-
newDates = [formatDate(values[0]), formatDate(values[1])];
|
|
59
|
-
}
|
|
60
|
-
else {
|
|
61
|
-
newDates = [formatDate(getStartOfDate(values[0])), formatDate(getEndOfDate(values[1]))];
|
|
62
|
-
}
|
|
63
|
-
onDateChange([newDates[0], newDates[1]], timezone === null || timezone === void 0 ? void 0 : timezone.offset);
|
|
54
|
+
onDateChange([formatDate(values[0]), formatDate(values[1] || values[0])], timezone === null || timezone === void 0 ? void 0 : timezone.offset);
|
|
64
55
|
onCalendarGroupChange === null || onCalendarGroupChange === void 0 ? void 0 : onCalendarGroupChange(selectedGroupBy || 'day');
|
|
65
56
|
updateTimezone(selectedTimezone);
|
|
66
57
|
};
|
|
@@ -74,8 +65,8 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
|
|
|
74
65
|
setValues(newDate);
|
|
75
66
|
return;
|
|
76
67
|
}
|
|
77
|
-
const startDate =
|
|
78
|
-
const endDate =
|
|
68
|
+
const startDate = newDate[0].toDate();
|
|
69
|
+
const endDate = newDate[1].toDate();
|
|
79
70
|
const numberOfDays = dayjs(endDate).diff(startDate, 'day');
|
|
80
71
|
if (numberOfDays <= maxDateRange) {
|
|
81
72
|
setValues(newDate);
|
|
@@ -88,7 +79,7 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
|
|
|
88
79
|
}, 3000);
|
|
89
80
|
};
|
|
90
81
|
const onChangeQuickFilter = (newValues) => {
|
|
91
|
-
setValues(
|
|
82
|
+
setValues(newValues);
|
|
92
83
|
if (calendarRef.current)
|
|
93
84
|
calendarRef.current.set({ date: newValues[0] });
|
|
94
85
|
};
|
|
@@ -97,6 +88,6 @@ function RangeCalender({ defaultDate, onDateChange, mode = 'gregorian', onCalend
|
|
|
97
88
|
onCloseCalender();
|
|
98
89
|
} })), _jsx(Popper, Object.assign({ open: open, anchorEl: anchorEl, placement: "bottom-end" }, popperProps, { children: _jsxs(CalenderWrapper, { children: [!noQuickFilter && (_jsxs(FiltersArea, { children: [_jsx(QuickFilters, { onChange: onChangeQuickFilter, isHijri: isHijri }), _jsxs(Settings, { children: [groupBy && (_jsx(GroupBy, { groupBy: selectedGroupBy, isCalenderOpen: open, onUpdate: (group) => {
|
|
99
90
|
setSelectedGroupBy(group);
|
|
100
|
-
} })), _jsx(Hijri, { isHijri: isHijri, onCalendarModeSwitch: onCalendarModeSwitch })] })] })), _jsxs(Box, Object.assign({ sx: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between' } }, { children: [_jsx(RangeDatePicker, Object.assign({ values: values, onChange: onChange, isHijri: isHijri, ref: calendarRef, numberOfMonths: numberOfMonths }, rangeDatePickerProps)), _jsx(Collapse, Object.assign({ in: isError && Boolean(maxDateRange) }, { children: _jsx(Error, { error: t('dateRangeError', { number: maxDateRange }), sx: { marginInline: '16px', marginBottom: '16px' } }) })), _jsxs(Footer, Object.assign({ sx: { borderBottomLeftRadius: '8px' } }, { children: [!noTimezone ? (_jsx(TimeZone, { children: _jsx(CustomTimezone, { onChange: setSelectedTimezone, selectedTimezone: selectedTimezone, defaultTimezone: defaultTimezone, browserTimezone: browserTimezone }, String(open)) })) : (_jsx("div", {})),
|
|
91
|
+
} })), _jsx(Hijri, { isHijri: isHijri, onCalendarModeSwitch: onCalendarModeSwitch })] })] })), _jsxs(Box, Object.assign({ sx: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between' } }, { children: [_jsx(RangeDatePicker, Object.assign({ values: values, onChange: onChange, isHijri: isHijri, ref: calendarRef, numberOfMonths: numberOfMonths }, rangeDatePickerProps)), _jsx(Collapse, Object.assign({ in: isError && Boolean(maxDateRange) }, { children: _jsx(Error, { error: t('dateRangeError', { number: maxDateRange }), sx: { marginInline: '16px', marginBottom: '16px' } }) })), _jsxs(Footer, Object.assign({ sx: { borderBottomLeftRadius: '8px' } }, { children: [!noTimezone ? (_jsx(TimeZone, { children: _jsx(CustomTimezone, { onChange: setSelectedTimezone, selectedTimezone: selectedTimezone, defaultTimezone: defaultTimezone, browserTimezone: browserTimezone }, String(open)) })) : (_jsx("div", {})), _jsxs(ButtonsWrapper, { children: [_jsx(CancelButton, Object.assign({ variant: "contained", onClick: onCloseCalender }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ variant: "contained", onClick: submitDate }, { children: t('okay') }))] })] }))] }))] }) }))] })));
|
|
101
92
|
}
|
|
102
93
|
export default RangeCalender;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { DateObject } from 'react-multi-date-picker';
|
|
1
2
|
import { Dates } from '../../type';
|
|
2
3
|
interface CustomTimePickerProps {
|
|
3
4
|
values: Dates;
|
|
4
|
-
|
|
5
|
+
startTime: DateObject;
|
|
6
|
+
endTime: DateObject;
|
|
7
|
+
onChangeStartTime: (value: DateObject) => void;
|
|
8
|
+
onChangeEndTime: (value: DateObject) => void;
|
|
5
9
|
}
|
|
6
|
-
declare function CustomTimePicker({ values,
|
|
10
|
+
declare function CustomTimePicker({ values, onChangeStartTime, onChangeEndTime, startTime, endTime }: CustomTimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
7
11
|
export default CustomTimePicker;
|
|
@@ -1,50 +1,33 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useState } from 'react';
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
+
import { useState, useEffect } from 'react';
|
|
3
3
|
import { useTranslation } from 'react-i18next';
|
|
4
|
-
import { DateObject } from 'react-multi-date-picker';
|
|
4
|
+
import DatePicker, { DateObject } from 'react-multi-date-picker';
|
|
5
|
+
import TimePicker from 'react-multi-date-picker/plugins/time_picker';
|
|
5
6
|
import { IOSSwitch } from '../../../index.js';
|
|
6
|
-
import TimePicker, { convertTo12Hour, maxHour } from '../../../Timepicker';
|
|
7
7
|
import { AllDayStyled, TimeArea, TimePickerWrapper, TimeAreaInner } from './style';
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
function CustomTimePicker({ values, onChangeStartTime, onChangeEndTime, startTime, endTime }) {
|
|
9
|
+
const [isAllDay, setIsAllDay] = useState(false);
|
|
10
|
+
const [lastTime, setLastTime] = useState([startTime, endTime]);
|
|
10
11
|
const { t } = useTranslation();
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
};
|
|
32
|
-
return (_jsx(TimeArea, { children: _jsxs(TimeAreaInner, { children: [_jsxs(AllDayStyled, Object.assign({ isAllDay: isAllDay }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: t('allDay') })), _jsx(IOSSwitch, { checked: isAllDay, onChange: (e) => {
|
|
33
|
-
setIsAllDay(!isAllDay);
|
|
34
|
-
if (e.target.checked) {
|
|
35
|
-
setValues([getStartOfDate(values[0]), getEndOfDate(values[1])]);
|
|
36
|
-
}
|
|
37
|
-
else {
|
|
38
|
-
setValues(values);
|
|
39
|
-
}
|
|
40
|
-
} })] })), !isAllDay && (_jsxs(TimePickerWrapper, { children: [_jsx(TimePicker, { defaultTime: {
|
|
41
|
-
hour: convertTo12Hour(startDate.hour),
|
|
42
|
-
minute: startDate.minute,
|
|
43
|
-
period: startDate.hour >= maxHour ? 'PM' : 'AM',
|
|
44
|
-
}, size: "small", onChange: onChangeStartTime, enableRealTimeChange: true }, `${values[0].toString()}-start`), _jsx(TimePicker, { defaultTime: {
|
|
45
|
-
hour: convertTo12Hour(endDate.hour),
|
|
46
|
-
minute: endDate.minute,
|
|
47
|
-
period: endDate.hour >= maxHour ? 'PM' : 'AM',
|
|
48
|
-
}, size: "small", onChange: onChangeEndTime, enableRealTimeChange: true }, `${values[1].toString()}-end`)] }))] }) }));
|
|
12
|
+
useEffect(() => {
|
|
13
|
+
if (isAllDay)
|
|
14
|
+
setIsAllDay(new DateObject(values[0]).dayOfYear === new DateObject(values[1]).dayOfYear);
|
|
15
|
+
}, [values]);
|
|
16
|
+
return (_jsx(_Fragment, { children: new DateObject(values[0]).dayOfYear === new DateObject(values[1]).dayOfYear && (_jsx(TimeArea, { children: _jsxs(TimeAreaInner, { children: [_jsxs(AllDayStyled, Object.assign({ isAllDay: isAllDay }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: t('allDay') })), _jsx(IOSSwitch, { checked: isAllDay, onChange: (e) => {
|
|
17
|
+
setIsAllDay(!isAllDay);
|
|
18
|
+
if (e.target.checked) {
|
|
19
|
+
setLastTime([startTime, endTime]);
|
|
20
|
+
onChangeStartTime(new DateObject().setHour(0).setMinute(0));
|
|
21
|
+
onChangeEndTime(new DateObject().setHour(23).setMinute(59));
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
onChangeStartTime(lastTime[0]);
|
|
25
|
+
onChangeEndTime(lastTime[1]);
|
|
26
|
+
}
|
|
27
|
+
} })] })), !isAllDay && (_jsxs(TimePickerWrapper, { children: [_jsx(DatePicker, { arrow: false, disableDayPicker: true, hideOnScroll: true, format: "hh:mma", value: startTime, onChange: (time) => {
|
|
28
|
+
onChangeStartTime(time);
|
|
29
|
+
}, type: "button", plugins: [_jsx(TimePicker, { position: "top", hideSeconds: true })] }), _jsx(DatePicker, { arrow: false, disableDayPicker: true, hideOnScroll: true, format: "hh:mma", value: endTime, onChange: (time) => {
|
|
30
|
+
onChangeEndTime(time);
|
|
31
|
+
}, type: "button", plugins: [_jsx(TimePicker, { position: "top", hideSeconds: true })] })] }))] }) })) }));
|
|
49
32
|
}
|
|
50
33
|
export default CustomTimePicker;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
export declare const AllDayStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3
3
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
4
4
|
}, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
5
|
-
isAllDay
|
|
5
|
+
isAllDay: boolean;
|
|
6
6
|
}, {}, {}>;
|
|
7
7
|
export declare const TimeArea: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
8
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { CalendarProps } from 'react-multi-date-picker';
|
|
3
|
+
import { Dates } from '../../type';
|
|
4
|
+
export interface RangeDatepickerProps extends Omit<CalendarProps, 'onChange'> {
|
|
5
|
+
isAr?: boolean;
|
|
6
|
+
isHijri: boolean;
|
|
7
|
+
values: Dates;
|
|
8
|
+
onChange: (v: Dates) => void;
|
|
9
|
+
numberOfMonths?: number;
|
|
10
|
+
}
|
|
3
11
|
declare const _default: React.ForwardRefExoticComponent<Omit<RangeDatepickerProps, "ref"> & React.RefAttributes<unknown>>;
|
|
4
12
|
export default _default;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react-date-object" />
|
|
2
2
|
export declare const getLocale: ({ isHijri, isAr }: {
|
|
3
3
|
isHijri: boolean;
|
|
4
4
|
isAr?: boolean | undefined;
|
|
5
5
|
}) => import("react-date-object").Locale;
|
|
6
6
|
export declare const getCalender: (isHijri: boolean) => import("react-date-object").Calendar;
|
|
7
|
-
export declare const getStartOfDate: (date: DateObject) => DateObject;
|
|
8
|
-
export declare const getEndOfDate: (date: DateObject) => DateObject;
|
|
@@ -13,5 +13,3 @@ export const getLocale = ({ isHijri, isAr = false }) => {
|
|
|
13
13
|
export const getCalender = (isHijri) => {
|
|
14
14
|
return isHijri ? arabic : gregorian;
|
|
15
15
|
};
|
|
16
|
-
export const getStartOfDate = (date) => date.setHour(0).setMinute(0).setSecond(0);
|
|
17
|
-
export const getEndOfDate = (date) => date.setHour(23).setMinute(59).setSecond(59);
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ChipProps } from './type';
|
|
2
|
-
declare const StatusChip: ({ children, unknownText, copyText, expandDirection, chipStyles, ...props }: ChipProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const StatusChip: ({ children, unknownText, copyText, expandDirection, chipStyles, containerStyles, ...props }: ChipProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default StatusChip;
|
|
@@ -18,7 +18,7 @@ import { copyIcon, greenCheckIcon } from '../../constants/index.js';
|
|
|
18
18
|
import { ChipStyled, Wrapper, CopyWrapper } from './style';
|
|
19
19
|
import { emptyStatusChipColors } from '../../constants/index.js';
|
|
20
20
|
const StatusChip = (_a) => {
|
|
21
|
-
var { children, unknownText, copyText, expandDirection = 'right', chipStyles } = _a, props = __rest(_a, ["children", "unknownText", "copyText", "expandDirection", "chipStyles"]);
|
|
21
|
+
var { children, unknownText, copyText, expandDirection = 'right', chipStyles, containerStyles } = _a, props = __rest(_a, ["children", "unknownText", "copyText", "expandDirection", "chipStyles", "containerStyles"]);
|
|
22
22
|
const [showCopy, setShowCopy] = useState(false);
|
|
23
23
|
const { t } = useTranslation();
|
|
24
24
|
const isSelected = props.isSelected;
|
|
@@ -39,7 +39,7 @@ const StatusChip = (_a) => {
|
|
|
39
39
|
}
|
|
40
40
|
};
|
|
41
41
|
const isCopyActive = isSelected && copyText;
|
|
42
|
-
return (_jsxs(motion.div, Object.assign({ style: { position: 'relative' }, animate: { zIndex: isSelected ? 3 : 0 } }, { children: [_jsx(ChipStyled, Object.assign({}, props, { sx: { visibility: 'hidden', pointerEvents: 'none' } }, { children: _jsx(Wrapper, { children: children }) })), _jsx(motion.div, Object.assign({ style: { position: 'absolute', top: 0, zIndex: isSelected ? 3 : 0 }, animate: {
|
|
42
|
+
return (_jsxs(motion.div, Object.assign({ style: Object.assign({ position: 'relative' }, containerStyles), animate: { zIndex: isSelected ? 3 : 0 } }, { children: [_jsx(ChipStyled, Object.assign({}, props, { sx: { visibility: 'hidden', pointerEvents: 'none' } }, { children: _jsx(Wrapper, { children: children }) })), _jsx(motion.div, Object.assign({ style: { position: 'absolute', top: 0, zIndex: isSelected ? 3 : 0 }, animate: {
|
|
43
43
|
left: isCopyActive && expandDirection === 'left' ? -12 : 0,
|
|
44
44
|
}, transition: { delay: isSelected ? 0 : 0.2, duration: 0.2 } }, { children: _jsx(ChipStyled, Object.assign({}, props, { isSelected: isSelected }, chipStyles, { children: _jsxs(motion.div, Object.assign({ layout: "size", style: { display: 'flex', gap: '4px' }, animate: {
|
|
45
45
|
paddingRight: isCopyActive ? 12 : 0,
|
|
@@ -15,6 +15,7 @@ export declare const ChipStyled: import("@emotion/styled").StyledComponent<impor
|
|
|
15
15
|
expandDirection?: "left" | "right" | undefined;
|
|
16
16
|
chipStyles?: object | undefined;
|
|
17
17
|
disableAnimation?: boolean | undefined;
|
|
18
|
+
containerStyles?: object | undefined;
|
|
18
19
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
19
20
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
20
21
|
}, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & {
|
|
@@ -19,6 +19,7 @@ import { TableCell } from '../../../TableCells';
|
|
|
19
19
|
import { segmentsIcons } from './constant';
|
|
20
20
|
import { ReferenceTextLabel, ReferenceTextWrapper, ReferenceSourcesContainer, StyledSourceCell, referenceSourceAnimation } from './style';
|
|
21
21
|
import IconWithBadge from '../../../IconWithBadge';
|
|
22
|
+
import { getSegmentTooltip } from './utils';
|
|
22
23
|
function SegmentsCell(_a) {
|
|
23
24
|
var { isTextShown, segments } = _a, props = __rest(_a, ["isTextShown", "segments"]);
|
|
24
25
|
const [isTooltipOpen, setIsTooltipOpen] = useState(false);
|
|
@@ -26,7 +27,7 @@ function SegmentsCell(_a) {
|
|
|
26
27
|
const ReferenceSources = useMemo(() => segments === null || segments === void 0 ? void 0 : segments.filter((segment) => !!segment.name).map((segment, index) => {
|
|
27
28
|
var _a, _b;
|
|
28
29
|
const isPlatformSegment = (_b = (_a = segment.type) === null || _a === void 0 ? void 0 : _a.toLowerCase) === null || _b === void 0 ? void 0 : _b.call(_a).includes('platform');
|
|
29
|
-
const sourceTooltip = segment.tooltip || segment
|
|
30
|
+
const sourceTooltip = segment.tooltip || getSegmentTooltip(segment);
|
|
30
31
|
const segmentType = segment.type;
|
|
31
32
|
const icon = isPlatformSegment ? segmentsIcons.platform : segmentsIcons[segmentType];
|
|
32
33
|
return (_jsx(Tooltip, Object.assign({ onOpen: () => {
|
|
@@ -7,7 +7,6 @@ interface TimePickerProps {
|
|
|
7
7
|
defaultTime?: Time;
|
|
8
8
|
onChange?: (time: Time) => void;
|
|
9
9
|
enableRealTimeChange?: boolean;
|
|
10
|
-
size?: 'large' | 'small';
|
|
11
10
|
}
|
|
12
|
-
export declare function TimePicker({ onChange, defaultTime, enableRealTimeChange
|
|
11
|
+
export declare function TimePicker({ onChange, defaultTime, enableRealTimeChange }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
13
12
|
export {};
|
|
@@ -8,7 +8,7 @@ import { greyUpArrowIcon, greyDownArrowIcon } from '../../constants/index.js';
|
|
|
8
8
|
import { Arrow, Button, Period, PeriodWrapper, Wrapper, Time, TimeWrapper, Input } from './style';
|
|
9
9
|
import { getDefaultHour, getDefaultMinute } from './utils';
|
|
10
10
|
import { maxHour, maxMinute, periodList } from './constant';
|
|
11
|
-
export function TimePicker({ onChange, defaultTime, enableRealTimeChange
|
|
11
|
+
export function TimePicker({ onChange, defaultTime, enableRealTimeChange }) {
|
|
12
12
|
var _a, _b, _c;
|
|
13
13
|
const [anchorEl, setAnchorEl] = useState(null);
|
|
14
14
|
const [period, setPeriod] = useState((_a = defaultTime === null || defaultTime === void 0 ? void 0 : defaultTime.period) !== null && _a !== void 0 ? _a : (new Date().getHours() >= maxHour ? 'PM' : 'AM'));
|
|
@@ -80,7 +80,7 @@ export function TimePicker({ onChange, defaultTime, enableRealTimeChange, size =
|
|
|
80
80
|
});
|
|
81
81
|
};
|
|
82
82
|
const formatTime = useCallback((time) => (time < 10 ? `0${time}` : time), []);
|
|
83
|
-
return (_jsx(ClickAwayListener, Object.assign({ onClickAway: onClose }, { children: _jsxs(Box, { children: [_jsx(Button, Object.assign({
|
|
83
|
+
return (_jsx(ClickAwayListener, Object.assign({ onClickAway: onClose }, { children: _jsxs(Box, { children: [_jsx(Button, Object.assign({ open: open, onClick: onOpen }, { children: `${formatTime(hours)}:${formatTime(minutes)}${period.toLowerCase()}` })), _jsx(Menu, Object.assign({ open: open, anchorEl: anchorEl, placement: "top-start", sx: { marginTop: '8px', marginBottom: '8px' } }, { children: _jsxs(Wrapper, { children: [_jsxs(TimeWrapper, { children: [_jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseHours }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(hours), onChange: onChangeHours }), _jsx(Arrow, Object.assign({ onClick: onDecreaseHours }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] }), _jsx(Text, { children: ":" }), _jsxs(Time, { children: [_jsx(Arrow, Object.assign({ onClick: onIncreaseMinutes }, { children: _jsx("img", { src: greyUpArrowIcon, alt: "arrow" }) })), _jsx(Input, { value: formatTime(minutes), onChange: onChangeMinutes }), _jsx(Arrow, Object.assign({ onClick: onDecreaseMinutes }, { children: _jsx("img", { src: greyDownArrowIcon, alt: "arrow" }) }))] })] }), _jsx(PeriodWrapper, { children: periodList.map((item) => (_jsx(Period, Object.assign({ onClick: () => {
|
|
84
84
|
onClickPeriod(item);
|
|
85
85
|
}, selected: period === item }, { children: item }), item))) })] }) }))] }) })));
|
|
86
86
|
}
|
|
@@ -8,7 +8,6 @@ export declare const Button: import("@emotion/styled").StyledComponent<import("@
|
|
|
8
8
|
component?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
9
9
|
} & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
10
10
|
open: boolean;
|
|
11
|
-
size: 'large' | 'small';
|
|
12
11
|
}, {}, {}>;
|
|
13
12
|
export declare const Arrow: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
14
13
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
@@ -10,7 +10,7 @@ export const Wrapper = styled(Box)(() => ({
|
|
|
10
10
|
justifyContent: 'center',
|
|
11
11
|
gap: '16px',
|
|
12
12
|
}));
|
|
13
|
-
export const Button = styled(Text, { shouldForwardProp: (props) => props !== 'open'
|
|
13
|
+
export const Button = styled(Text, { shouldForwardProp: (props) => props !== 'open' })(({ theme, open }) => (Object.assign({ fontSize: '11px', fontWeight: 500, background: theme.palette.common.white, border: `1px solid ${theme.palette.divider}`, borderRadius: '19px', height: 32, width: 74, display: 'flex', alignItems: 'center', justifyContent: 'center', cursor: 'pointer' }, (open && { boxShadow: '0px 0px 4px 0px #1F88D080', borderColor: theme.palette.info.dark }))));
|
|
14
14
|
export const Arrow = styled(Box)(() => ({
|
|
15
15
|
textAlign: 'center',
|
|
16
16
|
cursor: 'pointer',
|
|
@@ -9,5 +9,6 @@ export function useScrollWithShadow() {
|
|
|
9
9
|
setScrollHeight(target.scrollHeight);
|
|
10
10
|
setClientHeight(target.clientHeight);
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
const showShadow = scrollTop === 0 || clientHeight < scrollHeight - scrollTop - 1;
|
|
13
|
+
return { onScrollHandler, showShadow };
|
|
13
14
|
}
|
|
@@ -7,7 +7,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
7
7
|
readonly entity: {
|
|
8
8
|
readonly default: "137px";
|
|
9
9
|
readonly text: "180px";
|
|
10
|
-
readonly sheet: "
|
|
10
|
+
readonly sheet: "235px";
|
|
11
11
|
};
|
|
12
12
|
readonly created: {
|
|
13
13
|
readonly default: "144px";
|
|
@@ -17,7 +17,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
17
17
|
readonly brands: {
|
|
18
18
|
readonly default: "131px";
|
|
19
19
|
readonly text: "140px";
|
|
20
|
-
readonly sheet: "
|
|
20
|
+
readonly sheet: "170px";
|
|
21
21
|
};
|
|
22
22
|
readonly marketplace: {
|
|
23
23
|
readonly default: "110px";
|
|
@@ -27,7 +27,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
27
27
|
readonly individuals: {
|
|
28
28
|
readonly default: "147px";
|
|
29
29
|
readonly text: "185px";
|
|
30
|
-
readonly sheet: "
|
|
30
|
+
readonly sheet: "200px";
|
|
31
31
|
};
|
|
32
32
|
readonly segments: {
|
|
33
33
|
readonly default: "70px";
|
|
@@ -42,7 +42,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
42
42
|
readonly status: {
|
|
43
43
|
readonly default: "55px";
|
|
44
44
|
readonly text: "100px";
|
|
45
|
-
readonly sheet: "
|
|
45
|
+
readonly sheet: "172px";
|
|
46
46
|
};
|
|
47
47
|
readonly partners: {
|
|
48
48
|
readonly default: "88px";
|
|
@@ -52,7 +52,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
52
52
|
readonly actions: {
|
|
53
53
|
readonly default: "100px";
|
|
54
54
|
readonly text: "100px";
|
|
55
|
-
readonly sheet: "
|
|
55
|
+
readonly sheet: "36px";
|
|
56
56
|
};
|
|
57
57
|
readonly avatar: {
|
|
58
58
|
readonly default: "40px";
|
|
@@ -67,11 +67,11 @@ export declare const merchantsTableCellWidth: {
|
|
|
67
67
|
readonly channels: {
|
|
68
68
|
readonly default: "94px";
|
|
69
69
|
readonly text: "120px";
|
|
70
|
-
readonly sheet: "
|
|
70
|
+
readonly sheet: "510px";
|
|
71
71
|
};
|
|
72
72
|
readonly merchant: {
|
|
73
73
|
readonly default: "175px";
|
|
74
74
|
readonly text: "180px";
|
|
75
|
-
readonly sheet: "
|
|
75
|
+
readonly sheet: "235px";
|
|
76
76
|
};
|
|
77
77
|
};
|
|
@@ -7,7 +7,7 @@ export const merchantsTableCellWidth = {
|
|
|
7
7
|
entity: {
|
|
8
8
|
default: '137px',
|
|
9
9
|
text: '180px',
|
|
10
|
-
sheet: '
|
|
10
|
+
sheet: '235px',
|
|
11
11
|
},
|
|
12
12
|
created: {
|
|
13
13
|
default: '144px',
|
|
@@ -17,7 +17,7 @@ export const merchantsTableCellWidth = {
|
|
|
17
17
|
brands: {
|
|
18
18
|
default: '131px',
|
|
19
19
|
text: '140px',
|
|
20
|
-
sheet: '
|
|
20
|
+
sheet: '170px',
|
|
21
21
|
},
|
|
22
22
|
marketplace: {
|
|
23
23
|
default: '110px',
|
|
@@ -27,7 +27,7 @@ export const merchantsTableCellWidth = {
|
|
|
27
27
|
individuals: {
|
|
28
28
|
default: '147px',
|
|
29
29
|
text: '185px',
|
|
30
|
-
sheet: '
|
|
30
|
+
sheet: '200px',
|
|
31
31
|
},
|
|
32
32
|
segments: {
|
|
33
33
|
default: '70px',
|
|
@@ -42,7 +42,7 @@ export const merchantsTableCellWidth = {
|
|
|
42
42
|
status: {
|
|
43
43
|
default: '55px',
|
|
44
44
|
text: '100px',
|
|
45
|
-
sheet: '
|
|
45
|
+
sheet: '172px',
|
|
46
46
|
},
|
|
47
47
|
partners: {
|
|
48
48
|
default: '88px',
|
|
@@ -52,7 +52,7 @@ export const merchantsTableCellWidth = {
|
|
|
52
52
|
actions: {
|
|
53
53
|
default: '100px',
|
|
54
54
|
text: '100px',
|
|
55
|
-
sheet: '
|
|
55
|
+
sheet: '36px',
|
|
56
56
|
},
|
|
57
57
|
avatar: {
|
|
58
58
|
default: '40px',
|
|
@@ -67,11 +67,11 @@ export const merchantsTableCellWidth = {
|
|
|
67
67
|
channels: {
|
|
68
68
|
default: '94px',
|
|
69
69
|
text: '120px',
|
|
70
|
-
sheet: '
|
|
70
|
+
sheet: '510px',
|
|
71
71
|
},
|
|
72
72
|
merchant: {
|
|
73
73
|
default: '175px',
|
|
74
74
|
text: '180px',
|
|
75
|
-
sheet: '
|
|
75
|
+
sheet: '235px',
|
|
76
76
|
},
|
|
77
77
|
};
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CalendarProps } from 'react-multi-date-picker';
|
|
2
|
-
import { Dates } from '../../type';
|
|
3
|
-
export interface RangeDatepickerProps extends Omit<CalendarProps, 'onChange'> {
|
|
4
|
-
isAr?: boolean;
|
|
5
|
-
isHijri: boolean;
|
|
6
|
-
values: Dates;
|
|
7
|
-
onChange: (v: Dates) => void;
|
|
8
|
-
numberOfMonths?: number;
|
|
9
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|