Move menu controls into post footers and improve meta info rendering

This commit is contained in:
Paul Frazee 2023-01-16 16:09:51 -06:00
parent 0e85b33276
commit 7f8f53b087
5 changed files with 58 additions and 53 deletions

View file

@ -1,28 +1,18 @@
import React from 'react'
import {StyleSheet, View} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {Platform, StyleSheet, View} from 'react-native'
import {Link} from '../util/Link'
import {Text} from './text/Text'
import {PostDropdownBtn} from './forms/DropdownButton'
import {s} from '../../lib/styles'
import {ago} from '../../../lib/strings'
import {useTheme} from '../../lib/ThemeContext'
import {usePalette} from '../../lib/hooks/usePalette'
interface PostMetaOpts {
itemHref: string
itemTitle: string
authorHref: string
authorHandle: string
authorDisplayName: string | undefined
timestamp: string
isAuthor: boolean
onCopyPostText: () => void
onDeletePost: () => void
}
export function PostMeta(opts: PostMetaOpts) {
const theme = useTheme()
const pal = usePalette('default')
let displayName = opts.authorDisplayName || opts.authorHandle
let handle = opts.authorHandle
@ -31,13 +21,15 @@ export function PostMeta(opts: PostMetaOpts) {
// Android simply cannot handle the truncation case we need
// so we have to do it manually here
// -prf
if (displayName.length + handle.length > 26) {
if (displayName.length > 26) {
displayName = displayName.slice(0, 23) + '...'
} else {
handle = handle.slice(0, 23 - displayName.length) + '...'
if (handle.endsWith('....')) {
handle = handle.slice(0, -4) + '...'
if (Platform.OS === 'android') {
if (displayName.length + handle.length > 26) {
if (displayName.length > 26) {
displayName = displayName.slice(0, 23) + '...'
} else {
handle = handle.slice(0, 23 - displayName.length) + '...'
if (handle.endsWith('....')) {
handle = handle.slice(0, -4) + '...'
}
}
}
}
@ -45,7 +37,7 @@ export function PostMeta(opts: PostMetaOpts) {
return (
<View style={styles.meta}>
<Link
style={styles.metaItem}
style={[styles.metaItem, styles.maxWidth]}
href={opts.authorHref}
title={opts.authorHandle}>
<Text type="h5" style={[pal.text]} numberOfLines={1}>
@ -60,20 +52,6 @@ export function PostMeta(opts: PostMetaOpts) {
<Text type="h6" style={[styles.metaItem, pal.textLight]}>
&middot; {ago(opts.timestamp)}
</Text>
<View style={s.flex1} />
<PostDropdownBtn
style={[styles.metaItem, s.pl5]}
itemHref={opts.itemHref}
itemTitle={opts.itemTitle}
isAuthor={opts.isAuthor}
onCopyPostText={opts.onCopyPostText}
onDeletePost={opts.onDeletePost}>
<FontAwesomeIcon
icon="ellipsis-h"
size={14}
style={[s.mt2, s.mr5, pal.text]}
/>
</PostDropdownBtn>
</View>
)
}
@ -81,11 +59,14 @@ export function PostMeta(opts: PostMetaOpts) {
const styles = StyleSheet.create({
meta: {
flexDirection: 'row',
alignItems: 'center',
alignItems: 'baseline',
paddingTop: 0,
paddingBottom: 2,
},
metaItem: {
paddingRight: 5,
},
maxWidth: {
maxWidth: '70%',
},
})