about summary refs log tree commit diff
path: root/src/view/com/post-thread/PostThread.tsx
blob: 8a0ddab5daaa56fbfb40c6cc233fc091ffdce13c (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
import React, {useState, useEffect, useRef} from 'react'
import {observer} from 'mobx-react-lite'
import {ActivityIndicator, FlatList, Text, View} from 'react-native'
import {
  PostThreadViewModel,
  PostThreadViewPostModel,
} from '../../../state/models/post-thread-view'
import {useStores} from '../../../state'
import {SharePostModel} from '../../../state/models/shell'
import {PostThreadItem} from './PostThreadItem'

const UPDATE_DELAY = 2e3 // wait 2s before refetching the thread for updates

export const PostThread = observer(function PostThread({uri}: {uri: string}) {
  const store = useStores()
  const [view, setView] = useState<PostThreadViewModel | undefined>()
  const [lastUpdate, setLastUpdate] = useState<number>(Date.now())

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

  // TODO
  // useFocusEffect(() => {
  //   if (Date.now() - lastUpdate > UPDATE_DELAY) {
  //     view?.update()
  //     setLastUpdate(Date.now())
  //   }
  // })

  const onPressShare = (uri: string) => {
    store.shell.openModal(new SharePostModel(uri))
  }
  const onRefresh = () => {
    view?.refresh().catch(err => console.error('Failed to refresh', err))
  }

  // 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 posts = view.thread ? Array.from(flattenThread(view.thread)) : []
  const renderItem = ({item}: {item: PostThreadViewPostModel}) => (
    <PostThreadItem
      item={item}
      onPressShare={onPressShare}
      onPostReply={onRefresh}
    />
  )
  return (
    <FlatList
      data={posts}
      keyExtractor={item => item._reactKey}
      renderItem={renderItem}
      refreshing={view.isRefreshing}
      onRefresh={onRefresh}
    />
  )
})

function* flattenThread(
  post: PostThreadViewPostModel,
): Generator<PostThreadViewPostModel, void> {
  if (post.parent) {
    yield* flattenThread(post.parent)
  }
  yield post
  if (post.replies?.length) {
    for (const reply of post.replies) {
      yield* flattenThread(reply)
    }
  }
}