openreplay/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx
2023-01-13 17:36:35 +01:00

26 lines
751 B
TypeScript

import React from 'react';
import cn from 'classnames';
import MetaItem from '../MetaItem';
import MetaMoreButton from '../MetaMoreButton';
interface Props {
className?: string;
metaList: any[];
maxLength?: number;
}
export default function SessionMetaList(props: Props) {
const { className = '', metaList, maxLength = 4 } = props;
return (
<div className={cn('text-sm flex items-center', className)}>
{metaList.slice(0, maxLength).map(({ label, value }, index) => (
<React.Fragment key={index}>
<MetaItem label={label} value={'' + value} className="mr-3" />
</React.Fragment>
))}
{metaList.length > maxLength && <MetaMoreButton list={metaList} maxLength={maxLength} />}
</div>
);
}