2022-03-03 14:23:10 -06:00
|
|
|
// Copyright 2021-2022 Signal Messenger, LLC
|
2021-03-03 14:09:58 -06:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-10-26 14:15:33 -05:00
|
|
|
import type { FunctionComponent, ReactNode } from 'react';
|
|
|
|
import React, { useRef, useEffect, Children } from 'react';
|
2021-03-03 14:09:58 -06:00
|
|
|
|
2021-09-17 18:24:21 -04:00
|
|
|
import { usePrevious } from '../hooks/usePrevious';
|
2022-03-03 14:23:10 -06:00
|
|
|
import { scrollToBottom } from '../util/scrollUtil';
|
2021-03-08 14:07:37 -06:00
|
|
|
|
2021-03-03 14:09:58 -06:00
|
|
|
type PropsType = {
|
|
|
|
children?: ReactNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ContactPills: FunctionComponent<PropsType> = ({ children }) => {
|
|
|
|
const elRef = useRef<null | HTMLDivElement>(null);
|
|
|
|
|
|
|
|
const childCount = Children.count(children);
|
2021-03-18 19:22:17 -05:00
|
|
|
const previousChildCount = usePrevious(0, childCount);
|
2021-03-03 14:09:58 -06:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const hasAddedNewChild = childCount > previousChildCount;
|
|
|
|
const el = elRef.current;
|
2021-03-08 14:07:37 -06:00
|
|
|
if (hasAddedNewChild && el) {
|
|
|
|
scrollToBottom(el);
|
2021-03-03 14:09:58 -06:00
|
|
|
}
|
|
|
|
}, [childCount, previousChildCount]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="module-ContactPills" ref={elRef}>
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|