@true-engineering/true-react-common-ui-kit 4.0.0-alpha25 → 4.0.0-alpha27
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/dist/components/FlexibleTable/FlexibleTable.d.ts +1 -1
- package/dist/components/FlexibleTable/types.d.ts +12 -4
- package/dist/components/Select/components/SelectListItem/SelectListItem.d.ts +2 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/use-intersection-ref.d.ts +8 -0
- package/dist/true-react-common-ui-kit.js +218 -128
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +218 -128
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/FiltersPane/components/FilterSelect/FilterSelect.tsx +22 -23
- package/src/components/FlexibleTable/FlexibleTable.tsx +27 -51
- package/src/components/FlexibleTable/types.ts +12 -4
- package/src/components/MultiSelectList/MultiSelectList.tsx +15 -11
- package/src/components/Select/components/SelectList/SelectList.tsx +3 -1
- package/src/components/Select/components/SelectListItem/SelectListItem.tsx +5 -2
- package/src/hooks/index.ts +1 -0
- package/src/hooks/use-intersection-ref.ts +30 -0
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { ReactNode, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { debounce } from 'ts-debounce';
|
|
4
|
-
import {
|
|
5
|
-
|
|
4
|
+
import {
|
|
5
|
+
addDataTestId,
|
|
6
|
+
getTestId,
|
|
7
|
+
isReactNodeNotEmpty,
|
|
8
|
+
addDataAttributes,
|
|
9
|
+
isArrayNotEmpty,
|
|
10
|
+
isNotEmpty,
|
|
11
|
+
} from '@true-engineering/true-react-platform-helpers';
|
|
6
12
|
import { useIsMounted, useTweakStyles } from '../../../../hooks';
|
|
7
13
|
import { ICommonProps } from '../../../../types';
|
|
8
14
|
import { Button } from '../../../Button';
|
|
@@ -227,7 +233,7 @@ export function FilterSelect<Value>({
|
|
|
227
233
|
}, []);
|
|
228
234
|
|
|
229
235
|
return (
|
|
230
|
-
<div className={classes.root} {...addDataAttributes(data)}>
|
|
236
|
+
<div className={classes.root} {...addDataAttributes(data, testId)}>
|
|
231
237
|
{isSearchEnabled && (
|
|
232
238
|
<div className={classes.dropdownInput}>
|
|
233
239
|
<SearchInput
|
|
@@ -235,7 +241,7 @@ export function FilterSelect<Value>({
|
|
|
235
241
|
placeholder={translates.searchPlaceholder}
|
|
236
242
|
onChange={handleOnChange}
|
|
237
243
|
tweakStyles={tweakSearchInputStyles}
|
|
238
|
-
testId={testId
|
|
244
|
+
testId={getTestId(testId, 'search')}
|
|
239
245
|
shouldFocusOnMount
|
|
240
246
|
/>
|
|
241
247
|
</div>
|
|
@@ -243,19 +249,17 @@ export function FilterSelect<Value>({
|
|
|
243
249
|
|
|
244
250
|
{!isLoading && (
|
|
245
251
|
<>
|
|
246
|
-
{allOptions
|
|
252
|
+
{isArrayNotEmpty(allOptions) && (
|
|
247
253
|
<div
|
|
248
|
-
className={clsx(classes.list,
|
|
249
|
-
|
|
254
|
+
className={clsx(classes.list, { [classes.withClearButton]: hasClearButton })}
|
|
255
|
+
{...addDataTestId(testId, 'list')}
|
|
250
256
|
>
|
|
251
|
-
{isGroupingEnabled && value
|
|
257
|
+
{isGroupingEnabled && isNotEmpty(value) && (
|
|
252
258
|
<>
|
|
253
259
|
<div
|
|
254
|
-
className={clsx(
|
|
255
|
-
classes.
|
|
256
|
-
|
|
257
|
-
!isSearchEnabled && classes.withoutTopGap,
|
|
258
|
-
)}
|
|
260
|
+
className={clsx(classes.label, classes.labelChosen, {
|
|
261
|
+
[classes.withoutTopGap]: !isSearchEnabled,
|
|
262
|
+
})}
|
|
259
263
|
>
|
|
260
264
|
{translates.chosen}
|
|
261
265
|
</div>
|
|
@@ -269,7 +273,7 @@ export function FilterSelect<Value>({
|
|
|
269
273
|
</>
|
|
270
274
|
)}
|
|
271
275
|
{allOptions.map((item, index) => {
|
|
272
|
-
const isActive = value
|
|
276
|
+
const isActive = isNotEmpty(value) && getValueId(value) === getValueId(item);
|
|
273
277
|
if (isGroupingEnabled && isActive) {
|
|
274
278
|
return null;
|
|
275
279
|
}
|
|
@@ -287,8 +291,7 @@ export function FilterSelect<Value>({
|
|
|
287
291
|
}
|
|
288
292
|
onClick={() => handleChange(item)}
|
|
289
293
|
>
|
|
290
|
-
{
|
|
291
|
-
<div className={classes.option} data-option={id}>
|
|
294
|
+
<div className={classes.option} {...addDataAttributes({ id, option: id })}>
|
|
292
295
|
{view}
|
|
293
296
|
</div>
|
|
294
297
|
{isActive && (
|
|
@@ -320,17 +323,13 @@ export function FilterSelect<Value>({
|
|
|
320
323
|
)}
|
|
321
324
|
|
|
322
325
|
{/* Nothing found */}
|
|
323
|
-
{allOptions
|
|
326
|
+
{!isArrayNotEmpty(allOptions) && (
|
|
324
327
|
<div className={classes.nothingFound}>{translates.nothingFound}</div>
|
|
325
328
|
)}
|
|
326
329
|
|
|
327
330
|
{/* Controls and footer */}
|
|
328
331
|
{(hasClearButton || hasFooter) && (
|
|
329
|
-
<div
|
|
330
|
-
className={clsx(classes.panel, {
|
|
331
|
-
[classes.panelWithFooter]: hasFooter,
|
|
332
|
-
})}
|
|
333
|
-
>
|
|
332
|
+
<div className={clsx(classes.panel, { [classes.panelWithFooter]: hasFooter })}>
|
|
334
333
|
{hasFooter && <div className={classes.footer}>{footer}</div>}
|
|
335
334
|
|
|
336
335
|
{hasClearButton && (
|
|
@@ -339,7 +338,7 @@ export function FilterSelect<Value>({
|
|
|
339
338
|
onClick={handleClear}
|
|
340
339
|
size="s"
|
|
341
340
|
view="text"
|
|
342
|
-
testId={testId
|
|
341
|
+
testId={getTestId(testId, 'clear-button')}
|
|
343
342
|
tweakStyles={tweakClearButtonStyles}
|
|
344
343
|
>
|
|
345
344
|
{translates.clear}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { ReactNode, RefObject, useCallback, useEffect, useMemo, useRef } from 'react';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import {
|
|
4
|
-
|
|
4
|
+
addDataAttributes,
|
|
5
5
|
applyAction,
|
|
6
|
+
getTestId,
|
|
6
7
|
indexMap,
|
|
7
8
|
isArrayNotEmpty,
|
|
8
9
|
isEmpty,
|
|
9
10
|
isNotEmpty,
|
|
11
|
+
isReactNodeNotEmpty,
|
|
10
12
|
} from '@true-engineering/true-react-platform-helpers';
|
|
11
|
-
import {
|
|
12
|
-
import { useMergedRefs, useTweakStyles } from '../../hooks';
|
|
13
|
+
import { useIntersectionRef, useMergedRefs, useTweakStyles } from '../../hooks';
|
|
13
14
|
import { ICommonProps } from '../../types';
|
|
14
15
|
import { ThemedPreloader } from '../ThemedPreloader';
|
|
15
16
|
import { FlexibleTableRow, IFlexibleTableRowProps } from './components';
|
|
@@ -81,7 +82,7 @@ export function FlexibleTable<
|
|
|
81
82
|
isFirstColumnSticky = false,
|
|
82
83
|
isHorizontallyScrollable = false,
|
|
83
84
|
isRowFocusable = false,
|
|
84
|
-
infinityScrollConfig,
|
|
85
|
+
infinityScrollConfig: infinityScrollConfigDeprecated,
|
|
85
86
|
renderMode = 'table',
|
|
86
87
|
refForScroll,
|
|
87
88
|
nothingFoundContent,
|
|
@@ -101,13 +102,10 @@ export function FlexibleTable<
|
|
|
101
102
|
currentComponentName: 'FlexibleTable',
|
|
102
103
|
});
|
|
103
104
|
|
|
104
|
-
const observer = useRef<IntersectionObserver>();
|
|
105
105
|
const scrollRef = useRef<HTMLDivElement>(null);
|
|
106
106
|
|
|
107
107
|
const columns = useMemo(() => enabledColumns ?? Object.keys(config), [enabledColumns, config]);
|
|
108
108
|
|
|
109
|
-
const hasInfiniteScroll = isNotEmpty(infinityScrollConfig);
|
|
110
|
-
|
|
111
109
|
const getTableRowProps = (
|
|
112
110
|
item: Row,
|
|
113
111
|
index: number,
|
|
@@ -148,12 +146,6 @@ export function FlexibleTable<
|
|
|
148
146
|
[getDataScrollAttributeSetter],
|
|
149
147
|
);
|
|
150
148
|
|
|
151
|
-
const shouldShowNothingFound =
|
|
152
|
-
!isArrayNotEmpty(content) &&
|
|
153
|
-
nothingFoundContent !== undefined &&
|
|
154
|
-
!infinityScrollConfig?.isLoading &&
|
|
155
|
-
(infinityScrollConfig?.isLastPage === undefined || infinityScrollConfig.isLastPage);
|
|
156
|
-
|
|
157
149
|
const ref = useMergedRefs([
|
|
158
150
|
refForScroll,
|
|
159
151
|
scrollRef,
|
|
@@ -161,37 +153,25 @@ export function FlexibleTable<
|
|
|
161
153
|
setIsScrolledAttribute,
|
|
162
154
|
]);
|
|
163
155
|
|
|
164
|
-
const
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
observer.current = new IntersectionObserver((entries) => {
|
|
179
|
-
if (entries[0].isIntersecting) {
|
|
180
|
-
infinityScrollConfig.onInfinityScroll(infinityScrollConfig.activePage + 1);
|
|
181
|
-
}
|
|
182
|
-
});
|
|
156
|
+
const infinityScrollConfig = infinityScrollConfigDeprecated && {
|
|
157
|
+
isLoading: infinityScrollConfigDeprecated.isLoading,
|
|
158
|
+
onInfinityScroll: () =>
|
|
159
|
+
infinityScrollConfigDeprecated.onInfinityScroll(
|
|
160
|
+
(infinityScrollConfigDeprecated.activePage ?? 0) + 1,
|
|
161
|
+
),
|
|
162
|
+
isEnabled:
|
|
163
|
+
infinityScrollConfigDeprecated.isEnabled ?? !infinityScrollConfigDeprecated.isLastPage,
|
|
164
|
+
};
|
|
165
|
+
const intersectionRef = useIntersectionRef({
|
|
166
|
+
isDisabled: !infinityScrollConfig?.isEnabled || infinityScrollConfig.isLoading,
|
|
167
|
+
onIntersection: infinityScrollConfig?.onInfinityScroll,
|
|
168
|
+
});
|
|
183
169
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
hasInfiniteScroll,
|
|
190
|
-
infinityScrollConfig?.activePage,
|
|
191
|
-
infinityScrollConfig?.totalPages,
|
|
192
|
-
infinityScrollConfig?.onInfinityScroll,
|
|
193
|
-
],
|
|
194
|
-
);
|
|
170
|
+
const shouldShowNothingFound =
|
|
171
|
+
isReactNodeNotEmpty(nothingFoundContent) &&
|
|
172
|
+
!isArrayNotEmpty(content) &&
|
|
173
|
+
!infinityScrollConfig?.isLoading &&
|
|
174
|
+
!infinityScrollConfig?.isEnabled;
|
|
195
175
|
|
|
196
176
|
useEffect(() => {
|
|
197
177
|
const scrollContainer = scrollRef.current;
|
|
@@ -222,11 +202,7 @@ export function FlexibleTable<
|
|
|
222
202
|
|
|
223
203
|
return (
|
|
224
204
|
<div ref={ref} className={clsx({ [classes.scroll]: isHorizontallyScrollable })}>
|
|
225
|
-
<Table.Root
|
|
226
|
-
className={classes.root}
|
|
227
|
-
{...addDataTestId(testId)}
|
|
228
|
-
{...addDataAttributes({ ...data, isLoading })}
|
|
229
|
-
>
|
|
205
|
+
<Table.Root className={classes.root} {...addDataAttributes({ ...data, isLoading }, testId)}>
|
|
230
206
|
{shouldRenderHeader && (
|
|
231
207
|
<Table.Head className={classes.head}>
|
|
232
208
|
<Table.Row className={classes.headerRow}>
|
|
@@ -291,11 +267,11 @@ export function FlexibleTable<
|
|
|
291
267
|
/>
|
|
292
268
|
))}
|
|
293
269
|
|
|
294
|
-
{
|
|
270
|
+
{infinityScrollConfig?.isEnabled && (
|
|
295
271
|
<Table.Row className={classes.loaderRow}>
|
|
296
272
|
<Table.Cell className={classes.loaderCell} colSpan={columns.length}>
|
|
297
|
-
<div ref={
|
|
298
|
-
<ThemedPreloader type="dots" />
|
|
273
|
+
<div ref={intersectionRef} className={classes.loader}>
|
|
274
|
+
<ThemedPreloader type="dots" testId={getTestId(testId, 'loader')} />
|
|
299
275
|
</div>
|
|
300
276
|
</Table.Cell>
|
|
301
277
|
</Table.Row>
|
|
@@ -64,11 +64,19 @@ export type IFlexibleTableConfigType<
|
|
|
64
64
|
};
|
|
65
65
|
|
|
66
66
|
export interface IInfinityScrollConfig {
|
|
67
|
-
|
|
68
|
-
totalPages: number;
|
|
67
|
+
isEnabled?: boolean;
|
|
69
68
|
isLoading: boolean;
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
onInfinityScroll: {
|
|
70
|
+
(_: never): void;
|
|
71
|
+
/** @deprecated use activePage directly */
|
|
72
|
+
(skip: number): void; // eslint-disable-line @typescript-eslint/unified-signatures
|
|
73
|
+
};
|
|
74
|
+
/** @deprecated use activePage in onInfinityScroll */
|
|
75
|
+
activePage?: number;
|
|
76
|
+
/** @deprecated use isEnabled */
|
|
77
|
+
isLastPage?: boolean;
|
|
78
|
+
/** @deprecated use isEnabled */
|
|
79
|
+
totalPages?: number;
|
|
72
80
|
}
|
|
73
81
|
|
|
74
82
|
export interface INestedComponent<T extends PropertyKey = string> {
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { useEffect, useState, useMemo, useRef, useCallback, ReactNode } from 'react';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { debounce } from 'ts-debounce';
|
|
4
|
-
import {
|
|
5
|
-
|
|
4
|
+
import {
|
|
5
|
+
addDataAttributes,
|
|
6
|
+
addDataTestId,
|
|
7
|
+
getTestId,
|
|
8
|
+
isArrayNotEmpty,
|
|
9
|
+
isNotEmpty,
|
|
10
|
+
} from '@true-engineering/true-react-platform-helpers';
|
|
6
11
|
import { useIsMounted, useTweakStyles } from '../../hooks';
|
|
7
12
|
import { ICommonProps } from '../../types';
|
|
8
13
|
import { Button } from '../Button';
|
|
@@ -330,7 +335,7 @@ export function MultiSelectList<Value extends IMultiSelectListValues<Option>, Op
|
|
|
330
335
|
!isLoading && (isArrayNotEmpty(allOptions) || isArrayNotEmpty(chosenValues));
|
|
331
336
|
|
|
332
337
|
return (
|
|
333
|
-
<div className={classes.root} {...addDataAttributes(data)}>
|
|
338
|
+
<div className={classes.root} {...addDataAttributes(data, testId)}>
|
|
334
339
|
{isSearchEnabled && (
|
|
335
340
|
<div className={classes.dropdownInput}>
|
|
336
341
|
<SearchInput
|
|
@@ -339,16 +344,13 @@ export function MultiSelectList<Value extends IMultiSelectListValues<Option>, Op
|
|
|
339
344
|
onChange={handleOnChange}
|
|
340
345
|
tweakStyles={tweakSearchInputStyles}
|
|
341
346
|
maxLength={searchMaxLength}
|
|
342
|
-
testId={testId
|
|
347
|
+
testId={getTestId(testId, 'search')}
|
|
343
348
|
shouldFocusOnMount
|
|
344
349
|
/>
|
|
345
350
|
</div>
|
|
346
351
|
)}
|
|
347
352
|
{shouldShowOptionsList && (
|
|
348
|
-
<div
|
|
349
|
-
className={classes.list}
|
|
350
|
-
data-testid={testId !== undefined ? `${testId}-list` : undefined}
|
|
351
|
-
>
|
|
353
|
+
<div className={classes.list} {...addDataTestId(testId, 'list')}>
|
|
352
354
|
{/* Выбранные */}
|
|
353
355
|
{hasSelectedOptionsGroup && (
|
|
354
356
|
<>
|
|
@@ -379,8 +381,9 @@ export function MultiSelectList<Value extends IMultiSelectListValues<Option>, Op
|
|
|
379
381
|
value={val}
|
|
380
382
|
tweakStyles={tweakCheckboxStyles}
|
|
381
383
|
labelPosition={checkboxPosition === 'left' ? 'right' : 'left'}
|
|
384
|
+
data={{ id }}
|
|
382
385
|
>
|
|
383
|
-
<div className={classes.option}
|
|
386
|
+
<div className={classes.option} {...addDataAttributes({ option: id })}>
|
|
384
387
|
{view}
|
|
385
388
|
</div>
|
|
386
389
|
</Checkbox>
|
|
@@ -417,8 +420,9 @@ export function MultiSelectList<Value extends IMultiSelectListValues<Option>, Op
|
|
|
417
420
|
value={val}
|
|
418
421
|
tweakStyles={tweakCheckboxStyles}
|
|
419
422
|
labelPosition={checkboxPosition === 'left' ? 'right' : 'left'}
|
|
423
|
+
data={{ id }}
|
|
420
424
|
>
|
|
421
|
-
<div className={classes.option}
|
|
425
|
+
<div className={classes.option} {...addDataAttributes({ option: id })}>
|
|
422
426
|
{view}
|
|
423
427
|
</div>
|
|
424
428
|
</Checkbox>
|
|
@@ -449,7 +453,7 @@ export function MultiSelectList<Value extends IMultiSelectListValues<Option>, Op
|
|
|
449
453
|
onClick={handleClear}
|
|
450
454
|
size="s"
|
|
451
455
|
view="text"
|
|
452
|
-
testId={testId
|
|
456
|
+
testId={getTestId(testId, 'clear-button')}
|
|
453
457
|
tweakStyles={tweakClearButtonStyles}
|
|
454
458
|
>
|
|
455
459
|
{translates.clear}
|
|
@@ -119,8 +119,9 @@ export function SelectList<Value>({
|
|
|
119
119
|
)}
|
|
120
120
|
{listOptions.map((opt, i) => {
|
|
121
121
|
const optionValue = options[i];
|
|
122
|
+
const id = convertValueToId(optionValue);
|
|
122
123
|
const isFocused = focusedIndex === i;
|
|
123
|
-
const isActive = activeOptionsIds.has(
|
|
124
|
+
const isActive = activeOptionsIds.has(id);
|
|
124
125
|
// проверяем, что опция задизейблена
|
|
125
126
|
const isDisabled = optionsDisableMap[i];
|
|
126
127
|
|
|
@@ -135,6 +136,7 @@ export function SelectList<Value>({
|
|
|
135
136
|
isMultiSelect={isMultiSelect}
|
|
136
137
|
onOptionSelect={onOptionSelect}
|
|
137
138
|
onToggleCheckbox={onToggleCheckbox}
|
|
139
|
+
data={{ id }}
|
|
138
140
|
>
|
|
139
141
|
{opt}
|
|
140
142
|
</SelectListItem>
|
|
@@ -7,12 +7,13 @@ import {
|
|
|
7
7
|
} from 'react';
|
|
8
8
|
import clsx from 'clsx';
|
|
9
9
|
import { type Classes } from 'jss';
|
|
10
|
-
import { addDataAttributes } from '
|
|
10
|
+
import { addDataAttributes } from '@true-engineering/true-react-platform-helpers';
|
|
11
|
+
import { IDataAttributesProps } from '../../../../types';
|
|
11
12
|
import { Checkbox } from '../../../Checkbox';
|
|
12
13
|
import { ScrollIntoViewIfNeeded } from '../../../ScrollIntoViewIfNeeded';
|
|
13
14
|
import { checkboxStyles } from './SelectListItem.styles';
|
|
14
15
|
|
|
15
|
-
export interface ISelectListItemProps {
|
|
16
|
+
export interface ISelectListItemProps extends IDataAttributesProps {
|
|
16
17
|
index: number;
|
|
17
18
|
isSemiChecked?: boolean;
|
|
18
19
|
isDisabled?: boolean;
|
|
@@ -38,6 +39,7 @@ export const SelectListItem: FC<ISelectListItemProps> = ({
|
|
|
38
39
|
children,
|
|
39
40
|
isFocused,
|
|
40
41
|
isMultiSelect,
|
|
42
|
+
data,
|
|
41
43
|
onOptionSelect,
|
|
42
44
|
onToggleCheckbox,
|
|
43
45
|
}) => {
|
|
@@ -67,6 +69,7 @@ export const SelectListItem: FC<ISelectListItemProps> = ({
|
|
|
67
69
|
disabled: isDisabled,
|
|
68
70
|
active: isActive,
|
|
69
71
|
focused: isFocused,
|
|
72
|
+
...data,
|
|
70
73
|
})}
|
|
71
74
|
onClick={!isDisabled && !isMultiSelect ? (event) => onOptionSelect(index, event) : undefined}
|
|
72
75
|
>
|
package/src/hooks/index.ts
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { useRef, useMemo, RefCallback } from 'react';
|
|
2
|
+
import { isNotEmpty } from '@true-engineering/true-react-platform-helpers';
|
|
3
|
+
|
|
4
|
+
export interface IInsertionRefOptions {
|
|
5
|
+
/** @default false */
|
|
6
|
+
isDisabled?: boolean;
|
|
7
|
+
onIntersection?: VoidFunction;
|
|
8
|
+
onIntersectionEnd?: VoidFunction;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const useIntersectionRef = (options?: IInsertionRefOptions): RefCallback<Element> => {
|
|
12
|
+
const optionsRef = useRef(options);
|
|
13
|
+
optionsRef.current = options;
|
|
14
|
+
|
|
15
|
+
return useMemo(() => {
|
|
16
|
+
const observer = new IntersectionObserver(([{ isIntersecting }]) => {
|
|
17
|
+
const { current } = optionsRef;
|
|
18
|
+
if (current?.isDisabled) {
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
if (isIntersecting) {
|
|
22
|
+
current?.onIntersection?.();
|
|
23
|
+
} else {
|
|
24
|
+
current?.onIntersectionEnd?.();
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
return (node) => (isNotEmpty(node) ? observer.observe(node) : observer.disconnect());
|
|
29
|
+
}, []);
|
|
30
|
+
};
|