import React, {useEffect, useMemo, useRef, useState} from 'react' import {observer} from 'mobx-react-lite' import { ActivityIndicator, KeyboardAvoidingView, Platform, SafeAreaView, ScrollView, StyleSheet, TextInput, TouchableOpacity, TouchableWithoutFeedback, View, } from 'react-native' import LinearGradient from 'react-native-linear-gradient' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {UserAutocompleteViewModel} from '../../../state/models/user-autocomplete-view' import {Autocomplete} from './Autocomplete' import {Text} from '../util/text/Text' import * as Toast from '../util/Toast' // @ts-ignore no type definition -prf import ProgressCircle from 'react-native-progress/Circle' // @ts-ignore no type definition -prf import ProgressPie from 'react-native-progress/Pie' import {TextLink} from '../util/Link' import {UserAvatar} from '../util/UserAvatar' import {useStores} from '../../../state' import * as apilib from '../../../state/lib/api' import {ComposerOpts} from '../../../state/models/shell-ui' import {s, colors, gradients} from '../../lib/styles' import {detectLinkables} from '../../../lib/strings' import {UserLocalPhotosModel} from '../../../state/models/user-local-photos' import {PhotoCarouselPicker} from './PhotoCarouselPicker' import {SelectedPhoto} from './SelectedPhoto' import {usePalette} from '../../lib/hooks/usePalette' const MAX_TEXT_LENGTH = 256 const DANGER_TEXT_LENGTH = MAX_TEXT_LENGTH const HITSLOP = {left: 10, top: 10, right: 10, bottom: 10} export const ComposePost = observer(function ComposePost({ replyTo, onPost, onClose, }: { replyTo?: ComposerOpts['replyTo'] onPost?: ComposerOpts['onPost'] onClose: () => void }) { const pal = usePalette('default') const store = useStores() const textInput = useRef(null) const [isProcessing, setIsProcessing] = useState(false) const [processingState, setProcessingState] = useState('') const [error, setError] = useState('') const [text, setText] = useState('') const [isSelectingPhotos, setIsSelectingPhotos] = useState(false) const [selectedPhotos, setSelectedPhotos] = useState([]) // Using default import (React.use...) instead of named import (use...) to be able to mock store's data in jest environment const autocompleteView = React.useMemo( () => new UserAutocompleteViewModel(store), [store], ) const localPhotos = React.useMemo( () => new UserLocalPhotosModel(store), [store], ) useEffect(() => { autocompleteView.setup() localPhotos.setup() }, [autocompleteView, localPhotos]) useEffect(() => { // HACK // wait a moment before focusing the input to resolve some layout bugs with the keyboard-avoiding-view // -prf let to: NodeJS.Timeout | undefined if (textInput.current) { to = setTimeout(() => { textInput.current?.focus() }, 250) } return () => { if (to) { clearTimeout(to) } } }, []) const onPressContainer = () => { textInput.current?.focus() } const onPressSelectPhotos = () => { if (isSelectingPhotos) { setIsSelectingPhotos(false) } else if (selectedPhotos.length < 4) { setIsSelectingPhotos(true) } } const onSelectPhotos = (photos: string[]) => { setSelectedPhotos(photos) setIsSelectingPhotos(false) } const onChangeText = (newText: string) => { setText(newText) const prefix = extractTextAutocompletePrefix(newText) if (typeof prefix === 'string') { autocompleteView.setActive(true) autocompleteView.setPrefix(prefix) } else { autocompleteView.setActive(false) } } const onPressCancel = () => { onClose() } const onPressPublish = async () => { if (isProcessing) { return } if (text.length > MAX_TEXT_LENGTH) { return } setError('') if (text.trim().length === 0 && selectedPhotos.length === 0) { setError('Did you want to say anything?') return false } setIsProcessing(true) try { await apilib.post( store, text, replyTo?.uri, selectedPhotos, autocompleteView.knownHandles, setProcessingState, ) } catch (e: any) { setError(e.message) setIsProcessing(false) return } store.me.mainFeed.loadLatest() onPost?.() onClose() Toast.show(`Your ${replyTo ? 'reply' : 'post'} has been published`) } const onSelectAutocompleteItem = (item: string) => { setText(replaceTextAutocompletePrefix(text, item)) autocompleteView.setActive(false) } const canPost = text.length <= MAX_TEXT_LENGTH const progressColor = text.length > DANGER_TEXT_LENGTH ? '#e60000' : undefined const selectTextInputLayout = selectedPhotos.length !== 0 ? styles.textInputLayoutWithPhoto : styles.textInputLayoutWithoutPhoto const selectTextInputPlaceholder = replyTo ? 'Write your reply' : selectedPhotos.length !== 0 ? 'Write a comment' : "What's up?" const textDecorated = useMemo(() => { let i = 0 return detectLinkables(text).map(v => { if (typeof v === 'string') { return v } else { return ( {v.link} ) } }) }, [text]) return ( Cancel {isProcessing ? ( ) : canPost ? ( {replyTo ? 'Reply' : 'Post'} ) : ( Post )} {isProcessing ? ( {processingState} ) : undefined} {error !== '' && ( {error} )} {replyTo ? ( {replyTo.text} ) : undefined} onChangeText(text)} placeholder={selectTextInputPlaceholder} placeholderTextColor={pal.colors.textLight} style={[pal.text, styles.textInput]}> {textDecorated} {isSelectingPhotos && localPhotos.photos != null && selectedPhotos.length < 4 && ( )} {MAX_TEXT_LENGTH - text.length} {text.length > DANGER_TEXT_LENGTH ? ( ) : ( )} ) }) const atPrefixRegex = /@([a-z0-9\.]*)$/i function extractTextAutocompletePrefix(text: string) { const match = atPrefixRegex.exec(text) if (match) { return match[1] } return undefined } function replaceTextAutocompletePrefix(text: string, item: string) { return text.replace(atPrefixRegex, `@${item} `) } const styles = StyleSheet.create({ outer: { flexDirection: 'column', flex: 1, padding: 15, paddingBottom: Platform.OS === 'ios' ? 0 : 50, height: '100%', }, topbar: { flexDirection: 'row', alignItems: 'center', paddingBottom: 10, paddingHorizontal: 5, height: 55, }, postBtn: { borderRadius: 20, paddingHorizontal: 20, paddingVertical: 6, }, processingLine: { borderRadius: 6, paddingHorizontal: 8, paddingVertical: 6, marginBottom: 6, }, errorLine: { flexDirection: 'row', backgroundColor: colors.red1, borderRadius: 6, paddingHorizontal: 8, paddingVertical: 6, marginVertical: 6, }, errorIcon: { borderWidth: 1, borderColor: colors.red4, color: colors.red4, borderRadius: 30, width: 16, height: 16, alignItems: 'center', justifyContent: 'center', marginRight: 5, }, textInputLayoutWithPhoto: { flexWrap: 'wrap', }, textInputLayoutWithoutPhoto: { flex: 1, }, textInputLayout: { flexDirection: 'row', borderTopWidth: 1, paddingTop: 16, }, textInput: { flex: 1, padding: 5, marginLeft: 8, alignSelf: 'flex-start', fontSize: 18, letterSpacing: 0.2, fontWeight: '400', lineHeight: 23.4, // 1.3*16 }, replyToLayout: { flexDirection: 'row', borderTopWidth: 1, paddingTop: 16, paddingBottom: 16, }, replyToPost: { flex: 1, paddingLeft: 13, paddingRight: 8, }, bottomBar: { flexDirection: 'row', paddingVertical: 10, paddingRight: 5, alignItems: 'center', borderTopWidth: 1, }, })