about summary refs log tree commit diff
path: root/src/view/com/post-thread/PostVotedBy.tsx
blob: 596a6a1dba1864cb9e6df4f6b50606edc97051e8 (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
import React, {useState, useEffect} from 'react'
import {observer} from 'mobx-react-lite'
import {ActivityIndicator, FlatList, StyleSheet, Text, View} from 'react-native'
import {
  VotesViewModel,
  VotesViewItemModel,
} from '../../../state/models/votes-view'
import {Link} from '../util/Link'
import {UserAvatar} from '../util/UserAvatar'
import {useStores} from '../../../state'
import {s, colors} from '../../lib/styles'

export const PostVotedBy = observer(function PostVotedBy({
  uri,
  direction,
}: {
  uri: string
  direction: 'up' | 'down'
}) {
  const store = useStores()
  const [view, setView] = useState<VotesViewModel | undefined>()

  useEffect(() => {
    if (view?.params.uri === uri) {
      console.log('Voted by doing nothing')
      return // no change needed? or trigger refresh?
    }
    console.log('Fetching voted by', uri)
    const newView = new VotesViewModel(store, {uri, direction})
    setView(newView)
    newView.setup().catch(err => console.error('Failed to fetch voted by', err))
  }, [uri, view?.params.uri, store])

  // loading
  // =
  if (
    !view ||
    (view.isLoading && !view.isRefreshing) ||
    view.params.uri !== uri
  ) {
    return (
      <View>
        <ActivityIndicator />
      </View>
    )
  }

  // error
  // =
  if (view.hasError) {
    return (
      <View>
        <Text>{view.error}</Text>
      </View>
    )
  }

  // loaded
  // =
  const renderItem = ({item}: {item: VotesViewItemModel}) => (
    <LikedByItem item={item} />
  )
  return (
    <View>
      <FlatList
        data={view.votes}
        keyExtractor={item => item._reactKey}
        renderItem={renderItem}
      />
    </View>
  )
})

const LikedByItem = ({item}: {item: VotesViewItemModel}) => {
  return (
    <Link
      style={styles.outer}
      href={`/profile/${item.actor.handle}`}
      title={item.actor.handle}>
      <View style={styles.layout}>
        <View style={styles.layoutAvi}>
          <UserAvatar
            size={40}
            displayName={item.actor.displayName}
            handle={item.actor.handle}
          />
        </View>
        <View style={styles.layoutContent}>
          <Text style={[s.f15, s.bold]}>
            {item.actor.displayName || item.actor.handle}
          </Text>
          <Text style={[s.f14, s.gray5]}>@{item.actor.handle}</Text>
        </View>
      </View>
    </Link>
  )
}

const styles = StyleSheet.create({
  outer: {
    marginTop: 1,
    backgroundColor: colors.white,
  },
  layout: {
    flexDirection: 'row',
  },
  layoutAvi: {
    width: 60,
    paddingLeft: 10,
    paddingTop: 10,
    paddingBottom: 10,
  },
  avi: {
    width: 40,
    height: 40,
    borderRadius: 20,
    resizeMode: 'cover',
  },
  layoutContent: {
    flex: 1,
    paddingRight: 10,
    paddingTop: 10,
    paddingBottom: 10,
  },
})