about summary refs log tree commit diff
path: root/src/view/com/util/moderation/PostHider.tsx
blob: ede62e988c5a4b456cc57b9dfe9fcd68f1c83cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import React, {ComponentProps} from 'react'
import {StyleSheet, Pressable, View, ViewStyle, StyleProp} from 'react-native'
import {ModerationUI} from '@atproto/api'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {usePalette} from 'lib/hooks/usePalette'
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 {Trans, msg} from '@lingui/macro'
import {useModalControls} from '#/state/modals'

interface Props extends ComponentProps<typeof Link> {
  iconSize: number
  iconStyles: StyleProp<ViewStyle>
  moderation: ModerationUI
}

export function PostHider({
  testID,
  href,
  moderation,
  style,
  children,
  iconSize,
  iconStyles,
  ...props
}: Props) {
  const pal = usePalette('default')
  const {_} = useLingui()
  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 isMute = ['muted', 'muted-word'].includes(moderation.cause?.type || '')
  const desc = describeModerationCause(moderation.cause, 'content')
  return !override ? (
    <Pressable
      onPress={() => {
        if (!moderation.noOverride) {
          setOverride(v => !v)
        }
      }}
      accessibilityRole="button"
      accessibilityHint={
        override ? _(msg`Hide the content`) : _(msg`Show the content`)
      }
      accessibilityLabel=""
      style={[
        styles.description,
        override ? {paddingBottom: 0} : undefined,
        pal.view,
      ]}>
      <Pressable
        onPress={() => {
          openModal({
            name: 'moderation-details',
            context: 'content',
            moderation,
          })
        }}
        accessibilityRole="button"
        accessibilityLabel={_(msg`Learn more about this warning`)}
        accessibilityHint="">
        <View
          style={[
            pal.viewLight,
            {
              width: iconSize,
              height: iconSize,
              borderRadius: iconSize,
              alignItems: 'center',
              justifyContent: 'center',
            },
            iconStyles,
          ]}>
          {isMute ? (
            <FontAwesomeIcon
              icon={['far', 'eye-slash']}
              size={14}
              color={pal.colors.textLight}
            />
          ) : (
            <ShieldExclamation size={14} style={pal.textLight} />
          )}
        </View>
      </Pressable>
      <Text type="sm" style={[{flex: 1}, pal.textLight]} numberOfLines={1}>
        {desc.name}
      </Text>
      {!moderation.noOverride && (
        <Text type="sm" style={[styles.showBtn, pal.link]}>
          {override ? <Trans>Hide</Trans> : <Trans>Show</Trans>}
        </Text>
      )}
    </Pressable>
  ) : (
    <Link
      testID={testID}
      style={addStyle(style, styles.child)}
      href={href}
      noFeedback>
      {children}
    </Link>
  )
}

const styles = StyleSheet.create({
  description: {
    flexDirection: 'row',
    alignItems: 'center',
    gap: 4,
    paddingVertical: 10,
    paddingLeft: 6,
    paddingRight: 18,
    marginTop: 1,
  },
  showBtn: {
    marginLeft: 'auto',
    alignSelf: 'center',
  },
  child: {
    borderWidth: 0,
    borderTopWidth: 0,
    borderRadius: 8,
  },
})