about summary refs log tree commit diff
path: root/src/view/com/modals/PreferencesHomeFeed.tsx
blob: 15f7625b5369405e85d91b18b9fc96788f1c9d51 (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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import React, {useState} from 'react'
import {StyleSheet, TouchableOpacity, View} from 'react-native'
import {observer} from 'mobx-react-lite'
import {Slider} from '@miblanchard/react-native-slider'
import {Text} from '../util/text/Text'
import {useStores} from 'state/index'
import {s, colors} from 'lib/styles'
import {usePalette} from 'lib/hooks/usePalette'
import {isWeb, isDesktopWeb} from 'platform/detection'
import {ToggleButton} from 'view/com/util/forms/ToggleButton'
import {ScrollView} from 'view/com/modals/util'

export const snapPoints = ['90%']

function RepliesThresholdInput({enabled}: {enabled: boolean}) {
  const store = useStores()
  const pal = usePalette('default')
  const [value, setValue] = useState(store.preferences.homeFeedRepliesThreshold)

  return (
    <View style={[s.mt10, !enabled && styles.dimmed]}>
      <Text type="xs" style={pal.text}>
        {value === 0
          ? `Show all replies`
          : `Show replies with at least ${value} ${
              value > 1 ? `likes` : `like`
            }`}
      </Text>
      <Slider
        value={value}
        onValueChange={(v: number | number[]) => {
          const threshold = Math.floor(Array.isArray(v) ? v[0] : v)
          setValue(threshold)
          store.preferences.setHomeFeedRepliesThreshold(threshold)
        }}
        minimumValue={0}
        maximumValue={25}
        containerStyle={isWeb ? undefined : s.flex1}
        disabled={!enabled}
        thumbTintColor={colors.blue3}
      />
    </View>
  )
}

export const Component = observer(function Component() {
  const pal = usePalette('default')
  const store = useStores()

  return (
    <View
      testID="preferencesHomeFeedModal"
      style={[pal.view, styles.container]}>
      <View style={styles.titleSection}>
        <Text type="title-lg" style={[pal.text, styles.title]}>
          Home Feed Preferences
        </Text>
        <Text type="xl" style={[pal.textLight, styles.description]}>
          Fine-tune the content you see on your home screen.
        </Text>
      </View>

      <ScrollView>
        <View style={styles.cardsContainer}>
          <View style={[pal.viewLight, styles.card]}>
            <Text type="title-sm" style={[pal.text, s.pb5]}>
              Show Replies
            </Text>
            <Text style={[pal.text, s.pb10]}>
              Adjust the number of likes a reply must have to be shown in your
              feed.
            </Text>
            <ToggleButton
              type="default-light"
              label={store.preferences.homeFeedRepliesEnabled ? 'Yes' : 'No'}
              isSelected={store.preferences.homeFeedRepliesEnabled}
              onPress={store.preferences.toggleHomeFeedRepliesEnabled}
            />

            <RepliesThresholdInput
              enabled={store.preferences.homeFeedRepliesEnabled}
            />
          </View>

          <View style={[pal.viewLight, styles.card]}>
            <Text type="title-sm" style={[pal.text, s.pb5]}>
              Show Reposts
            </Text>
            <Text style={[pal.text, s.pb10]}>
              Set this setting to "No" to hide all reposts from your feed.
            </Text>
            <ToggleButton
              type="default-light"
              label={store.preferences.homeFeedRepostsEnabled ? 'Yes' : 'No'}
              isSelected={store.preferences.homeFeedRepostsEnabled}
              onPress={store.preferences.toggleHomeFeedRepostsEnabled}
            />
          </View>

          <View style={[pal.viewLight, styles.card]}>
            <Text type="title-sm" style={[pal.text, s.pb5]}>
              Show Quote Posts
            </Text>
            <Text style={[pal.text, s.pb10]}>
              Set this setting to "No" to hide all quote posts from your feed.
              Reposts will still be visible.
            </Text>
            <ToggleButton
              type="default-light"
              label={store.preferences.homeFeedQuotePostsEnabled ? 'Yes' : 'No'}
              isSelected={store.preferences.homeFeedQuotePostsEnabled}
              onPress={store.preferences.toggleHomeFeedQuotePostsEnabled}
            />
          </View>
        </View>
      </ScrollView>

      <View style={[styles.btnContainer, pal.borderDark]}>
        <TouchableOpacity
          testID="confirmBtn"
          onPress={() => {
            store.shell.closeModal()
          }}
          style={[styles.btn]}
          accessibilityRole="button"
          accessibilityLabel="Confirm"
          accessibilityHint="">
          <Text style={[s.white, s.bold, s.f18]}>Done</Text>
        </TouchableOpacity>
      </View>
    </View>
  )
})

const styles = StyleSheet.create({
  container: {
    flex: 1,
    paddingBottom: isDesktopWeb ? 0 : 60,
  },
  titleSection: {
    padding: 20,
    paddingBottom: 30,
  },
  title: {
    textAlign: 'center',
    marginBottom: 5,
  },
  description: {
    textAlign: 'center',
    paddingHorizontal: 32,
  },
  cardsContainer: {
    paddingHorizontal: 20,
  },
  card: {
    padding: 16,
    borderRadius: 10,
    marginBottom: 20,
  },
  btn: {
    flexDirection: 'row',
    alignItems: 'center',
    justifyContent: 'center',
    borderRadius: 32,
    padding: 14,
    backgroundColor: colors.blue3,
  },
  btnContainer: {
    paddingTop: 20,
    paddingHorizontal: 20,
    borderTopWidth: isDesktopWeb ? 0 : 1,
  },
  dimmed: {
    opacity: 0.3,
  },
})