2023-02-06 13:27:28 -05:00
|
|
|
import React from 'react';
|
|
|
|
|
import Conversation from './Conversation';
|
|
|
|
|
|
2023-02-06 21:17:46 -05:00
|
|
|
export default function Conversations({ convoState, conversations, convoHandler }) {
|
2023-02-06 13:27:28 -05:00
|
|
|
return (
|
|
|
|
|
<div className="-mr-2 flex-1 flex-col overflow-y-auto border-b border-white/20">
|
|
|
|
|
<div className="flex flex-col gap-2 text-sm text-gray-100">
|
2023-02-06 16:00:59 -05:00
|
|
|
{conversations &&
|
|
|
|
|
conversations.map((convo, i) => (
|
|
|
|
|
<Conversation
|
|
|
|
|
key={convo.conversationId}
|
2023-02-06 18:25:11 -05:00
|
|
|
id={convo.conversationId}
|
|
|
|
|
parentMessageId={convo.parentMessageId}
|
2023-02-06 16:00:59 -05:00
|
|
|
title={convo.title}
|
2023-02-06 21:17:46 -05:00
|
|
|
convo={convoState}
|
2023-02-06 18:25:11 -05:00
|
|
|
convoHandler={convoHandler}
|
2023-02-06 16:00:59 -05:00
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
{conversations && conversations.length >= 12 && (
|
|
|
|
|
<button className="btn btn-dark btn-small m-auto mb-2 flex justify-center gap-2">
|
|
|
|
|
Show more
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
2023-02-06 13:27:28 -05:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|