102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
import {StyleSheet, View} from 'react-native'
|
|
import {DismissableLayer, FocusGuards, FocusScope} from 'radix-ui/internal'
|
|
import {RemoveScrollBar} from 'react-remove-scroll-bar'
|
|
|
|
import {useA11y} from '#/state/a11y'
|
|
import {type ComposerOpts, useComposerState} from '#/state/shell/composer'
|
|
import {ComposePost, useComposerCancelRef} from '#/view/com/composer/Composer'
|
|
import {atoms as a, flatten, useBreakpoints, useTheme} from '#/alf'
|
|
|
|
const BOTTOM_BAR_HEIGHT = 61
|
|
|
|
export function Composer() {
|
|
const state = useComposerState()
|
|
const isActive = !!state
|
|
|
|
if (!isActive) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<RemoveScrollBar />
|
|
<Inner state={state} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
function Inner({state}: {state: ComposerOpts}) {
|
|
const ref = useComposerCancelRef()
|
|
const t = useTheme()
|
|
const {gtMobile} = useBreakpoints()
|
|
const {reduceMotionEnabled} = useA11y()
|
|
|
|
FocusGuards.useFocusGuards()
|
|
|
|
return (
|
|
<FocusScope.FocusScope loop trapped asChild>
|
|
<DismissableLayer.DismissableLayer
|
|
role="dialog"
|
|
aria-modal
|
|
style={flatten([
|
|
{position: 'fixed'},
|
|
a.inset_0,
|
|
{backgroundColor: '#000c'},
|
|
a.flex,
|
|
a.flex_col,
|
|
a.align_center,
|
|
!reduceMotionEnabled && a.fade_in,
|
|
])}
|
|
onFocusOutside={evt => evt.preventDefault()}
|
|
onInteractOutside={evt => evt.preventDefault()}
|
|
onDismiss={() => ref.current?.onPressCancel()}>
|
|
<View
|
|
style={[
|
|
styles.container,
|
|
!gtMobile && styles.containerMobile,
|
|
t.atoms.bg,
|
|
t.atoms.border_contrast_medium,
|
|
!reduceMotionEnabled && [
|
|
a.zoom_fade_in,
|
|
{animationDelay: 0.1},
|
|
{animationFillMode: 'backwards'},
|
|
],
|
|
]}>
|
|
<ComposePost
|
|
cancelRef={ref}
|
|
replyTo={state.replyTo}
|
|
quote={state.quote}
|
|
onPost={state.onPost}
|
|
onPostSuccess={state.onPostSuccess}
|
|
mention={state.mention}
|
|
text={state.text}
|
|
imageUris={state.imageUris}
|
|
openGallery={state.openGallery}
|
|
/>
|
|
</View>
|
|
</DismissableLayer.DismissableLayer>
|
|
</FocusScope.FocusScope>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
marginTop: 50,
|
|
maxWidth: 600,
|
|
width: '100%',
|
|
paddingVertical: 0,
|
|
borderRadius: 8,
|
|
marginBottom: 0,
|
|
borderWidth: 1,
|
|
// @ts-expect-error web only
|
|
maxHeight: 'calc(100% - (40px * 2))',
|
|
overflow: 'hidden',
|
|
},
|
|
containerMobile: {
|
|
borderRadius: 0,
|
|
marginBottom: BOTTOM_BAR_HEIGHT,
|
|
// @ts-expect-error web only
|
|
maxHeight: `calc(100% - ${BOTTOM_BAR_HEIGHT}px)`,
|
|
},
|
|
})
|