* Rework notifications to sync locally in full and give users better control * Fix positioning of load more btn on web * Improve behavior of load more notifications btn * Fix to post rendering * Fix notification fetch abort condition * Add start of post-hiding by labels * Create a standard postcontainer and improve show/hide UI on posts * Add content hiding to expanded post form * Improve label rendering to give more context to users when appropriate * Fix rendering bug * Add user/profile labeling * Implement content filtering preferences * Filter notifications by content prefs * Update test-pds config * Bump deps
110 lines
4 KiB
TypeScript
110 lines
4 KiB
TypeScript
import React, {useRef, useEffect} from 'react'
|
|
import {StyleSheet, View} from 'react-native'
|
|
import {observer} from 'mobx-react-lite'
|
|
import BottomSheet from '@gorhom/bottom-sheet'
|
|
import {useStores} from 'state/index'
|
|
import {createCustomBackdrop} from '../util/BottomSheetCustomBackdrop'
|
|
import {usePalette} from 'lib/hooks/usePalette'
|
|
|
|
import * as ConfirmModal from './Confirm'
|
|
import * as EditProfileModal from './EditProfile'
|
|
import * as ServerInputModal from './ServerInput'
|
|
import * as ReportPostModal from './ReportPost'
|
|
import * as RepostModal from './Repost'
|
|
import * as ReportAccountModal from './ReportAccount'
|
|
import * as DeleteAccountModal from './DeleteAccount'
|
|
import * as ChangeHandleModal from './ChangeHandle'
|
|
import * as WaitlistModal from './Waitlist'
|
|
import * as InviteCodesModal from './InviteCodes'
|
|
import * as ContentFilteringSettingsModal from './ContentFilteringSettings'
|
|
|
|
const DEFAULT_SNAPPOINTS = ['90%']
|
|
|
|
export const ModalsContainer = observer(function ModalsContainer() {
|
|
const store = useStores()
|
|
const bottomSheetRef = useRef<BottomSheet>(null)
|
|
const pal = usePalette('default')
|
|
const onBottomSheetChange = (snapPoint: number) => {
|
|
if (snapPoint === -1) {
|
|
store.shell.closeModal()
|
|
}
|
|
}
|
|
const onClose = () => {
|
|
bottomSheetRef.current?.close()
|
|
store.shell.closeModal()
|
|
}
|
|
|
|
const activeModal =
|
|
store.shell.activeModals[store.shell.activeModals.length - 1]
|
|
|
|
useEffect(() => {
|
|
if (store.shell.isModalActive) {
|
|
bottomSheetRef.current?.expand()
|
|
} else {
|
|
bottomSheetRef.current?.close()
|
|
}
|
|
}, [store.shell.isModalActive, bottomSheetRef, activeModal?.name])
|
|
|
|
let snapPoints: (string | number)[] = DEFAULT_SNAPPOINTS
|
|
let element
|
|
if (activeModal?.name === 'confirm') {
|
|
snapPoints = ConfirmModal.snapPoints
|
|
element = <ConfirmModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'edit-profile') {
|
|
snapPoints = EditProfileModal.snapPoints
|
|
element = <EditProfileModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'server-input') {
|
|
snapPoints = ServerInputModal.snapPoints
|
|
element = <ServerInputModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'report-post') {
|
|
snapPoints = ReportPostModal.snapPoints
|
|
element = <ReportPostModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'report-account') {
|
|
snapPoints = ReportAccountModal.snapPoints
|
|
element = <ReportAccountModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'delete-account') {
|
|
snapPoints = DeleteAccountModal.snapPoints
|
|
element = <DeleteAccountModal.Component />
|
|
} else if (activeModal?.name === 'repost') {
|
|
snapPoints = RepostModal.snapPoints
|
|
element = <RepostModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'change-handle') {
|
|
snapPoints = ChangeHandleModal.snapPoints
|
|
element = <ChangeHandleModal.Component {...activeModal} />
|
|
} else if (activeModal?.name === 'waitlist') {
|
|
snapPoints = WaitlistModal.snapPoints
|
|
element = <WaitlistModal.Component />
|
|
} else if (activeModal?.name === 'invite-codes') {
|
|
snapPoints = InviteCodesModal.snapPoints
|
|
element = <InviteCodesModal.Component />
|
|
} else if (activeModal?.name === 'content-filtering-settings') {
|
|
snapPoints = ContentFilteringSettingsModal.snapPoints
|
|
element = <ContentFilteringSettingsModal.Component />
|
|
} else {
|
|
return <View />
|
|
}
|
|
|
|
return (
|
|
<BottomSheet
|
|
ref={bottomSheetRef}
|
|
snapPoints={snapPoints}
|
|
index={store.shell.isModalActive ? 0 : -1}
|
|
enablePanDownToClose
|
|
keyboardBehavior="fillParent"
|
|
backdropComponent={
|
|
store.shell.isModalActive ? createCustomBackdrop(onClose) : undefined
|
|
}
|
|
handleIndicatorStyle={{backgroundColor: pal.text.color}}
|
|
handleStyle={[styles.handle, pal.view]}
|
|
onChange={onBottomSheetChange}>
|
|
{element}
|
|
</BottomSheet>
|
|
)
|
|
})
|
|
|
|
const styles = StyleSheet.create({
|
|
handle: {
|
|
borderTopLeftRadius: 10,
|
|
borderTopRightRadius: 10,
|
|
},
|
|
})
|