order bug
This commit is contained in:
+15
-14
@@ -3,31 +3,32 @@ import {View} from 'react-native'
|
|||||||
import Animated, {useAnimatedScrollHandler} from 'react-native-reanimated'
|
import Animated, {useAnimatedScrollHandler} from 'react-native-reanimated'
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
|
function someWorkletFn() {
|
||||||
|
'worklet'
|
||||||
|
console.log('lol')
|
||||||
|
}
|
||||||
|
|
||||||
const [x, setX] = React.useState(0)
|
const [x, setX] = React.useState(0)
|
||||||
|
|
||||||
|
const handler = useAnimatedScrollHandler({
|
||||||
|
onScroll() {
|
||||||
|
console.log(x)
|
||||||
|
someWorkletFn()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
let id = setInterval(() => setX(x => x + 1), 1000)
|
let id = setInterval(() => setX(x => x + 1), 1000)
|
||||||
return () => clearInterval(id)
|
return () => clearInterval(id)
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
const handler = useAnimatedScrollHandler({
|
|
||||||
onScroll() {
|
|
||||||
console.log(x)
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
return <Child onScroll={handler} />
|
|
||||||
}
|
|
||||||
|
|
||||||
const Child = React.memo(function ({onScroll}) {
|
|
||||||
return (
|
return (
|
||||||
<View style={{flex: 1, flexDirection: 'row'}}>
|
|
||||||
<Animated.FlatList
|
<Animated.FlatList
|
||||||
onScroll={onScroll}
|
onScroll={handler}
|
||||||
style={{flex: 1, backgroundColor: 'red'}}
|
style={{flex: 1, backgroundColor: 'red'}}
|
||||||
contentContainerStyle={{
|
contentContainerStyle={{
|
||||||
paddingTop: 1000,
|
paddingTop: 1000,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</View>
|
|
||||||
)
|
)
|
||||||
})
|
}
|
||||||
|
|||||||
+23
-99
@@ -1,110 +1,34 @@
|
|||||||
import 'lib/sentry' // must be near top
|
import * as React from 'react'
|
||||||
|
import {View} from 'react-native'
|
||||||
|
import Animated, {useAnimatedScrollHandler} from 'react-native-reanimated'
|
||||||
|
|
||||||
import React, {useState, useEffect} from 'react'
|
export default function App() {
|
||||||
import {observer} from 'mobx-react-lite'
|
function someWorkletFn() {
|
||||||
import {QueryClientProvider} from '@tanstack/react-query'
|
'worklet'
|
||||||
import {SafeAreaProvider} from 'react-native-safe-area-context'
|
console.log('lol')
|
||||||
import {RootSiblingParent} from 'react-native-root-siblings'
|
|
||||||
|
|
||||||
import 'view/icons'
|
|
||||||
|
|
||||||
import {init as initPersistedState} from '#/state/persisted'
|
|
||||||
import {useColorMode} from 'state/shell'
|
|
||||||
import * as analytics from 'lib/analytics/analytics'
|
|
||||||
import {RootStoreModel, setupState, RootStoreProvider} from './state'
|
|
||||||
import {Shell} from 'view/shell/index'
|
|
||||||
import {ToastContainer} from 'view/com/util/Toast.web'
|
|
||||||
import {ThemeProvider} from 'lib/ThemeContext'
|
|
||||||
import {queryClient} from 'lib/react-query'
|
|
||||||
import {i18n} from '@lingui/core'
|
|
||||||
import {I18nProvider} from '@lingui/react'
|
|
||||||
import {defaultLocale, dynamicActivate} from './locale/i18n'
|
|
||||||
import {Provider as ShellStateProvider} from 'state/shell'
|
|
||||||
import {Provider as ModalStateProvider} from 'state/modals'
|
|
||||||
import {Provider as MutedThreadsProvider} from 'state/muted-threads'
|
|
||||||
import {Provider as InvitesStateProvider} from 'state/invites'
|
|
||||||
import {Provider as PrefsStateProvider} from 'state/preferences'
|
|
||||||
import {
|
|
||||||
Provider as SessionProvider,
|
|
||||||
useSession,
|
|
||||||
useSessionApi,
|
|
||||||
} from 'state/session'
|
|
||||||
import * as persisted from '#/state/persisted'
|
|
||||||
|
|
||||||
const InnerApp = observer(function AppImpl() {
|
|
||||||
const {isInitialLoad} = useSession()
|
|
||||||
const {resumeSession} = useSessionApi()
|
|
||||||
const colorMode = useColorMode()
|
|
||||||
const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
|
|
||||||
undefined,
|
|
||||||
)
|
|
||||||
|
|
||||||
// init
|
|
||||||
useEffect(() => {
|
|
||||||
setupState().then(store => {
|
|
||||||
setRootStore(store)
|
|
||||||
analytics.init(store)
|
|
||||||
})
|
|
||||||
dynamicActivate(defaultLocale) // async import of locale data
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const account = persisted.get('session').currentAccount
|
|
||||||
resumeSession(account)
|
|
||||||
}, [resumeSession])
|
|
||||||
|
|
||||||
// show nothing prior to init
|
|
||||||
if (!rootStore || isInitialLoad) {
|
|
||||||
// TODO add a loading state
|
|
||||||
return null
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
const [x, setX] = React.useState(0)
|
||||||
<QueryClientProvider client={queryClient}>
|
|
||||||
<ThemeProvider theme={colorMode}>
|
|
||||||
<RootSiblingParent>
|
|
||||||
<analytics.Provider>
|
|
||||||
<RootStoreProvider value={rootStore}>
|
|
||||||
<I18nProvider i18n={i18n}>
|
|
||||||
<SafeAreaProvider>
|
|
||||||
<Shell />
|
|
||||||
</SafeAreaProvider>
|
|
||||||
</I18nProvider>
|
|
||||||
<ToastContainer />
|
|
||||||
</RootStoreProvider>
|
|
||||||
</analytics.Provider>
|
|
||||||
</RootSiblingParent>
|
|
||||||
</ThemeProvider>
|
|
||||||
</QueryClientProvider>
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
function App() {
|
const handler = useAnimatedScrollHandler({
|
||||||
const [isReady, setReady] = useState(false)
|
onScroll() {
|
||||||
|
console.log(x)
|
||||||
|
someWorkletFn()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
initPersistedState().then(() => setReady(true))
|
let id = setInterval(() => setX(x => x + 1), 1000)
|
||||||
|
return () => clearInterval(id)
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
if (!isReady) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SessionProvider>
|
<Animated.FlatList
|
||||||
<ShellStateProvider>
|
onScroll={handler}
|
||||||
<PrefsStateProvider>
|
style={{flex: 1, backgroundColor: 'red'}}
|
||||||
<MutedThreadsProvider>
|
contentContainerStyle={{
|
||||||
<InvitesStateProvider>
|
paddingTop: 1000,
|
||||||
<ModalStateProvider>
|
}}
|
||||||
<InnerApp />
|
/>
|
||||||
</ModalStateProvider>
|
|
||||||
</InvitesStateProvider>
|
|
||||||
</MutedThreadsProvider>
|
|
||||||
</PrefsStateProvider>
|
|
||||||
</ShellStateProvider>
|
|
||||||
</SessionProvider>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App
|
|
||||||
|
|||||||
Reference in New Issue
Block a user