Design tweaks to add-story-button hover
This commit is contained in:
parent
810cbb5fe5
commit
2278bf2994
6 changed files with 26 additions and 12 deletions
210
ts/components/MyStoryButton.tsx
Normal file
210
ts/components/MyStoryButton.tsx
Normal file
|
@ -0,0 +1,210 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React, { useState } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import type { ConversationType } from '../state/ducks/conversations';
|
||||
import type { LocalizerType } from '../types/Util';
|
||||
import type { ShowToastActionCreatorType } from '../state/ducks/toast';
|
||||
import type { StorySendStateType, StoryViewType } from '../types/Stories';
|
||||
import { Avatar, AvatarSize } from './Avatar';
|
||||
import { HasStories } from '../types/Stories';
|
||||
import { StoryImage } from './StoryImage';
|
||||
import { getAvatarColor } from '../types/Colors';
|
||||
import { MessageTimestamp } from './conversation/MessageTimestamp';
|
||||
|
||||
import { StoriesAddStoryButton } from './StoriesAddStoryButton';
|
||||
import { isFailed, isPending } from '../messages/MessageSendState';
|
||||
|
||||
export type PropsType = {
|
||||
hasMultiple: boolean;
|
||||
i18n: LocalizerType;
|
||||
me: ConversationType;
|
||||
newestStory?: StoryViewType;
|
||||
onAddStory: () => unknown;
|
||||
onClick: () => unknown;
|
||||
queueStoryDownload: (storyId: string) => unknown;
|
||||
showToast: ShowToastActionCreatorType;
|
||||
};
|
||||
|
||||
enum ResolvedSendStatus {
|
||||
Failed,
|
||||
Sending,
|
||||
Sent,
|
||||
}
|
||||
|
||||
function resolveSendStatus(
|
||||
sendStates: Array<StorySendStateType>
|
||||
): ResolvedSendStatus {
|
||||
let anyPending = false;
|
||||
for (const sendState of sendStates) {
|
||||
if (isFailed(sendState.status)) {
|
||||
// Immediately return if any send failed
|
||||
return ResolvedSendStatus.Failed;
|
||||
}
|
||||
if (isPending(sendState.status)) {
|
||||
// Don't return yet in case we have a failure
|
||||
anyPending = true;
|
||||
}
|
||||
}
|
||||
if (anyPending) {
|
||||
return ResolvedSendStatus.Sending;
|
||||
}
|
||||
return ResolvedSendStatus.Sent;
|
||||
}
|
||||
|
||||
export const MyStoryButton = ({
|
||||
hasMultiple,
|
||||
i18n,
|
||||
me,
|
||||
newestStory,
|
||||
onAddStory,
|
||||
onClick,
|
||||
queueStoryDownload,
|
||||
showToast,
|
||||
}: PropsType): JSX.Element => {
|
||||
const [active, setActive] = useState(false);
|
||||
|
||||
const {
|
||||
acceptedMessageRequest,
|
||||
avatarPath,
|
||||
color,
|
||||
isMe,
|
||||
profileName,
|
||||
sharedGroupNames,
|
||||
title,
|
||||
} = me;
|
||||
|
||||
if (!newestStory) {
|
||||
return (
|
||||
<StoriesAddStoryButton
|
||||
i18n={i18n}
|
||||
moduleClassName="StoryListItem StoryListItem--active-opactiy"
|
||||
onAddStory={onAddStory}
|
||||
showToast={showToast}
|
||||
>
|
||||
<div className="MyStories__avatar-container">
|
||||
<Avatar
|
||||
acceptedMessageRequest={acceptedMessageRequest}
|
||||
avatarPath={avatarPath}
|
||||
badge={undefined}
|
||||
color={getAvatarColor(color)}
|
||||
conversationType="direct"
|
||||
i18n={i18n}
|
||||
isMe={Boolean(isMe)}
|
||||
profileName={profileName}
|
||||
sharedGroupNames={sharedGroupNames}
|
||||
size={AvatarSize.FORTY_EIGHT}
|
||||
title={title}
|
||||
/>
|
||||
<div className="MyStories__avatar__add-story" />
|
||||
</div>
|
||||
<div className="StoryListItem__info">
|
||||
<>
|
||||
<div className="StoryListItem__info--title">
|
||||
{i18n('Stories__mine')}
|
||||
</div>
|
||||
<div className="StoryListItem__info--timestamp">
|
||||
{i18n('Stories__add')}
|
||||
</div>
|
||||
</>
|
||||
</div>
|
||||
</StoriesAddStoryButton>
|
||||
);
|
||||
}
|
||||
|
||||
const newStoryResolvedSendStatus = resolveSendStatus(
|
||||
newestStory.sendState ?? []
|
||||
);
|
||||
|
||||
return (
|
||||
<div
|
||||
className={classNames(
|
||||
'StoryListItem__button',
|
||||
active && 'StoryListItem__button--active'
|
||||
)}
|
||||
>
|
||||
<div className="MyStories__avatar-container">
|
||||
<StoriesAddStoryButton
|
||||
i18n={i18n}
|
||||
moduleClassName="StoryListItem--active-opacity"
|
||||
onAddStory={onAddStory}
|
||||
showToast={showToast}
|
||||
onContextMenuShowingChanged={setActive}
|
||||
>
|
||||
<Avatar
|
||||
acceptedMessageRequest={acceptedMessageRequest}
|
||||
avatarPath={avatarPath}
|
||||
badge={undefined}
|
||||
color={getAvatarColor(color)}
|
||||
conversationType="direct"
|
||||
i18n={i18n}
|
||||
isMe={Boolean(isMe)}
|
||||
profileName={profileName}
|
||||
sharedGroupNames={sharedGroupNames}
|
||||
size={AvatarSize.FORTY_EIGHT}
|
||||
storyRing={HasStories.Read}
|
||||
title={title}
|
||||
/>
|
||||
<div className="MyStories__avatar__add-story" />
|
||||
</StoriesAddStoryButton>
|
||||
</div>
|
||||
<div
|
||||
className="StoryListItem__click-container StoryListItem--active-opacity"
|
||||
onClick={onClick}
|
||||
onKeyDown={ev => {
|
||||
if (ev.key === 'Enter') {
|
||||
onClick();
|
||||
ev.stopPropagation();
|
||||
ev.preventDefault();
|
||||
}
|
||||
}}
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
>
|
||||
<div className="StoryListItem__info">
|
||||
<div className="StoryListItem__info--title StoryListItem__chevron">
|
||||
{i18n('MyStories__list_item')}
|
||||
</div>
|
||||
{newStoryResolvedSendStatus === ResolvedSendStatus.Sending && (
|
||||
<span className="StoryListItem__info--sending">
|
||||
{i18n('Stories__list--sending')}
|
||||
</span>
|
||||
)}
|
||||
{newStoryResolvedSendStatus === ResolvedSendStatus.Failed && (
|
||||
<span className="StoryListItem__info--send_failed">
|
||||
{i18n('Stories__list--send_failed')}
|
||||
</span>
|
||||
)}
|
||||
{newStoryResolvedSendStatus === ResolvedSendStatus.Sent && (
|
||||
<MessageTimestamp
|
||||
i18n={i18n}
|
||||
isRelativeTime
|
||||
module="StoryListItem__info--timestamp"
|
||||
timestamp={newestStory.timestamp}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<div
|
||||
aria-label={i18n('StoryListItem__label')}
|
||||
className={classNames('StoryListItem__previews', {
|
||||
'StoryListItem__previews--multiple': hasMultiple,
|
||||
})}
|
||||
>
|
||||
{hasMultiple && <div className="StoryListItem__previews--more" />}
|
||||
<StoryImage
|
||||
attachment={newestStory.attachment}
|
||||
firstName={i18n('you')}
|
||||
i18n={i18n}
|
||||
isMe
|
||||
isThumbnail
|
||||
label=""
|
||||
moduleClassName="StoryListItem__previews--image"
|
||||
queueStoryDownload={queueStoryDownload}
|
||||
storyId={newestStory.messageId}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue