signal-desktop/ts/components/ContactPills.tsx

42 lines
1,019 B
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2021 Signal Messenger, LLC
2021-03-03 20:09:58 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2022-11-18 00:45:19 +00:00
import type { ReactNode } from 'react';
import React, { useRef, useEffect, Children } from 'react';
import classNames from 'classnames';
2021-03-03 20:09:58 +00:00
2021-09-17 22:24:21 +00:00
import { usePrevious } from '../hooks/usePrevious';
import { scrollToBottom } from '../util/scrollUtil';
2021-03-03 20:09:58 +00:00
type PropsType = {
moduleClassName?: string;
2021-03-03 20:09:58 +00:00
children?: ReactNode;
};
2022-11-18 00:45:19 +00:00
export function ContactPills({
moduleClassName,
children,
2022-11-18 00:45:19 +00:00
}: PropsType): JSX.Element {
2021-03-03 20:09:58 +00:00
const elRef = useRef<null | HTMLDivElement>(null);
const childCount = Children.count(children);
const previousChildCount = usePrevious(0, childCount);
2021-03-03 20:09:58 +00:00
useEffect(() => {
const hasAddedNewChild = childCount > previousChildCount;
const el = elRef.current;
if (hasAddedNewChild && el) {
scrollToBottom(el);
2021-03-03 20:09:58 +00:00
}
}, [childCount, previousChildCount]);
return (
<div
className={classNames('module-ContactPills', moduleClassName)}
ref={elRef}
>
2021-03-03 20:09:58 +00:00
{children}
</div>
);
2022-11-18 00:45:19 +00:00
}