);
};
export const RegisteredChannelCardBody: React.FC<
RegisteredChannelCardBodyProps
> = ( { registeredChannel } ) => {
/**
* The description section in the channel card.
*
* If setup is not completed, this would be the channel description.
*
* If setup is completed, this would be an element with sync status and issue status.
*/
const description = ! registeredChannel.isSetupCompleted ? (
registeredChannel.description
) : (
{ registeredChannel.syncStatus && (
<>
>
) }
);
/**
* The action button in the channel card.
*
* If setup is not completed, this would be a "Finish setup" primary button.
*
* If setup is completed, this would be a "Manage" secondary button.
*/
const button = ! registeredChannel.isSetupCompleted ? (
) : (
);
return (
}
name={ registeredChannel.title }
description={ description }
button={ button }
/>
);
};