cca344a3d1
Co-authored-by: Hailey <me@haileyok.com>
84 lines
2.7 KiB
TypeScript
84 lines
2.7 KiB
TypeScript
import React from 'react'
|
|
import {Keyboard, StyleProp, ViewStyle} from 'react-native'
|
|
import Animated, {AnimatedStyle} from 'react-native-reanimated'
|
|
import {AppBskyFeedPostgate} from '@atproto/api'
|
|
import {msg} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
|
|
import {isNative} from '#/platform/detection'
|
|
import {ThreadgateAllowUISetting} from '#/state/queries/threadgate'
|
|
import {atoms as a, useTheme} from '#/alf'
|
|
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {PostInteractionSettingsControlledDialog} from '#/components/dialogs/PostInteractionSettingsDialog'
|
|
import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe'
|
|
import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group'
|
|
|
|
export function ThreadgateBtn({
|
|
postgate,
|
|
onChangePostgate,
|
|
threadgateAllowUISettings,
|
|
onChangeThreadgateAllowUISettings,
|
|
style,
|
|
}: {
|
|
postgate: AppBskyFeedPostgate.Record
|
|
onChangePostgate: (v: AppBskyFeedPostgate.Record) => void
|
|
|
|
threadgateAllowUISettings: ThreadgateAllowUISetting[]
|
|
onChangeThreadgateAllowUISettings: (v: ThreadgateAllowUISetting[]) => void
|
|
|
|
style?: StyleProp<AnimatedStyle<ViewStyle>>
|
|
}) {
|
|
const {_} = useLingui()
|
|
const t = useTheme()
|
|
const control = Dialog.useDialogControl()
|
|
|
|
const onPress = () => {
|
|
if (isNative && Keyboard.isVisible()) {
|
|
Keyboard.dismiss()
|
|
}
|
|
|
|
control.open()
|
|
}
|
|
|
|
const anyoneCanReply =
|
|
threadgateAllowUISettings.length === 1 &&
|
|
threadgateAllowUISettings[0].type === 'everybody'
|
|
const anyoneCanQuote =
|
|
!postgate.embeddingRules || postgate.embeddingRules.length === 0
|
|
const anyoneCanInteract = anyoneCanReply && anyoneCanQuote
|
|
const label = anyoneCanInteract
|
|
? _(msg`Anybody can interact`)
|
|
: _(msg`Interaction limited`)
|
|
|
|
return (
|
|
<>
|
|
<Animated.View style={[a.flex_row, a.p_sm, t.atoms.bg, style]}>
|
|
<Button
|
|
variant="solid"
|
|
color="secondary"
|
|
size="small"
|
|
testID="openReplyGateButton"
|
|
onPress={onPress}
|
|
label={label}
|
|
accessibilityHint={_(
|
|
msg`Opens a dialog to choose who can reply to this thread`,
|
|
)}>
|
|
<ButtonIcon icon={anyoneCanInteract ? Earth : Group} />
|
|
<ButtonText>{label}</ButtonText>
|
|
</Button>
|
|
</Animated.View>
|
|
<PostInteractionSettingsControlledDialog
|
|
control={control}
|
|
onSave={() => {
|
|
control.close()
|
|
}}
|
|
postgate={postgate}
|
|
onChangePostgate={onChangePostgate}
|
|
threadgateAllowUISettings={threadgateAllowUISettings}
|
|
onChangeThreadgateAllowUISettings={onChangeThreadgateAllowUISettings}
|
|
/>
|
|
</>
|
|
)
|
|
}
|