Web: go lighter for now, ditch the composer prompt in feed

This commit is contained in:
Paul Frazee 2023-02-23 10:48:50 -06:00
parent 86652c071a
commit ac655a0cf4
6 changed files with 16 additions and 66 deletions

View file

@ -1,5 +0,0 @@
export function ComposerPrompt(_opts: {
onPressCompose: (imagesOpen?: boolean) => void
}) {
return null
}

View file

@ -1,41 +0,0 @@
import React from 'react'
import {StyleSheet, TouchableWithoutFeedback, View} from 'react-native'
import {Text} from '../util/text/Text'
import {usePalette} from 'lib/hooks/usePalette'
import {s} from 'lib/styles'
export function ComposerPrompt({
onPressCompose,
}: {
onPressCompose: (imagesOpen?: boolean) => void
}) {
const pal = usePalette('default')
return (
<TouchableWithoutFeedback onPress={() => onPressCompose(false)}>
<View style={[pal.view, pal.border, styles.container]}>
<Text type="xl" style={pal.textLight}>
What's up?
</Text>
<View style={s.flex1} />
<View style={[styles.btn, pal.btn]}>
<Text>Post</Text>
</View>
</View>
</TouchableWithoutFeedback>
)
}
const styles = StyleSheet.create({
container: {
paddingVertical: 16,
paddingHorizontal: 18,
flexDirection: 'row',
alignItems: 'center',
borderTopWidth: 1,
},
btn: {
paddingVertical: 6,
paddingHorizontal: 14,
borderRadius: 30,
},
})

View file

@ -13,12 +13,10 @@ import {EmptyState} from '../util/EmptyState'
import {ErrorMessage} from '../util/error/ErrorMessage'
import {FeedModel} from 'state/models/feed-view'
import {FeedItem} from './FeedItem'
import {ComposerPrompt} from './ComposerPrompt'
import {OnScrollCb} from 'lib/hooks/useOnMainScroll'
import {s} from 'lib/styles'
import {useAnalytics} from 'lib/analytics'
const COMPOSE_PROMPT_ITEM = {_reactKey: '__prompt__'}
const EMPTY_FEED_ITEM = {_reactKey: '__empty__'}
const ERROR_FEED_ITEM = {_reactKey: '__error__'}
@ -27,7 +25,6 @@ export const Feed = observer(function Feed({
style,
scrollElRef,
onPressTryAgain,
onPressCompose,
onScroll,
testID,
headerOffset = 0,
@ -36,7 +33,6 @@ export const Feed = observer(function Feed({
style?: StyleProp<ViewStyle>
scrollElRef?: MutableRefObject<FlatList<any> | null>
onPressTryAgain?: () => void
onPressCompose: (imagesOpen?: boolean) => void
onScroll?: OnScrollCb
testID?: string
headerOffset?: number
@ -47,7 +43,6 @@ export const Feed = observer(function Feed({
const data = React.useMemo(() => {
let feedItems: any[] = []
if (feed.hasLoaded) {
feedItems = feedItems.concat([COMPOSE_PROMPT_ITEM])
if (feed.hasError) {
feedItems = feedItems.concat([ERROR_FEED_ITEM])
}
@ -91,9 +86,7 @@ export const Feed = observer(function Feed({
// like PureComponent, shouldComponentUpdate, etc
const renderItem = React.useCallback(
({item}: {item: any}) => {
if (item === COMPOSE_PROMPT_ITEM) {
return <ComposerPrompt onPressCompose={onPressCompose} />
} else if (item === EMPTY_FEED_ITEM) {
if (item === EMPTY_FEED_ITEM) {
return (
<EmptyState
icon="bars"
@ -111,7 +104,7 @@ export const Feed = observer(function Feed({
}
return <FeedItem item={item} />
},
[feed, onPressTryAgain, onPressCompose],
[feed, onPressTryAgain],
)
const FeedFooter = React.useCallback(