more playing around but too much here

This commit is contained in:
talksik
2022-05-16 17:04:30 -05:00
parent f9a2e30526
commit 415f2f36e5
2 changed files with 19 additions and 10 deletions
@@ -170,9 +170,7 @@ function LineDetails() {
<span className={'text-gray-300 text-sm'}>yesterday</span>
<div
className={'rounded border border-gray-200 flex flex-row items-center gap-2 w-full p-2'}
>
<div className={'rounded flex flex-row items-center gap-2 w-full p-2'}>
<Avatar.Group key={`lineHistoryMessage-yesterday-afternoon}`}>
{selectedLine.otherUserObjects.map((otherUser) => (
<Avatar
@@ -203,11 +201,7 @@ function LineDetails() {
<span className={'text-gray-300 text-sm'}>today</span>
<div
className={
'rounded border border-gray-200 flex flex-row items-center gap-2 w-full p-2 shadow-xl'
}
>
<div className={'rounded flex flex-row items-center gap-2 w-full p-2 shadow-xl'}>
<Avatar.Group key={`lineHistoryMessage-yesterday-afternoon}`}>
{selectedLine.otherUserObjects.map((otherUser) => (
<Avatar
@@ -246,7 +240,7 @@ function LineDetails() {
{/* <LineStreams broadcasters={selectedLine.tunedInMemberIds} /> */}
</div>
<div className="flex-1 flex flex-col border-l-teal-500 border-l">
<div className="flex-1 flex flex-col shadow-2xl p-2">
{selectedLine.otherUserObjects.map((otherUser) => (
<div
key={`rightNowLineHistory-${otherUser._id.toString()}`}
@@ -267,6 +261,21 @@ function LineDetails() {
</Tooltip>
</div>
))}
<div
key={`rightNowLineHistory-${user._id.toString()}`}
className="flex flex-row p-2 gap-2 items-center bg-transparent"
>
<Avatar
key={`linehistory-${1}`}
src={user.picture}
shape="square"
size={'large'}
// grayscale if not playing?
className={`shadow-lg grayscale`}
/>
<span className="text-gray-400">{user.name}</span>
</div>
</div>
</div>
@@ -41,7 +41,7 @@ export default function SidePanel() {
<span className="flex flex-row gap-2 items-center justify-start text-gray-400 animate-pulse">
<FiActivity className="text-sm" />
<h2 className="text-inherit text-sm">Rooms</h2>
<h2 className="text-inherit text-sm">Tuned In</h2>
<p className="text-slate-300 text-xs">{`${toggleTunedLines?.length || 0}/3`}</p>
</span>