{shouldShowJustContacts && (
)}
{shouldShowSortByReactions && (
)}
{shouldShowSearch && (
)}
)}
{isExpired && !isLoading && !query && Boolean(!sortedViews?.length) && (
{renderText(
lang(isCurrentUserPremium ? 'ServerErrorViewers' : 'ExpiredViewsStub'),
['simple_markdown', 'emoji'],
)}
)}
{!isLoading && Boolean(query.length) && !sortedViews?.length && (
{lang('Story.ViewList.EmptyTextSearch')}
)}
{sortedViews?.map((view) => {
const additionalKeyId = view.type === 'forward' ? view.messageId
: view.type === 'repost' ? view.storyId : 'user';
return (
);
})}
{isLoading && Array.from({ length: placeholderCount }).map((_, i) => (
))}
{notAllAvailable && (
{lang('Story.ViewList.NotFullyRecorded')}
)}