import React from 'react' import {Platform, StyleSheet, View} from 'react-native' import {Text} from './text/Text' import {ago} from 'lib/strings/time' import {usePalette} from 'lib/hooks/usePalette' interface PostMetaOpts { authorHandle: string authorDisplayName: string | undefined timestamp: string } export function PostMeta(opts: PostMetaOpts) { const pal = usePalette('default') let displayName = opts.authorDisplayName || opts.authorHandle let handle = opts.authorHandle // HACK // Android simply cannot handle the truncation case we need // so we have to do it manually here // -prf 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) + '...' } } } } return ( {displayName} {handle ? (  {handle} ) : undefined} · {ago(opts.timestamp)} ) } const styles = StyleSheet.create({ meta: { flexDirection: 'row', alignItems: 'baseline', paddingTop: 0, paddingBottom: 2, }, metaItem: { paddingRight: 5, }, maxWidth: { maxWidth: '80%', }, })