@zohodesk/components 1.0.0-temp-190.2 → 1.0.0-temp-192
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/.cli/PropLessFiles.html +1 -1
- package/.cli/propValidation_report.html +1 -1
- package/README.md +16 -5
- package/es/Avatar/Avatar.module.css +0 -12
- package/es/AvatarTeam/AvatarTeam.module.css +0 -4
- package/es/Button/css/Button.module.css +0 -6
- package/es/Buttongroup/Buttongroup.module.css +0 -2
- package/es/CheckBox/CheckBox.js +10 -0
- package/es/CheckBox/CheckBox.module.css +0 -2
- package/es/CheckBox/props/propTypes.js +1 -0
- package/es/DateTime/DateTime.module.css +0 -1
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/es/DropBox/css/DropBox.module.css +0 -1
- package/es/DropDown/DropDownHeading.module.css +0 -6
- package/es/DropDown/DropDownItem.module.css +0 -3
- package/es/Label/Label.module.css +0 -1
- package/es/ListItem/ListItem.js +2 -2
- package/es/ListItem/ListItem.module.css +85 -39
- package/es/ListItem/ListItemWithAvatar.js +3 -3
- package/es/ListItem/ListItemWithIcon.js +2 -2
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/es/MultiSelect/Suggestions.js +8 -4
- package/es/MultiSelect/props/defaultProps.js +9 -3
- package/es/MultiSelect/props/propTypes.js +7 -3
- package/es/PopOver/PopOver.module.css +3 -3
- package/es/Radio/Radio.js +26 -7
- package/es/Radio/Radio.module.css +3 -1
- package/es/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/es/Radio/props/defaultProps.js +1 -0
- package/es/Radio/props/propTypes.js +7 -0
- package/es/Ribbon/Ribbon.module.css +0 -4
- package/es/Select/GroupSelect.js +9 -3
- package/es/Select/SelectWithAvatar.js +9 -3
- package/es/Select/SelectWithIcon.js +9 -3
- package/es/Select/props/defaultProps.js +6 -3
- package/es/Select/props/propTypes.js +6 -3
- package/es/Switch/Switch.module.css +0 -2
- package/es/Tag/Tag.module.css +0 -6
- package/es/TextBox/TextBox.module.css +1 -21
- package/es/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/es/Textarea/Textarea.module.css +0 -6
- package/es/common/customscroll.module.css +27 -3
- package/es/v1/Animation/Animation.js +1 -1
- package/es/v1/Card/Card.js +1 -1
- package/es/v1/CheckBox/CheckBox.js +7 -1
- package/es/v1/CheckBox/props/propTypes.js +1 -0
- package/es/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/es/v1/ListItem/ListContainer.js +1 -1
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +1 -1
- package/es/v1/MultiSelect/props/defaultProps.js +5 -3
- package/es/v1/Radio/Radio.js +22 -7
- package/es/v1/Radio/props/defaultProps.js +1 -0
- package/es/v1/Radio/props/propTypes.js +7 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/es/v1/Select/GroupSelect.js +1 -1
- package/es/v1/Select/Select.js +1 -1
- package/es/v1/Select/SelectWithAvatar.js +5 -7
- package/es/v1/Select/SelectWithIcon.js +1 -1
- package/es/v1/Select/props/defaultProps.js +1 -1
- package/es/v1/Select/props/propTypes.js +1 -3
- package/es/v1/Tab/Tabs.js +2 -2
- package/es/v1/Tooltip/Tooltip.js +1 -1
- package/lib/Avatar/Avatar.module.css +0 -12
- package/lib/AvatarTeam/AvatarTeam.module.css +0 -4
- package/lib/Button/css/Button.module.css +0 -6
- package/lib/Buttongroup/Buttongroup.module.css +0 -2
- package/lib/CheckBox/CheckBox.js +34 -24
- package/lib/CheckBox/CheckBox.module.css +0 -2
- package/lib/CheckBox/props/propTypes.js +1 -0
- package/lib/DateTime/DateTime.module.css +0 -1
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/lib/DropBox/css/DropBox.module.css +0 -1
- package/lib/DropDown/DropDownHeading.module.css +0 -6
- package/lib/DropDown/DropDownItem.module.css +0 -3
- package/lib/Label/Label.module.css +0 -1
- package/lib/ListItem/ListItem.js +2 -2
- package/lib/ListItem/ListItem.module.css +85 -39
- package/lib/ListItem/ListItemWithAvatar.js +3 -3
- package/lib/ListItem/ListItemWithIcon.js +2 -2
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -3
- package/lib/MultiSelect/MultiSelect.js +8 -3
- package/lib/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/lib/MultiSelect/Suggestions.js +8 -4
- package/lib/MultiSelect/props/defaultProps.js +9 -3
- package/lib/MultiSelect/props/propTypes.js +9 -6
- package/lib/PopOver/PopOver.module.css +3 -3
- package/lib/Radio/Radio.js +45 -26
- package/lib/Radio/Radio.module.css +3 -1
- package/lib/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/lib/Radio/props/defaultProps.js +1 -0
- package/lib/Radio/props/propTypes.js +7 -0
- package/lib/Ribbon/Ribbon.module.css +0 -4
- package/lib/Select/GroupSelect.js +8 -3
- package/lib/Select/SelectWithAvatar.js +8 -3
- package/lib/Select/SelectWithIcon.js +8 -3
- package/lib/Select/props/defaultProps.js +5 -3
- package/lib/Select/props/propTypes.js +6 -3
- package/lib/Switch/Switch.module.css +0 -2
- package/lib/Tag/Tag.module.css +0 -6
- package/lib/TextBox/TextBox.module.css +1 -21
- package/lib/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/lib/Textarea/Textarea.module.css +0 -6
- package/lib/common/customscroll.module.css +27 -3
- package/lib/v1/Animation/Animation.js +1 -1
- package/lib/v1/Card/Card.js +1 -1
- package/lib/v1/CheckBox/CheckBox.js +7 -1
- package/lib/v1/CheckBox/props/propTypes.js +1 -0
- package/lib/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/lib/v1/ListItem/ListContainer.js +1 -1
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/props/defaultProps.js +5 -3
- package/lib/v1/Radio/Radio.js +22 -7
- package/lib/v1/Radio/props/defaultProps.js +1 -0
- package/lib/v1/Radio/props/propTypes.js +7 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/lib/v1/Select/GroupSelect.js +1 -1
- package/lib/v1/Select/Select.js +1 -1
- package/lib/v1/Select/SelectWithAvatar.js +4 -6
- package/lib/v1/Select/SelectWithIcon.js +1 -1
- package/lib/v1/Select/props/defaultProps.js +1 -1
- package/lib/v1/Select/props/propTypes.js +1 -3
- package/lib/v1/Tab/Tabs.js +2 -2
- package/lib/v1/Tooltip/Tooltip.js +1 -1
- package/package.json +10 -10
- package/result.json +1 -1
- package/es/v1/Provider/AvatarSize.js +0 -13
- package/es/v1/Provider/Config.js +0 -18
- package/es/v1/Provider/CssProvider.js +0 -16
- package/es/v1/Provider/IdProvider.js +0 -66
- package/es/v1/Provider/LibraryContext.js +0 -37
- package/es/v1/Provider/LibraryContextInit.js +0 -3
- package/es/v1/Provider/NumberGenerator/NumberGenerator.js +0 -136
- package/es/v1/Provider/ZindexProvider.js +0 -57
- package/es/v1/Provider/index.js +0 -4
- package/es/v1/Responsive/CustomResponsive.js +0 -195
- package/es/v1/Responsive/RefWrapper.js +0 -39
- package/es/v1/Responsive/ResizeComponent.js +0 -197
- package/es/v1/Responsive/ResizeObserver.js +0 -140
- package/es/v1/Responsive/Responsive.js +0 -194
- package/es/v1/Responsive/index.js +0 -9
- package/es/v1/Responsive/props/defaultProps.js +0 -13
- package/es/v1/Responsive/props/propTypes.js +0 -25
- package/lib/v1/Provider/AvatarSize.js +0 -24
- package/lib/v1/Provider/Config.js +0 -27
- package/lib/v1/Provider/CssProvider.js +0 -27
- package/lib/v1/Provider/IdProvider.js +0 -79
- package/lib/v1/Provider/LibraryContext.js +0 -76
- package/lib/v1/Provider/LibraryContextInit.js +0 -15
- package/lib/v1/Provider/NumberGenerator/NumberGenerator.js +0 -174
- package/lib/v1/Provider/ZindexProvider.js +0 -69
- package/lib/v1/Provider/index.js +0 -81
- package/lib/v1/Responsive/CustomResponsive.js +0 -242
- package/lib/v1/Responsive/RefWrapper.js +0 -57
- package/lib/v1/Responsive/ResizeComponent.js +0 -268
- package/lib/v1/Responsive/ResizeObserver.js +0 -168
- package/lib/v1/Responsive/Responsive.js +0 -274
- package/lib/v1/Responsive/index.js +0 -55
- package/lib/v1/Responsive/props/defaultProps.js +0 -23
- package/lib/v1/Responsive/props/propTypes.js +0 -39
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
import React, { useRef, useEffect } from 'react';
|
|
2
|
-
export function addGlobalId(globalId) {
|
|
3
|
-
if (Number.isSafeInteger(Number(globalId)) && Number.isSafeInteger(Number(globalId) + 1)) {
|
|
4
|
-
globalId = Number(globalId) + 1;
|
|
5
|
-
} else {
|
|
6
|
-
globalId = `${globalId}1`;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
return globalId;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
function decreaseGlobalId(number, globalId) {
|
|
13
|
-
if (`${number}` == `${globalId}`) {
|
|
14
|
-
if (Number.isSafeInteger(Number(globalId)) && Number.isSafeInteger(Number(globalId) - 1)) {
|
|
15
|
-
globalId = Number(globalId) - 1;
|
|
16
|
-
} else {
|
|
17
|
-
globalId = `${globalId}`;
|
|
18
|
-
globalId = globalId.substring(0, globalId.length - 1);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
return {
|
|
22
|
-
isDeleted: true,
|
|
23
|
-
globalId
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
return {
|
|
28
|
-
isDeleted: false,
|
|
29
|
-
globalId
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export function decreaseGlobalIds(numbers, deletedIndexes, globalId) {
|
|
34
|
-
deletedIndexes = [...deletedIndexes];
|
|
35
|
-
[...numbers].reverse().map(number => {
|
|
36
|
-
let result = decreaseGlobalId(number, globalId);
|
|
37
|
-
globalId = result.globalId;
|
|
38
|
-
!result.isDeleted && deletedIndexes.push(number);
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
for (; deletedIndexes.indexOf(globalId) != -1;) {
|
|
42
|
-
let presentHighValue = globalId;
|
|
43
|
-
let result = decreaseGlobalId(globalId, globalId);
|
|
44
|
-
globalId = result.globalId;
|
|
45
|
-
deletedIndexes = deletedIndexes.filter(ele => `${ele}` != `${presentHighValue}`);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
return {
|
|
49
|
-
globalId,
|
|
50
|
-
deletedIndexes
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
export function useNumberGenerator(_ref) {
|
|
54
|
-
let {
|
|
55
|
-
getGlobalId,
|
|
56
|
-
prefix,
|
|
57
|
-
getGlobalPrefix,
|
|
58
|
-
getDeletedIndexes,
|
|
59
|
-
callback
|
|
60
|
-
} = _ref;
|
|
61
|
-
let presentValues = useRef([]),
|
|
62
|
-
presentIndex = useRef(0);
|
|
63
|
-
prefix = typeof prefix === 'undefined' ? '' : `${prefix}_`;
|
|
64
|
-
let globalPrefix = typeof getGlobalPrefix() === 'undefined' ? '' : `${getGlobalPrefix()}_`;
|
|
65
|
-
|
|
66
|
-
function getNextId() {
|
|
67
|
-
presentIndex.current = presentIndex.current + 1;
|
|
68
|
-
let currentIndex = presentIndex.current;
|
|
69
|
-
let isValuePresent = typeof presentValues.current[currentIndex] !== 'undefined';
|
|
70
|
-
let result = isValuePresent ? presentValues.current[currentIndex] : presentValues.current[currentIndex] = addGlobalId(getGlobalId());
|
|
71
|
-
!isValuePresent && callback({
|
|
72
|
-
globalId: result,
|
|
73
|
-
deletedIndexes: getDeletedIndexes()
|
|
74
|
-
});
|
|
75
|
-
return `${globalPrefix}${prefix}${presentValues.current[currentIndex]}`;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
useEffect(() => {
|
|
79
|
-
presentValues.current = presentValues.current.filter((value, index) => index <= presentIndex.current);
|
|
80
|
-
});
|
|
81
|
-
useEffect(() => () => {
|
|
82
|
-
callback(decreaseGlobalIds(presentValues.current, getDeletedIndexes(), getGlobalId()));
|
|
83
|
-
}, []);
|
|
84
|
-
presentIndex.current = -1;
|
|
85
|
-
return getNextId;
|
|
86
|
-
}
|
|
87
|
-
export function getNumberGenerators(_ref2) {
|
|
88
|
-
let {
|
|
89
|
-
Component,
|
|
90
|
-
prefix,
|
|
91
|
-
getGlobalPrefix,
|
|
92
|
-
getGlobalId,
|
|
93
|
-
getDeletedIndexes,
|
|
94
|
-
callback
|
|
95
|
-
} = _ref2;
|
|
96
|
-
let presentIndex = 0,
|
|
97
|
-
presentValues = [],
|
|
98
|
-
{
|
|
99
|
-
name
|
|
100
|
-
} = Component.props;
|
|
101
|
-
let didUpdateRef = Component.componentDidUpdate ? Component.componentDidUpdate.bind(Component) : undefined,
|
|
102
|
-
renderRef = Component.render.bind(Component),
|
|
103
|
-
willUnMountRef = Component.componentWillUnmount ? Component.componentWillUnmount.bind(Component) : undefined;
|
|
104
|
-
prefix = typeof prefix !== 'undefined' ? `${prefix}_` : '';
|
|
105
|
-
|
|
106
|
-
Component.componentDidUpdate = function () {
|
|
107
|
-
didUpdateRef && didUpdateRef(...arguments);
|
|
108
|
-
presentValues = presentValues.filter((value, index) => index <= presentIndex);
|
|
109
|
-
};
|
|
110
|
-
|
|
111
|
-
Component.componentWillUnmount = function () {
|
|
112
|
-
callback(decreaseGlobalIds(presentValues, getDeletedIndexes(), getGlobalId()));
|
|
113
|
-
willUnMountRef && willUnMountRef();
|
|
114
|
-
didUpdateRef = null, renderRef = null, willUnMountRef = null;
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
Component.render = function () {
|
|
118
|
-
presentIndex = -1;
|
|
119
|
-
return renderRef();
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
function getNextId() {
|
|
123
|
-
presentIndex += 1;
|
|
124
|
-
let isValuePresent = typeof presentValues[presentIndex] !== 'undefined';
|
|
125
|
-
let result = isValuePresent ? presentValues[presentIndex] : presentValues[presentIndex] = addGlobalId(getGlobalId(getGlobalId()));
|
|
126
|
-
let globalPrefix = getGlobalPrefix();
|
|
127
|
-
globalPrefix = typeof globalPrefix === 'undefined' ? '' : `${globalPrefix}_`;
|
|
128
|
-
!isValuePresent && callback({
|
|
129
|
-
globalId: result,
|
|
130
|
-
deletedIndexes: getDeletedIndexes()
|
|
131
|
-
});
|
|
132
|
-
return `${globalPrefix}${prefix}${result}`;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
return getNextId;
|
|
136
|
-
}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { useNumberGenerator, getNumberGenerators } from './NumberGenerator/NumberGenerator';
|
|
2
|
-
import { getLibraryConfig } from './Config';
|
|
3
|
-
let globalId = getLibraryConfig('zindexCounter'),
|
|
4
|
-
deletedIndexes = [],
|
|
5
|
-
globalPrefix;
|
|
6
|
-
export function removeGlobalZIndexPrefix() {
|
|
7
|
-
globalPrefix = undefined;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
function getGlobalZIndexPrefix() {
|
|
11
|
-
return globalPrefix;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export function setInitialZIndex(id) {
|
|
15
|
-
globalId = id;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
function getGlobalId() {
|
|
19
|
-
return globalId;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
function setDeletedIndexes(array) {
|
|
23
|
-
deletedIndexes = array;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
function getDeletedIndexes() {
|
|
27
|
-
return deletedIndexes;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
function callback(_ref) {
|
|
31
|
-
let {
|
|
32
|
-
globalId,
|
|
33
|
-
deletedIndexes
|
|
34
|
-
} = _ref;
|
|
35
|
-
setInitialZIndex(globalId);
|
|
36
|
-
setDeletedIndexes(deletedIndexes);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function useZIndex(prefix) {
|
|
40
|
-
return useNumberGenerator({
|
|
41
|
-
getGlobalId,
|
|
42
|
-
prefix,
|
|
43
|
-
getGlobalPrefix: getGlobalZIndexPrefix,
|
|
44
|
-
getDeletedIndexes,
|
|
45
|
-
callback
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
export function getZIndex(Component, prefix) {
|
|
49
|
-
return getNumberGenerators({
|
|
50
|
-
Component,
|
|
51
|
-
prefix,
|
|
52
|
-
getGlobalPrefix: getGlobalZIndexPrefix,
|
|
53
|
-
getGlobalId,
|
|
54
|
-
getDeletedIndexes,
|
|
55
|
-
callback
|
|
56
|
-
});
|
|
57
|
-
}
|
package/es/v1/Provider/index.js
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export { getLibraryConfig, setLibraryConfig } from './Config';
|
|
2
|
-
export { default as LibraryContextProvider } from './LibraryContext';
|
|
3
|
-
export { removeGlobalZIndexPrefix, setInitialZIndex, useZIndex, getZIndex } from './ZindexProvider';
|
|
4
|
-
export { setGlobalIdPrefix, removeGlobalIdPrefix, useUniqueId, getUniqueId } from './IdProvider';
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
import React, { useContext, useEffect, useState, useRef, useMemo } from 'react';
|
|
2
|
-
import { CustomResponsiveSender_defaultProps, CustomResponsiveReceiver_defaultProps } from './props/defaultProps';
|
|
3
|
-
import { CustomResponsiveSender_propTypes, CustomResponsiveReceiver_propTypes } from './props/propTypes';
|
|
4
|
-
import ResizeObserver from './ResizeObserver';
|
|
5
|
-
import DOMRefWrapper from './RefWrapper';
|
|
6
|
-
import shallowCompare from '../../Responsive/utils/shallowCompare';
|
|
7
|
-
import { isBreackPointMatched, Subscribale, isTouchDevice, windowResizeObserver } from '../../Responsive/sizeObservers';
|
|
8
|
-
import { ContextOptimizer } from '../../utils/ContextOptimizer'; // const commonBreakPoints = [ 480, 640, 768, 1024, 1440 ];
|
|
9
|
-
// const otherBreakPoints = [320, 360, 375, 720, 1280, 1600, 1920];
|
|
10
|
-
// defaultResponsiveId means if ResponsiveSender do not recive id This will be id
|
|
11
|
-
|
|
12
|
-
const defaultResponsiveId = 'parent_sender'; // validSizeResponsiveId means in some parent's height and with is caluclated ( readed )
|
|
13
|
-
|
|
14
|
-
const validSizeResponsiveId = 'valid_sender';
|
|
15
|
-
const ResponsiveContext = /*#__PURE__*/React.createContext({
|
|
16
|
-
[validSizeResponsiveId]: windowResizeObserver
|
|
17
|
-
});
|
|
18
|
-
export function ResponsiveSender(props) {
|
|
19
|
-
// variables
|
|
20
|
-
const {
|
|
21
|
-
children,
|
|
22
|
-
domRefKey,
|
|
23
|
-
responsiveId
|
|
24
|
-
} = props;
|
|
25
|
-
|
|
26
|
-
function init() {
|
|
27
|
-
let size = {
|
|
28
|
-
height: 0,
|
|
29
|
-
width: 0
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
function getSize() {
|
|
33
|
-
return size;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const childContext = {
|
|
37
|
-
resize: new Subscribale(),
|
|
38
|
-
getSize,
|
|
39
|
-
// TODO: rename isParentSize ==> isSizeReaded (or) isMySize (or) isOriginalSize
|
|
40
|
-
isParentSize: false
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
function onResize(newSize) {
|
|
44
|
-
childContext.isParentSize = true;
|
|
45
|
-
size = newSize;
|
|
46
|
-
setTimeout(() => {
|
|
47
|
-
childContext.resize.dispatch(newSize);
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
const observer = new ResizeObserver(onResize);
|
|
52
|
-
|
|
53
|
-
function containerRef(node) {
|
|
54
|
-
observer.replaceObservationElement(node);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
return {
|
|
58
|
-
containerRef,
|
|
59
|
-
childContext
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const {
|
|
64
|
-
containerRef,
|
|
65
|
-
childContext
|
|
66
|
-
} = useMemo(init, []);
|
|
67
|
-
|
|
68
|
-
function contextSelector(context) {
|
|
69
|
-
const totalContext = { ...context
|
|
70
|
-
};
|
|
71
|
-
totalContext[responsiveId] = childContext; // NOTE: this for fallback of if responsive receiver id wrong or not avelable Responcive id
|
|
72
|
-
|
|
73
|
-
totalContext[defaultResponsiveId] = childContext;
|
|
74
|
-
|
|
75
|
-
if (childContext.isParentSize) {
|
|
76
|
-
totalContext[validSizeResponsiveId] = childContext;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
return totalContext;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
return /*#__PURE__*/React.createElement(ContextOptimizer, {
|
|
83
|
-
Context: ResponsiveContext,
|
|
84
|
-
calculation: contextSelector
|
|
85
|
-
}, totalContext => /*#__PURE__*/React.createElement(ResponsiveContext.Provider, {
|
|
86
|
-
value: totalContext
|
|
87
|
-
}, /*#__PURE__*/React.createElement(DOMRefWrapper, {
|
|
88
|
-
domRefKey: domRefKey,
|
|
89
|
-
ref: containerRef
|
|
90
|
-
}, children)));
|
|
91
|
-
}
|
|
92
|
-
ResponsiveSender.defaultProps = { ...CustomResponsiveSender_defaultProps,
|
|
93
|
-
responsiveId: defaultResponsiveId
|
|
94
|
-
};
|
|
95
|
-
ResponsiveSender.contextType = ResponsiveContext;
|
|
96
|
-
ResponsiveSender.propTypes = CustomResponsiveSender_propTypes;
|
|
97
|
-
export function useResponsiveReceiver() {
|
|
98
|
-
let responsiveId = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultResponsiveId;
|
|
99
|
-
let query = arguments.length > 1 ? arguments[1] : undefined;
|
|
100
|
-
const [, forceUpdate] = useState();
|
|
101
|
-
const totalContextData = useContext(ResponsiveContext);
|
|
102
|
-
const validSizeContextData = totalContextData[validSizeResponsiveId];
|
|
103
|
-
const contextData = totalContextData[responsiveId] || totalContextData[defaultResponsiveId] || validSizeContextData; // NOTE: this for fallback of if responsive receiver id wrong
|
|
104
|
-
|
|
105
|
-
const resizeHandlerRef = useRef();
|
|
106
|
-
const data = useRef();
|
|
107
|
-
|
|
108
|
-
function updateLatestData() {
|
|
109
|
-
const size = contextData.isParentSize ? contextData.getSize() : validSizeContextData.getSize();
|
|
110
|
-
const prevData = data.current;
|
|
111
|
-
data.current = query({
|
|
112
|
-
isTouchDevice,
|
|
113
|
-
isParentSize: contextData.isParentSize,
|
|
114
|
-
currentScreenSize: size,
|
|
115
|
-
|
|
116
|
-
mediaQueryOR(breakPointArray) {
|
|
117
|
-
return breakPointArray.some(breakPoint => {
|
|
118
|
-
const {
|
|
119
|
-
isHeight,
|
|
120
|
-
isWidth
|
|
121
|
-
} = isBreackPointMatched(breakPoint, size);
|
|
122
|
-
return isHeight || isWidth;
|
|
123
|
-
});
|
|
124
|
-
},
|
|
125
|
-
|
|
126
|
-
mediaQueryAND(breakPointArray) {
|
|
127
|
-
return breakPointArray.every(breakPoint => {
|
|
128
|
-
const {
|
|
129
|
-
isHeight,
|
|
130
|
-
isWidth
|
|
131
|
-
} = isBreackPointMatched(breakPoint, size);
|
|
132
|
-
return (isHeight === undefined ? true : isHeight) && (isWidth === undefined ? true : isWidth);
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
});
|
|
137
|
-
const isSameValues = shallowCompare(data.current, prevData);
|
|
138
|
-
|
|
139
|
-
if (isSameValues) {
|
|
140
|
-
data.current = prevData;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
return isSameValues;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
resizeHandlerRef.current = updateLatestData;
|
|
147
|
-
useEffect(() => {
|
|
148
|
-
function handleResize(size) {
|
|
149
|
-
const isSameValues = resizeHandlerRef.current(size);
|
|
150
|
-
!isSameValues && forceUpdate({});
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
contextData.resize.subscribe(handleResize);
|
|
154
|
-
return () => contextData.resize.unsubscribe(handleResize);
|
|
155
|
-
}, [contextData]); // const prevContextDataRef = useRef();
|
|
156
|
-
// function handleResize(size) {
|
|
157
|
-
// const prevData = data.current;
|
|
158
|
-
// resizeHandlerRef.current(size);
|
|
159
|
-
// const isSammeValues = shallowCompare(data.current, prevData);
|
|
160
|
-
// !isSammeValues && forceUpdate({});
|
|
161
|
-
// }
|
|
162
|
-
// if(prevContextDataRef.current !== contextData) {
|
|
163
|
-
// prevContextDataRef.current = contextData;
|
|
164
|
-
// contextData.resize.unsubscribe(handleResize);
|
|
165
|
-
// windowResizeObserver.unobserve(handleResize);
|
|
166
|
-
// if (contextData) {
|
|
167
|
-
// contextData.resize.subscribe(handleResize);
|
|
168
|
-
// } else {
|
|
169
|
-
// windowResizeObserver.observe(handleResize);
|
|
170
|
-
// }
|
|
171
|
-
// }
|
|
172
|
-
// NOTE: this call for we must give updated value
|
|
173
|
-
|
|
174
|
-
updateLatestData();
|
|
175
|
-
return data.current;
|
|
176
|
-
}
|
|
177
|
-
export function ResponsiveReceiver(_ref) {
|
|
178
|
-
let {
|
|
179
|
-
children,
|
|
180
|
-
responsiveId,
|
|
181
|
-
query,
|
|
182
|
-
eleRef,
|
|
183
|
-
domRefKey
|
|
184
|
-
} = _ref;
|
|
185
|
-
const data = useResponsiveReceiver(responsiveId, query);
|
|
186
|
-
const child = children(data);
|
|
187
|
-
return eleRef ? /*#__PURE__*/React.createElement(DOMRefWrapper, {
|
|
188
|
-
domRefKey: domRefKey,
|
|
189
|
-
ref: eleRef
|
|
190
|
-
}, child) : child;
|
|
191
|
-
}
|
|
192
|
-
ResponsiveReceiver.defaultProps = { ...CustomResponsiveReceiver_defaultProps,
|
|
193
|
-
responsiveId: defaultResponsiveId
|
|
194
|
-
};
|
|
195
|
-
ResponsiveReceiver.propTypes = CustomResponsiveReceiver_propTypes;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import React, { forwardRef, useCallback, Children, cloneElement } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
|
|
4
|
-
function setRef(refFunc, value) {
|
|
5
|
-
if (typeof refFunc === 'function') {
|
|
6
|
-
refFunc(value);
|
|
7
|
-
} else if (refFunc instanceof Object) {
|
|
8
|
-
refFunc.current = value;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const DOMRefWrapper = /*#__PURE__*/forwardRef((props, refFunc) => {
|
|
13
|
-
const ele = Children.only(props.children);
|
|
14
|
-
const {
|
|
15
|
-
domRefKey = 'eleRef'
|
|
16
|
-
} = props; // NOTE: need to check for forward Ref function, Because in Froward Ref case refKey is "ref"
|
|
17
|
-
|
|
18
|
-
const refKey = typeof ele.type !== 'string' ? domRefKey : 'ref'; // const setAttribute = useCallback(node => {
|
|
19
|
-
|
|
20
|
-
const eleRealRefFunc = ele.props[refKey];
|
|
21
|
-
const setAttribute = useCallback(ref => {
|
|
22
|
-
setRef(refFunc, ref);
|
|
23
|
-
setRef(eleRealRefFunc, ref);
|
|
24
|
-
}, [refFunc, eleRealRefFunc]); // let refKey = typeof ele.type === 'string' ? 'ref' : 'eleRef';
|
|
25
|
-
|
|
26
|
-
let childProps = {
|
|
27
|
-
[refKey]: setAttribute
|
|
28
|
-
};
|
|
29
|
-
return /*#__PURE__*/cloneElement(ele, childProps);
|
|
30
|
-
});
|
|
31
|
-
DOMRefWrapper.defaultProps = {
|
|
32
|
-
domRefKey: 'eleRef'
|
|
33
|
-
};
|
|
34
|
-
DOMRefWrapper.propTypes = {
|
|
35
|
-
domRefKey: PropTypes.any,
|
|
36
|
-
children: PropTypes.any
|
|
37
|
-
};
|
|
38
|
-
DOMRefWrapper.displayName = 'DOMRefWrapper';
|
|
39
|
-
export default DOMRefWrapper;
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
// QUestions to be discussed
|
|
3
|
-
//1) mutation.type === 'characterData' needed ???
|
|
4
|
-
// 2) debounce Mutation observer and resize observer
|
|
5
|
-
import React from 'react';
|
|
6
|
-
import PropTypes from 'prop-types';
|
|
7
|
-
import ResizeObserver from './ResizeObserver';
|
|
8
|
-
import { getElementSpace, debounce } from '../../utils/Common';
|
|
9
|
-
export default class ResizeComponent extends React.Component {
|
|
10
|
-
constructor(props) {
|
|
11
|
-
super(props);
|
|
12
|
-
this.noSpaceForChildren = false;
|
|
13
|
-
this.childrenCurrentList = [];
|
|
14
|
-
this.widthCheck = debounce(this.widthCheck.bind(this), 10); // this.widthCheck = this.widthCheck.bind(this);
|
|
15
|
-
|
|
16
|
-
this.onResize = this.onResize.bind(this);
|
|
17
|
-
this.onResizeMutation = this.onResizeMutation.bind(this);
|
|
18
|
-
this.tabsObserver = new ResizeObserver(this.onResize);
|
|
19
|
-
this.tabObserver = new MutationObserver(this.onResizeMutation);
|
|
20
|
-
this.reset = this.reset.bind(this);
|
|
21
|
-
this.constructChildren = this.constructChildren.bind(this);
|
|
22
|
-
this.querySelector = this.querySelector.bind(this);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
querySelector() {
|
|
26
|
-
if (this.props.wrapperDivRef && this.props.wrapperDivRef.current) {
|
|
27
|
-
return this.props.wrapperDivRef.current.querySelectorAll('[data-responsive="true"]');
|
|
28
|
-
} else {
|
|
29
|
-
return [];
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
onResizeMutation(mutations) {
|
|
34
|
-
// console.log(mutations);
|
|
35
|
-
let {
|
|
36
|
-
childrenList
|
|
37
|
-
} = this.props;
|
|
38
|
-
|
|
39
|
-
for (const mutation of mutations) {
|
|
40
|
-
if (mutation.type === 'childList') {
|
|
41
|
-
if (mutation.addedNodes.length) {
|
|
42
|
-
let newAdded = false;
|
|
43
|
-
mutation.addedNodes.forEach(mut => {
|
|
44
|
-
// Here we can listen for icon nodes. Confirm with bk
|
|
45
|
-
if (mut.attributes && mut.attributes['data-responsive'] && (childrenList.length !== this.querySelector().length || this.childrenCurrentList.length !== this.querySelector().length)) {
|
|
46
|
-
newAdded = true;
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
if (newAdded) {
|
|
51
|
-
//console.log('A child node has been added ', mutation);
|
|
52
|
-
this.onResize();
|
|
53
|
-
}
|
|
54
|
-
} else if (mutation.removedNodes.length) {// ?? removed nodes ku check pannanum ah ??
|
|
55
|
-
// console.log('A child node has been removed ', mutation);
|
|
56
|
-
}
|
|
57
|
-
} else if (mutation.type === 'attributes') {//console.log('The ' + mutation.attributeName + ' attribute was modified.', mutation);
|
|
58
|
-
} else if (mutation.type === 'characterData') {// To Call While Changing InnerText, Remove Below line If Required. But It might affect Performance.
|
|
59
|
-
// this.onResize();
|
|
60
|
-
}
|
|
61
|
-
} // mutations.forEach(mutation => {
|
|
62
|
-
// if (mutation.target === foo &&
|
|
63
|
-
// mutation.attributeName === 'style' &&
|
|
64
|
-
// oldWidth !== foo.style.width) {
|
|
65
|
-
// foo.textContent = 'Width changed from ' +
|
|
66
|
-
// oldWidth + ' to ' + foo.style.width;
|
|
67
|
-
// oldWidth = foo.style.width;
|
|
68
|
-
// }
|
|
69
|
-
// });
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
componentDidMount() {
|
|
74
|
-
if (this.props.wrapperDivRef && this.props.wrapperDivRef.current) {
|
|
75
|
-
this.tabsObserver.observe(this.props.wrapperDivRef.current);
|
|
76
|
-
this.tabObserver.observe(this.props.wrapperDivRef.current, {
|
|
77
|
-
characterData: true,
|
|
78
|
-
attributes: true,
|
|
79
|
-
childList: true,
|
|
80
|
-
subtree: true,
|
|
81
|
-
attributeFilter: ['data-responsive']
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
componentWillUnmount() {
|
|
87
|
-
this.reset();
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
reset() {
|
|
91
|
-
this.childrenCurrentList = [];
|
|
92
|
-
this.tabsObserver.disconnect();
|
|
93
|
-
this.tabObserver && this.tabObserver.disconnect();
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
componentDidUpdate(prevProps) {
|
|
97
|
-
if (this.childrenCurrentList.length === 0) {
|
|
98
|
-
this.childrenCurrentList = this.querySelector();
|
|
99
|
-
this.widthCheck();
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
if (this.props.resizeId !== prevProps.resizeId) {
|
|
103
|
-
// Completely reset the observers and set new observer if id is changed
|
|
104
|
-
this.reset();
|
|
105
|
-
|
|
106
|
-
if (this.props.wrapperDivRef && this.props.wrapperDivRef.current) {
|
|
107
|
-
this.tabsObserver.observe(this.props.wrapperDivRef.current);
|
|
108
|
-
this.tabObserver.observe(this.props.wrapperDivRef.current, {
|
|
109
|
-
characterData: true,
|
|
110
|
-
attributes: true,
|
|
111
|
-
childList: true,
|
|
112
|
-
subtree: true,
|
|
113
|
-
attributeFilter: ['data-responsive']
|
|
114
|
-
});
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
onResize() {
|
|
120
|
-
// if (this.childrenCurrentList.length !== 0) {
|
|
121
|
-
this.childrenCurrentList = [];
|
|
122
|
-
this.constructChildren(0, false); //}
|
|
123
|
-
} // shouldComponentUpdate() {
|
|
124
|
-
// return this.childrenCurrentList.length === 0
|
|
125
|
-
// }
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
widthCheck() {
|
|
129
|
-
let wrapperDivRef = this.props.wrapperDivRef.current;
|
|
130
|
-
let moreDivRef = this.props.moreDivRef.current;
|
|
131
|
-
|
|
132
|
-
if (wrapperDivRef && this.childrenCurrentList.length > 0) {
|
|
133
|
-
const childrenWidthList = this.childrenCurrentList; // this.childrenCurrentList = childrenWidthList;
|
|
134
|
-
|
|
135
|
-
const moreWidth = getElementSpace(moreDivRef).neededSpace; //console.log(moreWidth,'moreWidth');
|
|
136
|
-
|
|
137
|
-
let totalWidth = getElementSpace(wrapperDivRef).availableInsideSpace - moreWidth;
|
|
138
|
-
let _childrenTotalWidth = 0;
|
|
139
|
-
let dataCount = 0;
|
|
140
|
-
this.noSpaceForChildren = false;
|
|
141
|
-
|
|
142
|
-
if (totalWidth <= moreWidth) {
|
|
143
|
-
this.noSpaceForChildren = true;
|
|
144
|
-
} else {
|
|
145
|
-
for (let i = 0; i < childrenWidthList.length; i++) {
|
|
146
|
-
let currentWidth = getElementSpace(childrenWidthList[i]).neededSpace;
|
|
147
|
-
_childrenTotalWidth += currentWidth; // console.log(_childrenTotalWidth, currentWidth, totalWidth)
|
|
148
|
-
|
|
149
|
-
if (i === childrenWidthList.length - 1 && moreWidth >= currentWidth) {
|
|
150
|
-
totalWidth += moreWidth;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
if (totalWidth <= _childrenTotalWidth) {
|
|
154
|
-
dataCount = i;
|
|
155
|
-
break;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
this.constructChildren(dataCount, true);
|
|
161
|
-
} else {
|
|
162
|
-
this.constructChildren(0, false);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
constructChildren() {
|
|
167
|
-
let dataCount = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
|
|
168
|
-
let responsive = arguments.length > 1 ? arguments[1] : undefined;
|
|
169
|
-
const {
|
|
170
|
-
childrenList,
|
|
171
|
-
getData
|
|
172
|
-
} = this.props; // If the data count is zero we assume that we can render all the items - data count will be zero only when we want to calculate the whole list width
|
|
173
|
-
|
|
174
|
-
dataCount = dataCount || childrenList && childrenList.length;
|
|
175
|
-
getData({
|
|
176
|
-
responsiveHook: responsive,
|
|
177
|
-
validListCount: this.noSpaceForChildren ? 0 : dataCount
|
|
178
|
-
});
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
render() {
|
|
182
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, this.props.children);
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
ResizeComponent.propTypes = {
|
|
187
|
-
children: PropTypes.node,
|
|
188
|
-
getData: PropTypes.func,
|
|
189
|
-
resizeId: PropTypes.number,
|
|
190
|
-
childrenList: PropTypes.array,
|
|
191
|
-
wrapperDivRef: PropTypes.any,
|
|
192
|
-
moreDivRef: PropTypes.any
|
|
193
|
-
};
|
|
194
|
-
ResizeComponent.defaultProps = {
|
|
195
|
-
getData: () => {},
|
|
196
|
-
resizeId: null
|
|
197
|
-
};
|