Rework the composer to a less buggy solution
parent
05055e184d
commit
8ae6e67eea
|
@ -27,22 +27,6 @@ export class SharePostModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ComposePostModelOpts {
|
|
||||||
replyTo?: Post.PostRef
|
|
||||||
onPost?: () => void
|
|
||||||
}
|
|
||||||
export class ComposePostModel {
|
|
||||||
name = 'compose-post'
|
|
||||||
replyTo?: Post.PostRef
|
|
||||||
onPost?: () => void
|
|
||||||
|
|
||||||
constructor(opts?: ComposePostModelOpts) {
|
|
||||||
makeAutoObservable(this)
|
|
||||||
this.replyTo = opts?.replyTo
|
|
||||||
this.onPost = opts?.onPost
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export class EditProfileModel {
|
export class EditProfileModel {
|
||||||
name = 'edit-profile'
|
name = 'edit-profile'
|
||||||
|
|
||||||
|
@ -51,26 +35,22 @@ export class EditProfileModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ComposerOpts {
|
||||||
|
replyTo?: Post.PostRef
|
||||||
|
onPost?: () => void
|
||||||
|
}
|
||||||
|
|
||||||
export class ShellModel {
|
export class ShellModel {
|
||||||
isModalActive = false
|
isModalActive = false
|
||||||
activeModal:
|
activeModal: LinkActionsModel | SharePostModel | EditProfileModel | undefined
|
||||||
| LinkActionsModel
|
isComposerActive = false
|
||||||
| SharePostModel
|
composerOpts: ComposerOpts | undefined
|
||||||
| ComposePostModel
|
|
||||||
| EditProfileModel
|
|
||||||
| undefined
|
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
makeAutoObservable(this)
|
makeAutoObservable(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
openModal(
|
openModal(modal: LinkActionsModel | SharePostModel | EditProfileModel) {
|
||||||
modal:
|
|
||||||
| LinkActionsModel
|
|
||||||
| SharePostModel
|
|
||||||
| ComposePostModel
|
|
||||||
| EditProfileModel,
|
|
||||||
) {
|
|
||||||
this.isModalActive = true
|
this.isModalActive = true
|
||||||
this.activeModal = modal
|
this.activeModal = modal
|
||||||
}
|
}
|
||||||
|
@ -79,4 +59,14 @@ export class ShellModel {
|
||||||
this.isModalActive = false
|
this.isModalActive = false
|
||||||
this.activeModal = undefined
|
this.activeModal = undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openComposer(opts: ComposerOpts) {
|
||||||
|
this.isComposerActive = true
|
||||||
|
this.composerOpts = opts
|
||||||
|
}
|
||||||
|
|
||||||
|
closeComposer() {
|
||||||
|
this.isComposerActive = false
|
||||||
|
this.composerOpts = undefined
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +1,28 @@
|
||||||
import React, {useEffect, useMemo, useState} from 'react'
|
import React, {useEffect, useMemo, useState} from 'react'
|
||||||
import {StyleSheet, Text, TouchableOpacity, View} from 'react-native'
|
import {StyleSheet, Text, TextInput, TouchableOpacity, View} from 'react-native'
|
||||||
import {BottomSheetTextInput} from '@gorhom/bottom-sheet'
|
|
||||||
import LinearGradient from 'react-native-linear-gradient'
|
import LinearGradient from 'react-native-linear-gradient'
|
||||||
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
import * as GetUserFollows from '../../../third-party/api/src/types/app/bsky/getUserFollows'
|
import * as GetUserFollows from '../../../third-party/api/src/types/app/bsky/getUserFollows'
|
||||||
import * as Post from '../../../third-party/api/src/types/app/bsky/post'
|
import {Autocomplete} from './Autocomplete'
|
||||||
import {Autocomplete} from './composer/Autocomplete'
|
|
||||||
import Toast from '../util/Toast'
|
import Toast from '../util/Toast'
|
||||||
import ProgressCircle from '../util/ProgressCircle'
|
import ProgressCircle from '../util/ProgressCircle'
|
||||||
import {useStores} from '../../../state'
|
import {useStores} from '../../../state'
|
||||||
import * as apilib from '../../../state/lib/api'
|
import * as apilib from '../../../state/lib/api'
|
||||||
|
import {ComposerOpts} from '../../../state/models/shell'
|
||||||
import {s, colors, gradients} from '../../lib/styles'
|
import {s, colors, gradients} from '../../lib/styles'
|
||||||
|
|
||||||
const MAX_TEXT_LENGTH = 256
|
const MAX_TEXT_LENGTH = 256
|
||||||
const WARNING_TEXT_LENGTH = 200
|
const WARNING_TEXT_LENGTH = 200
|
||||||
const DANGER_TEXT_LENGTH = 255
|
const DANGER_TEXT_LENGTH = 255
|
||||||
export const snapPoints = ['100%']
|
|
||||||
|
|
||||||
export function Component({
|
export function ComposePost({
|
||||||
replyTo,
|
replyTo,
|
||||||
onPost,
|
onPost,
|
||||||
|
onClose,
|
||||||
}: {
|
}: {
|
||||||
replyTo?: Post.PostRef
|
replyTo?: ComposerOpts['replyTo']
|
||||||
onPost?: () => void
|
onPost?: ComposerOpts['onPost']
|
||||||
|
onClose: () => void
|
||||||
}) {
|
}) {
|
||||||
const store = useStores()
|
const store = useStores()
|
||||||
const [error, setError] = useState('')
|
const [error, setError] = useState('')
|
||||||
|
@ -67,7 +67,7 @@ export function Component({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const onPressCancel = () => {
|
const onPressCancel = () => {
|
||||||
store.shell.closeModal()
|
onClose()
|
||||||
}
|
}
|
||||||
const onPressPublish = async () => {
|
const onPressPublish = async () => {
|
||||||
setError('')
|
setError('')
|
||||||
|
@ -85,7 +85,7 @@ export function Component({
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
onPost?.()
|
onPost?.()
|
||||||
store.shell.closeModal()
|
onClose()
|
||||||
Toast.show(`Your ${replyTo ? 'reply' : 'post'} has been published`, {
|
Toast.show(`Your ${replyTo ? 'reply' : 'post'} has been published`, {
|
||||||
duration: Toast.durations.LONG,
|
duration: Toast.durations.LONG,
|
||||||
position: Toast.positions.TOP,
|
position: Toast.positions.TOP,
|
||||||
|
@ -148,7 +148,7 @@ export function Component({
|
||||||
<Text style={s.red4}>{error}</Text>
|
<Text style={s.red4}>{error}</Text>
|
||||||
</View>
|
</View>
|
||||||
)}
|
)}
|
||||||
<BottomSheetTextInput
|
<TextInput
|
||||||
multiline
|
multiline
|
||||||
scrollEnabled
|
scrollEnabled
|
||||||
autoFocus
|
autoFocus
|
||||||
|
@ -156,7 +156,7 @@ export function Component({
|
||||||
placeholder={replyTo ? 'Write your reply' : "What's new?"}
|
placeholder={replyTo ? 'Write your reply' : "What's new?"}
|
||||||
style={styles.textInput}>
|
style={styles.textInput}>
|
||||||
{textDecorated}
|
{textDecorated}
|
||||||
</BottomSheetTextInput>
|
</TextInput>
|
||||||
<View style={[s.flexRow, s.pt10, s.pb10, s.pr5]}>
|
<View style={[s.flexRow, s.pt10, s.pb10, s.pr5]}>
|
||||||
<View style={s.flex1} />
|
<View style={s.flex1} />
|
||||||
<View>
|
<View>
|
|
@ -9,7 +9,6 @@ import * as models from '../../../state/models/shell'
|
||||||
|
|
||||||
import * as LinkActionsModal from './LinkActions'
|
import * as LinkActionsModal from './LinkActions'
|
||||||
import * as SharePostModal from './SharePost.native'
|
import * as SharePostModal from './SharePost.native'
|
||||||
import * as ComposePostModal from './ComposePost'
|
|
||||||
import * as EditProfile from './EditProfile'
|
import * as EditProfile from './EditProfile'
|
||||||
|
|
||||||
const CLOSED_SNAPPOINTS = ['10%']
|
const CLOSED_SNAPPOINTS = ['10%']
|
||||||
|
@ -51,13 +50,6 @@ export const Modal = observer(function Modal() {
|
||||||
{...(store.shell.activeModal as models.SharePostModel)}
|
{...(store.shell.activeModal as models.SharePostModel)}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
} else if (store.shell.activeModal?.name === 'compose-post') {
|
|
||||||
snapPoints = ComposePostModal.snapPoints
|
|
||||||
element = (
|
|
||||||
<ComposePostModal.Component
|
|
||||||
{...(store.shell.activeModal as models.ComposePostModel)}
|
|
||||||
/>
|
|
||||||
)
|
|
||||||
} else if (store.shell.activeModal?.name === 'edit-profile') {
|
} else if (store.shell.activeModal?.name === 'edit-profile') {
|
||||||
snapPoints = EditProfile.snapPoints
|
snapPoints = EditProfile.snapPoints
|
||||||
element = (
|
element = (
|
||||||
|
|
|
@ -6,7 +6,6 @@ import {AtUri} from '../../../third-party/uri'
|
||||||
import * as PostType from '../../../third-party/api/src/types/app/bsky/post'
|
import * as PostType from '../../../third-party/api/src/types/app/bsky/post'
|
||||||
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
import {PostThreadViewPostModel} from '../../../state/models/post-thread-view'
|
import {PostThreadViewPostModel} from '../../../state/models/post-thread-view'
|
||||||
import {ComposePostModel} from '../../../state/models/shell'
|
|
||||||
import {Link} from '../util/Link'
|
import {Link} from '../util/Link'
|
||||||
import {RichText} from '../util/RichText'
|
import {RichText} from '../util/RichText'
|
||||||
import {PostDropdownBtn} from '../util/DropdownBtn'
|
import {PostDropdownBtn} from '../util/DropdownBtn'
|
||||||
|
@ -49,12 +48,10 @@ export const PostThreadItem = observer(function PostThreadItem({
|
||||||
const repostsTitle = 'Reposts of this post'
|
const repostsTitle = 'Reposts of this post'
|
||||||
|
|
||||||
const onPressReply = () => {
|
const onPressReply = () => {
|
||||||
store.shell.openModal(
|
store.shell.openComposer({
|
||||||
new ComposePostModel({
|
replyTo: {uri: item.uri, cid: item.cid},
|
||||||
replyTo: {uri: item.uri, cid: item.cid},
|
onPost: onPostReply,
|
||||||
onPost: onPostReply,
|
})
|
||||||
}),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
const onPressToggleRepost = () => {
|
const onPressToggleRepost = () => {
|
||||||
item
|
item
|
||||||
|
|
|
@ -11,7 +11,6 @@ import {
|
||||||
} from 'react-native'
|
} from 'react-native'
|
||||||
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
import {PostThreadViewModel} from '../../../state/models/post-thread-view'
|
import {PostThreadViewModel} from '../../../state/models/post-thread-view'
|
||||||
import {ComposePostModel} from '../../../state/models/shell'
|
|
||||||
import {Link} from '../util/Link'
|
import {Link} from '../util/Link'
|
||||||
import {UserInfoText} from '../util/UserInfoText'
|
import {UserInfoText} from '../util/UserInfoText'
|
||||||
import {RichText} from '../util/RichText'
|
import {RichText} from '../util/RichText'
|
||||||
|
@ -71,9 +70,7 @@ export const Post = observer(function Post({uri}: {uri: string}) {
|
||||||
replyHref = `/profile/${urip.hostname}/post/${urip.rkey}`
|
replyHref = `/profile/${urip.hostname}/post/${urip.rkey}`
|
||||||
}
|
}
|
||||||
const onPressReply = () => {
|
const onPressReply = () => {
|
||||||
store.shell.openModal(
|
store.shell.openComposer({replyTo: {uri: item.uri, cid: item.cid}})
|
||||||
new ComposePostModel({replyTo: {uri: item.uri, cid: item.cid}}),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
const onPressToggleRepost = () => {
|
const onPressToggleRepost = () => {
|
||||||
item
|
item
|
||||||
|
|
|
@ -5,7 +5,7 @@ import {AtUri} from '../../../third-party/uri'
|
||||||
import * as PostType from '../../../third-party/api/src/types/app/bsky/post'
|
import * as PostType from '../../../third-party/api/src/types/app/bsky/post'
|
||||||
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
import {FeedItemModel} from '../../../state/models/feed-view'
|
import {FeedItemModel} from '../../../state/models/feed-view'
|
||||||
import {ComposePostModel, SharePostModel} from '../../../state/models/shell'
|
import {SharePostModel} from '../../../state/models/shell'
|
||||||
import {Link} from '../util/Link'
|
import {Link} from '../util/Link'
|
||||||
import {PostDropdownBtn} from '../util/DropdownBtn'
|
import {PostDropdownBtn} from '../util/DropdownBtn'
|
||||||
import {UserInfoText} from '../util/UserInfoText'
|
import {UserInfoText} from '../util/UserInfoText'
|
||||||
|
@ -40,9 +40,7 @@ export const FeedItem = observer(function FeedItem({
|
||||||
}, [record.reply])
|
}, [record.reply])
|
||||||
|
|
||||||
const onPressReply = () => {
|
const onPressReply = () => {
|
||||||
store.shell.openModal(
|
store.shell.openComposer({replyTo: {uri: item.uri, cid: item.cid}})
|
||||||
new ComposePostModel({replyTo: {uri: item.uri, cid: item.cid}}),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
const onPressToggleRepost = () => {
|
const onPressToggleRepost = () => {
|
||||||
item
|
item
|
||||||
|
|
|
@ -6,7 +6,6 @@ import {Feed} from '../com/posts/Feed'
|
||||||
import {FAB} from '../com/util/FloatingActionButton'
|
import {FAB} from '../com/util/FloatingActionButton'
|
||||||
import {useStores} from '../../state'
|
import {useStores} from '../../state'
|
||||||
import {FeedModel} from '../../state/models/feed-view'
|
import {FeedModel} from '../../state/models/feed-view'
|
||||||
import {ComposePostModel} from '../../state/models/shell'
|
|
||||||
import {ScreenParams} from '../routes'
|
import {ScreenParams} from '../routes'
|
||||||
import {s} from '../lib/styles'
|
import {s} from '../lib/styles'
|
||||||
|
|
||||||
|
@ -46,7 +45,7 @@ export const Home = observer(function Home({
|
||||||
}, [visible, store])
|
}, [visible, store])
|
||||||
|
|
||||||
const onComposePress = () => {
|
const onComposePress = () => {
|
||||||
store.shell.openModal(new ComposePostModel({onPost: onCreatePost}))
|
store.shell.openComposer({onPost: onCreatePost})
|
||||||
}
|
}
|
||||||
const onCreatePost = () => {
|
const onCreatePost = () => {
|
||||||
defaultFeedView.loadLatest()
|
defaultFeedView.loadLatest()
|
||||||
|
|
|
@ -0,0 +1,83 @@
|
||||||
|
import React, {useEffect} from 'react'
|
||||||
|
import {observer} from 'mobx-react-lite'
|
||||||
|
import {
|
||||||
|
StyleSheet,
|
||||||
|
Text,
|
||||||
|
TouchableOpacity,
|
||||||
|
TouchableWithoutFeedback,
|
||||||
|
View,
|
||||||
|
} from 'react-native'
|
||||||
|
import Animated, {
|
||||||
|
useSharedValue,
|
||||||
|
useAnimatedStyle,
|
||||||
|
withTiming,
|
||||||
|
interpolate,
|
||||||
|
Easing,
|
||||||
|
} from 'react-native-reanimated'
|
||||||
|
import {IconProp} from '@fortawesome/fontawesome-svg-core'
|
||||||
|
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
|
||||||
|
import {HomeIcon, UserGroupIcon, BellIcon} from '../../lib/icons'
|
||||||
|
import {ComposePost} from '../../com/composer/ComposePost'
|
||||||
|
import {useStores} from '../../../state'
|
||||||
|
import {ComposerOpts} from '../../../state/models/shell'
|
||||||
|
import {s, colors} from '../../lib/styles'
|
||||||
|
|
||||||
|
export const Composer = observer(
|
||||||
|
({
|
||||||
|
active,
|
||||||
|
winHeight,
|
||||||
|
replyTo,
|
||||||
|
onPost,
|
||||||
|
onClose,
|
||||||
|
}: {
|
||||||
|
active: boolean
|
||||||
|
winHeight: number
|
||||||
|
replyTo?: ComposerOpts['replyTo']
|
||||||
|
onPost?: ComposerOpts['onPost']
|
||||||
|
onClose: () => void
|
||||||
|
}) => {
|
||||||
|
const store = useStores()
|
||||||
|
const initInterp = useSharedValue<number>(0)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (active) {
|
||||||
|
initInterp.value = withTiming(1, {
|
||||||
|
duration: 300,
|
||||||
|
easing: Easing.out(Easing.exp),
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
initInterp.value = 0
|
||||||
|
}
|
||||||
|
}, [initInterp, active])
|
||||||
|
const wrapperAnimStyle = useAnimatedStyle(() => ({
|
||||||
|
top: interpolate(initInterp.value, [0, 1.0], [winHeight, 0]),
|
||||||
|
}))
|
||||||
|
|
||||||
|
// events
|
||||||
|
// =
|
||||||
|
|
||||||
|
// rendering
|
||||||
|
// =
|
||||||
|
|
||||||
|
if (!active) {
|
||||||
|
return <View />
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Animated.View style={[styles.wrapper, wrapperAnimStyle]}>
|
||||||
|
<ComposePost replyTo={replyTo} onPost={onPost} onClose={onClose} />
|
||||||
|
</Animated.View>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
wrapper: {
|
||||||
|
position: 'absolute',
|
||||||
|
top: 0,
|
||||||
|
bottom: 0,
|
||||||
|
width: '100%',
|
||||||
|
backgroundColor: '#fff',
|
||||||
|
paddingTop: 20,
|
||||||
|
},
|
||||||
|
})
|
|
@ -30,6 +30,7 @@ import {Login} from '../../screens/Login'
|
||||||
import {Modal} from '../../com/modals/Modal'
|
import {Modal} from '../../com/modals/Modal'
|
||||||
import {MainMenu} from './MainMenu'
|
import {MainMenu} from './MainMenu'
|
||||||
import {TabsSelector} from './TabsSelector'
|
import {TabsSelector} from './TabsSelector'
|
||||||
|
import {Composer} from './Composer'
|
||||||
import {s, colors} from '../../lib/styles'
|
import {s, colors} from '../../lib/styles'
|
||||||
import {GridIcon, HomeIcon, BellIcon} from '../../lib/icons'
|
import {GridIcon, HomeIcon, BellIcon} from '../../lib/icons'
|
||||||
|
|
||||||
|
@ -217,6 +218,13 @@ export const MobileShell: React.FC = observer(() => {
|
||||||
active={isTabsSelectorActive}
|
active={isTabsSelectorActive}
|
||||||
onClose={() => setTabsSelectorActive(false)}
|
onClose={() => setTabsSelectorActive(false)}
|
||||||
/>
|
/>
|
||||||
|
<Composer
|
||||||
|
active={store.shell.isComposerActive}
|
||||||
|
onClose={() => store.shell.closeComposer()}
|
||||||
|
winHeight={winDim.height}
|
||||||
|
replyTo={store.shell.composerOpts?.replyTo}
|
||||||
|
onPost={store.shell.composerOpts?.onPost}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue