about summary refs log tree commit diff
path: root/src/view/com/modals/InviteToScene.tsx
blob: a73440179844b18156495facc46b2b12b2559193 (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import React, {useState, useEffect, useMemo} from 'react'
import {observer} from 'mobx-react-lite'
import * as Toast from '../util/Toast'
import {
  ActivityIndicator,
  FlatList,
  StyleSheet,
  useWindowDimensions,
  View,
} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {
  TabView,
  SceneMap,
  Route,
  TabBar,
  TabBarProps,
} from 'react-native-tab-view'
import _omit from 'lodash.omit'
import {AtUri} from '../../../third-party/uri'
import {ProfileCard} from '../profile/ProfileCard'
import {ErrorMessage} from '../util/error/ErrorMessage'
import {Text} from '../util/text/Text'
import {useStores} from '../../../state'
import * as apilib from '../../../state/lib/api'
import {ProfileViewModel} from '../../../state/models/profile-view'
import {SuggestedInvitesView} from '../../../state/models/suggested-invites-view'
import {Assertion} from '../../../state/models/get-assertions-view'
import {FollowItem} from '../../../state/models/user-follows-view'
import {s, colors} from '../../lib/styles'

export const snapPoints = ['70%']

export const Component = observer(function Component({
  profileView,
}: {
  profileView: ProfileViewModel
}) {
  const store = useStores()
  const layout = useWindowDimensions()
  const [index, setIndex] = useState(0)
  const tabRoutes = [
    {key: 'suggestions', title: 'Suggestions'},
    {key: 'pending', title: 'Pending Invites'},
  ]
  const [hasSetup, setHasSetup] = useState<boolean>(false)
  const [error, setError] = useState<string>('')
  const suggestions = useMemo(
    () => new SuggestedInvitesView(store, {sceneDid: profileView.did}),
    [profileView.did],
  )
  const [createdInvites, setCreatedInvites] = useState<Record<string, string>>(
    {},
  )
  // TODO: it would be much better if we just used the suggestions view for the deleted pending invites
  //       but mobx isnt picking up on the state change in suggestions.unconfirmed and I dont have
  //       time to debug that right now -prf
  const [deletedPendingInvites, setDeletedPendingInvites] = useState<
    Record<string, boolean>
  >({})

  useEffect(() => {
    let aborted = false
    if (hasSetup) {
      return
    }
    suggestions.setup().then(() => {
      if (aborted) return
      setHasSetup(true)
    })
    return () => {
      aborted = true
    }
  }, [profileView.did])

  const onPressInvite = async (follow: FollowItem) => {
    setError('')
    try {
      const assertionUri = await apilib.inviteToScene(
        store,
        profileView.did,
        follow.did,
        follow.declaration.cid,
      )
      setCreatedInvites({[follow.did]: assertionUri, ...createdInvites})
      Toast.show('Invite sent')
    } catch (e) {
      setError('There was an issue with the invite. Please try again.')
      console.error(e)
    }
  }
  const onPressUndo = async (subjectDid: string, assertionUri: string) => {
    setError('')
    const urip = new AtUri(assertionUri)
    try {
      await store.api.app.bsky.graph.assertion.delete({
        did: profileView.did,
        rkey: urip.rkey,
      })
      setCreatedInvites(_omit(createdInvites, [subjectDid]))
    } catch (e) {
      setError('There was an issue with the invite. Please try again.')
      console.error(e)
    }
  }

  const onPressDeleteInvite = async (assertion: Assertion) => {
    setError('')
    const urip = new AtUri(assertion.uri)
    try {
      await store.api.app.bsky.graph.assertion.delete({
        did: profileView.did,
        rkey: urip.rkey,
      })
      setDeletedPendingInvites({
        [assertion.uri]: true,
        ...deletedPendingInvites,
      })
      Toast.show('Invite removed')
    } catch (e) {
      setError('There was an issue with the invite. Please try again.')
      console.error(e)
    }
  }

  const renderSuggestionItem = ({item}: {item: FollowItem}) => {
    const createdInvite = createdInvites[item.did]
    return (
      <ProfileCard
        did={item.did}
        handle={item.handle}
        displayName={item.displayName}
        avatar={item.avatar}
        renderButton={() =>
          !createdInvite ? (
            <>
              <FontAwesomeIcon icon="user-plus" style={[s.mr5]} size={14} />
              <Text style={[s.fw400, s.f14]}>Invite</Text>
            </>
          ) : (
            <>
              <FontAwesomeIcon icon="x" style={[s.mr5]} size={14} />
              <Text style={[s.fw400, s.f14]}>Undo invite</Text>
            </>
          )
        }
        onPressButton={() =>
          !createdInvite
            ? onPressInvite(item)
            : onPressUndo(item.did, createdInvite)
        }
      />
    )
  }

  const renderPendingInviteItem = ({item}: {item: Assertion}) => {
    const wasDeleted = deletedPendingInvites[item.uri]
    if (wasDeleted) {
      return <View />
    }
    return (
      <ProfileCard
        did={item.subject.did}
        handle={item.subject.handle}
        displayName={item.subject.displayName}
        avatar={item.subject.avatar}
        renderButton={() => (
          <>
            <FontAwesomeIcon icon="x" style={[s.mr5]} size={14} />
            <Text style={[s.fw400, s.f14]}>Undo invite</Text>
          </>
        )}
        onPressButton={() => onPressDeleteInvite(item)}
      />
    )
  }

  const Suggestions = () => (
    <View style={s.flex1}>
      {hasSetup ? (
        <View style={s.flex1}>
          <View style={styles.todoContainer}>
            <Text style={styles.todoLabel}>
              User search is still being implemented. For now, you can pick from
              your follows below.
            </Text>
          </View>
          {!suggestions.hasContent ? (
            <Text
              style={{
                textAlign: 'center',
                paddingTop: 10,
                paddingHorizontal: 40,
                fontWeight: 'bold',
                color: colors.gray5,
              }}>
              {suggestions.myFollowsView.follows.length
                ? 'Sorry! You dont follow anybody for us to suggest.'
                : 'Sorry! All of the users you follow are members already.'}
            </Text>
          ) : (
            <FlatList
              data={suggestions.suggestions}
              keyExtractor={item => item._reactKey}
              renderItem={renderSuggestionItem}
              style={s.flex1}
            />
          )}
        </View>
      ) : !error ? (
        <ActivityIndicator />
      ) : undefined}
    </View>
  )

  const PendingInvites = () => (
    <View style={s.flex1}>
      {suggestions.sceneAssertionsView.isLoading ? (
        <ActivityIndicator />
      ) : undefined}
      <View style={s.flex1}>
        {!suggestions.unconfirmed.length ? (
          <Text
            style={{
              textAlign: 'center',
              paddingTop: 10,
              paddingHorizontal: 40,
              fontWeight: 'bold',
              color: colors.gray5,
            }}>
            No pending invites.
          </Text>
        ) : (
          <FlatList
            data={suggestions.unconfirmed}
            keyExtractor={item => item._reactKey}
            renderItem={renderPendingInviteItem}
            style={s.flex1}
          />
        )}
      </View>
    </View>
  )

  const renderScene = SceneMap({
    suggestions: Suggestions,
    pending: PendingInvites,
  })

  const renderTabBar = (props: TabBarProps<Route>) => (
    <TabBar
      {...props}
      style={{backgroundColor: 'white'}}
      activeColor="black"
      inactiveColor={colors.gray5}
      labelStyle={{textTransform: 'none'}}
      indicatorStyle={{backgroundColor: colors.purple3}}
    />
  )

  return (
    <View style={s.flex1}>
      <Text style={styles.title}>
        Invite to {profileView.displayName || profileView.handle}
      </Text>
      {error !== '' ? (
        <View style={s.p10}>
          <ErrorMessage message={error} />
        </View>
      ) : undefined}
      <TabView
        navigationState={{index, routes: tabRoutes}}
        renderScene={renderScene}
        renderTabBar={renderTabBar}
        onIndexChange={setIndex}
        initialLayout={{width: layout.width}}
      />
    </View>
  )
})

const styles = StyleSheet.create({
  title: {
    textAlign: 'center',
    fontWeight: 'bold',
    fontSize: 18,
    marginBottom: 4,
  },
  todoContainer: {
    backgroundColor: colors.pink1,
    margin: 10,
    padding: 10,
    borderRadius: 6,
  },
  todoLabel: {
    color: colors.pink5,
    textAlign: 'center',
  },

  tabBar: {
    flexDirection: 'row',
  },
  tabItem: {
    alignItems: 'center',
    padding: 16,
    flex: 1,
  },
})