127 lines
3.1 KiB
TypeScript
127 lines
3.1 KiB
TypeScript
import React, {ComponentProps} from 'react'
|
|
import {StyleSheet, Pressable, View} from 'react-native'
|
|
import {ModerationUI} from '@atproto/api'
|
|
import {usePalette} from 'lib/hooks/usePalette'
|
|
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
|
|
import {Link} from '../Link'
|
|
import {Text} from '../text/Text'
|
|
import {addStyle} from 'lib/styles'
|
|
import {describeModerationCause} from 'lib/moderation'
|
|
import {ShieldExclamation} from 'lib/icons'
|
|
import {useLingui} from '@lingui/react'
|
|
import {msg} from '@lingui/macro'
|
|
import {useModalControls} from '#/state/modals'
|
|
|
|
interface Props extends ComponentProps<typeof Link> {
|
|
// testID?: string
|
|
// href?: string
|
|
// style: StyleProp<ViewStyle>
|
|
moderation: ModerationUI
|
|
}
|
|
|
|
export function PostHider({
|
|
testID,
|
|
href,
|
|
moderation,
|
|
style,
|
|
children,
|
|
...props
|
|
}: Props) {
|
|
const pal = usePalette('default')
|
|
const {_} = useLingui()
|
|
const {isMobile} = useWebMediaQueries()
|
|
const [override, setOverride] = React.useState(false)
|
|
const {openModal} = useModalControls()
|
|
|
|
if (!moderation.blur) {
|
|
return (
|
|
<Link
|
|
testID={testID}
|
|
style={style}
|
|
href={href}
|
|
noFeedback
|
|
accessible={false}
|
|
{...props}>
|
|
{children}
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
const desc = describeModerationCause(moderation.cause, 'content')
|
|
return (
|
|
<>
|
|
<Pressable
|
|
onPress={() => {
|
|
if (!moderation.noOverride) {
|
|
setOverride(v => !v)
|
|
}
|
|
}}
|
|
accessibilityRole="button"
|
|
accessibilityHint={override ? 'Hide the content' : 'Show the content'}
|
|
accessibilityLabel=""
|
|
style={[
|
|
styles.description,
|
|
{paddingRight: isMobile ? 22 : 18},
|
|
pal.viewLight,
|
|
]}>
|
|
<Pressable
|
|
onPress={() => {
|
|
openModal({
|
|
name: 'moderation-details',
|
|
context: 'content',
|
|
moderation,
|
|
})
|
|
}}
|
|
accessibilityRole="button"
|
|
accessibilityLabel={_(msg`Learn more about this warning`)}
|
|
accessibilityHint="">
|
|
<ShieldExclamation size={18} style={pal.text} />
|
|
</Pressable>
|
|
<Text type="lg" style={[{flex: 1}, pal.text]} numberOfLines={1}>
|
|
{desc.name}
|
|
</Text>
|
|
{!moderation.noOverride && (
|
|
<Text type="xl" style={[styles.showBtn, pal.link]}>
|
|
{override ? 'Hide' : 'Show'}
|
|
</Text>
|
|
)}
|
|
</Pressable>
|
|
{override && (
|
|
<View style={[styles.childrenContainer, pal.border, pal.viewLight]}>
|
|
<Link
|
|
testID={testID}
|
|
style={addStyle(style, styles.child)}
|
|
href={href}
|
|
noFeedback>
|
|
{children}
|
|
</Link>
|
|
</View>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
description: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 4,
|
|
paddingVertical: 14,
|
|
paddingLeft: 18,
|
|
marginTop: 1,
|
|
},
|
|
showBtn: {
|
|
marginLeft: 'auto',
|
|
alignSelf: 'center',
|
|
},
|
|
childrenContainer: {
|
|
paddingHorizontal: 4,
|
|
paddingBottom: 6,
|
|
},
|
|
child: {
|
|
borderWidth: 0,
|
|
borderTopWidth: 0,
|
|
borderRadius: 8,
|
|
},
|
|
})
|