about summary refs log tree commit diff
path: root/src/view/screens/Home.tsx
blob: 1bc300a11acd90bf4e9fbeb5c825c3882e1b1d29 (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
import React, {useState, useEffect, useLayoutEffect} from 'react'
import {Image, StyleSheet, TouchableOpacity, View} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {Feed} from '../com/feed/Feed'
import {FAB} from '../com/util/FloatingActionButton'
import {useStores} from '../../state'
import {useLoadEffect} from '../lib/navigation'
import {AVIS} from '../lib/assets'
import {ScreenParams} from '../routes'

export function Home({params}: ScreenParams) {
  const [hasSetup, setHasSetup] = useState<boolean>(false)
  const store = useStores()
  useLoadEffect(() => {
    store.nav.setTitle('Home')
    console.log('Fetching home feed')
    store.homeFeed.setup().then(() => setHasSetup(true))
  }, [store.nav, store.homeFeed])

  // TODO
  // useEffect(() => {
  //   return navigation.addListener('focus', () => {
  //     if (hasSetup) {
  //       console.log('Updating home feed')
  //       store.homeFeed.update()
  //     }
  //   })
  // }, [navigation, store.homeFeed, hasSetup])

  // TODO
  // useLayoutEffect(() => {
  //   navigation.setOptions({
  //     headerShown: true,
  //     headerTitle: 'V I B E',
  //     headerLeft: () => (
  //       <TouchableOpacity
  //         onPress={() => navigation.push('Profile', {name: 'alice.com'})}>
  //         <Image source={AVIS['alice.com']} style={styles.avi} />
  //       </TouchableOpacity>
  //     ),
  //     headerRight: () => (
  //       <TouchableOpacity
  //         onPress={() => {
  //           navigation.push('Composer', {})
  //         }}>
  //         <FontAwesomeIcon icon="plus" style={{color: '#006bf7'}} />
  //       </TouchableOpacity>
  //     ),
  //   })
  // }, [navigation])

  const onComposePress = () => {
    store.nav.navigate('/compose')
  }

  return (
    <View>
      <Feed feed={store.homeFeed} />
      <FAB icon="pen-nib" onPress={onComposePress} />
    </View>
  )
}

const styles = StyleSheet.create({
  avi: {
    width: 20,
    height: 20,
    borderRadius: 10,
    resizeMode: 'cover',
  },
})