-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Clipclops] Clop menu, leave clop, mute/unmute clop (#3804)
* convo menu * memoize convomenu * add convoId to useChat + memoize value * leave convo * Create mute-conversation.ts * add mutes, remove changes to useChat and use chat.convo instead * add todo comments * leave convo confirm prompt * remove dependency on useChat and pass in props instead * show menu on long press * optimistic update * optimistic update leave + add error capture * don't `popToTop` when unnecessary --------- Co-authored-by: Hailey <[email protected]>
- Loading branch information
Showing
11 changed files
with
420 additions
and
57 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
import React, {useCallback} from 'react' | ||
import {Pressable} from 'react-native' | ||
import {AppBskyActorDefs} from '@atproto/api' | ||
import {ChatBskyConvoDefs} from '@atproto-labs/api' | ||
import {msg, Trans} from '@lingui/macro' | ||
import {useLingui} from '@lingui/react' | ||
import {useNavigation} from '@react-navigation/native' | ||
|
||
import {NavigationProp} from '#/lib/routes/types' | ||
import {useLeaveConvo} from '#/state/queries/messages/leave-conversation' | ||
import { | ||
useMuteConvo, | ||
useUnmuteConvo, | ||
} from '#/state/queries/messages/mute-conversation' | ||
import * as Toast from '#/view/com/util/Toast' | ||
import {atoms as a, useTheme} from '#/alf' | ||
import {ArrowBoxLeft_Stroke2_Corner0_Rounded as ArrowBoxLeft} from '#/components/icons/ArrowBoxLeft' | ||
import {DotGrid_Stroke2_Corner0_Rounded as DotsHorizontal} from '#/components/icons/DotGrid' | ||
import {Flag_Stroke2_Corner0_Rounded as Flag} from '#/components/icons/Flag' | ||
import {Mute_Stroke2_Corner0_Rounded as Mute} from '#/components/icons/Mute' | ||
import {Person_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' | ||
import {PersonCheck_Stroke2_Corner0_Rounded as PersonCheck} from '#/components/icons/PersonCheck' | ||
import {PersonX_Stroke2_Corner0_Rounded as PersonX} from '#/components/icons/PersonX' | ||
import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as Unmute} from '#/components/icons/Speaker' | ||
import * as Menu from '#/components/Menu' | ||
import * as Prompt from '#/components/Prompt' | ||
|
||
let ConvoMenu = ({ | ||
convo, | ||
profile, | ||
onUpdateConvo, | ||
control, | ||
hideTrigger, | ||
currentScreen, | ||
}: { | ||
convo: ChatBskyConvoDefs.ConvoView | ||
profile: AppBskyActorDefs.ProfileViewBasic | ||
onUpdateConvo?: (convo: ChatBskyConvoDefs.ConvoView) => void | ||
control?: Menu.MenuControlProps | ||
hideTrigger?: boolean | ||
currentScreen: 'list' | 'conversation' | ||
}): React.ReactNode => { | ||
const navigation = useNavigation<NavigationProp>() | ||
const {_} = useLingui() | ||
const t = useTheme() | ||
const leaveConvoControl = Prompt.usePromptControl() | ||
|
||
const onNavigateToProfile = useCallback(() => { | ||
navigation.navigate('Profile', {name: profile.did}) | ||
}, [navigation, profile.did]) | ||
|
||
const {mutate: muteConvo} = useMuteConvo(convo.id, { | ||
onSuccess: data => { | ||
onUpdateConvo?.(data.convo) | ||
Toast.show(_(msg`Chat muted`)) | ||
}, | ||
onError: () => { | ||
Toast.show(_(msg`Could not mute chat`)) | ||
}, | ||
}) | ||
|
||
const {mutate: unmuteConvo} = useUnmuteConvo(convo.id, { | ||
onSuccess: data => { | ||
onUpdateConvo?.(data.convo) | ||
Toast.show(_(msg`Chat unmuted`)) | ||
}, | ||
onError: () => { | ||
Toast.show(_(msg`Could not unmute chat`)) | ||
}, | ||
}) | ||
|
||
const {mutate: leaveConvo} = useLeaveConvo(convo.id, { | ||
onSuccess: () => { | ||
if (currentScreen === 'conversation') { | ||
navigation.replace('MessagesList') | ||
} | ||
}, | ||
onError: () => { | ||
Toast.show(_(msg`Could not leave chat`)) | ||
}, | ||
}) | ||
|
||
return ( | ||
<> | ||
<Menu.Root control={control}> | ||
{!hideTrigger && ( | ||
<Menu.Trigger label={_(msg`Chat settings`)}> | ||
{({props, state}) => ( | ||
<Pressable | ||
{...props} | ||
style={[ | ||
a.p_sm, | ||
a.rounded_sm, | ||
(state.hovered || state.pressed) && t.atoms.bg_contrast_25, | ||
// make sure pfp is in the middle | ||
{marginLeft: -10}, | ||
]}> | ||
<DotsHorizontal size="lg" style={t.atoms.text} /> | ||
</Pressable> | ||
)} | ||
</Menu.Trigger> | ||
)} | ||
<Menu.Outer> | ||
<Menu.Group> | ||
<Menu.Item | ||
label={_(msg`Go to user's profile`)} | ||
onPress={onNavigateToProfile}> | ||
<Menu.ItemText> | ||
<Trans>Go to profile</Trans> | ||
</Menu.ItemText> | ||
<Menu.ItemIcon icon={Person} /> | ||
</Menu.Item> | ||
<Menu.Item | ||
label={_(msg`Mute notifications`)} | ||
onPress={() => (convo?.muted ? unmuteConvo() : muteConvo())}> | ||
<Menu.ItemText> | ||
{convo?.muted ? ( | ||
<Trans>Unmute notifications</Trans> | ||
) : ( | ||
<Trans>Mute notifications</Trans> | ||
)} | ||
</Menu.ItemText> | ||
<Menu.ItemIcon icon={convo?.muted ? Unmute : Mute} /> | ||
</Menu.Item> | ||
</Menu.Group> | ||
{/* TODO(samuel): implement these */} | ||
<Menu.Group> | ||
<Menu.Item | ||
label={_(msg`Block account`)} | ||
onPress={() => {}} | ||
disabled> | ||
<Menu.ItemText> | ||
<Trans>Block account</Trans> | ||
</Menu.ItemText> | ||
<Menu.ItemIcon | ||
icon={profile.viewer?.blocking ? PersonCheck : PersonX} | ||
/> | ||
</Menu.Item> | ||
<Menu.Item | ||
label={_(msg`Report account`)} | ||
onPress={() => {}} | ||
disabled> | ||
<Menu.ItemText> | ||
<Trans>Report account</Trans> | ||
</Menu.ItemText> | ||
<Menu.ItemIcon icon={Flag} /> | ||
</Menu.Item> | ||
</Menu.Group> | ||
<Menu.Group> | ||
<Menu.Item | ||
label={_(msg`Leave conversation`)} | ||
onPress={leaveConvoControl.open}> | ||
<Menu.ItemText> | ||
<Trans>Leave conversation</Trans> | ||
</Menu.ItemText> | ||
<Menu.ItemIcon icon={ArrowBoxLeft} /> | ||
</Menu.Item> | ||
</Menu.Group> | ||
</Menu.Outer> | ||
</Menu.Root> | ||
|
||
<Prompt.Basic | ||
control={leaveConvoControl} | ||
title={_(msg`Leave conversation`)} | ||
description={_( | ||
msg`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants.`, | ||
)} | ||
confirmButtonCta={_(msg`Leave`)} | ||
confirmButtonColor="negative" | ||
onConfirm={() => leaveConvo()} | ||
/> | ||
</> | ||
) | ||
} | ||
ConvoMenu = React.memo(ConvoMenu) | ||
|
||
export {ConvoMenu} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {createSinglePathSVG} from './TEMPLATE' | ||
|
||
export const ArrowBoxLeft_Stroke2_Corner0_Rounded = createSinglePathSVG({ | ||
path: 'M3.293 3.293A1 1 0 0 1 4 3h7.25a1 1 0 1 1 0 2H5v14h6.25a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1V4a1 1 0 0 1 .293-.707Zm11.5 3.5a1 1 0 0 1 1.414 0l4.5 4.5a1 1 0 0 1 0 1.414l-4.5 4.5a1 1 0 0 1-1.414-1.414L17.586 13H8.75a1 1 0 1 1 0-2h8.836l-2.793-2.793a1 1 0 0 1 0-1.414Z', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.