mirror of
https://github.com/tooot-app/app
synced 2024-12-21 07:13:15 +01:00
Pilot fix for #558
This commit is contained in:
parent
e09e2da1b7
commit
78dba4ae1a
@ -6,5 +6,6 @@ Enjoy toooting! This version includes following improvements and fixes:
|
|||||||
- Allow hiding boosts and replies in home timeline
|
- Allow hiding boosts and replies in home timeline
|
||||||
- Support toot in RTL languages
|
- Support toot in RTL languages
|
||||||
- Added notification for admins
|
- Added notification for admins
|
||||||
|
- Pilot conversation hierarchy
|
||||||
- Fix whole word filter matching
|
- Fix whole word filter matching
|
||||||
- Fix tablet cannot delete toot drafts
|
- Fix tablet cannot delete toot drafts
|
@ -6,5 +6,6 @@ toooting愉快!此版本包括以下改进和修复:
|
|||||||
- 关注列表可隐藏转嘟和回复
|
- 关注列表可隐藏转嘟和回复
|
||||||
- 新增管理员推送通知
|
- 新增管理员推送通知
|
||||||
- 支持嘟文右到左文字
|
- 支持嘟文右到左文字
|
||||||
|
- 测试显示对话层级
|
||||||
- 修复过滤整词功能
|
- 修复过滤整词功能
|
||||||
- 修复平板不能删除草稿
|
- 修复平板不能删除草稿
|
@ -34,6 +34,7 @@ export interface Props {
|
|||||||
highlighted?: boolean
|
highlighted?: boolean
|
||||||
disableDetails?: boolean
|
disableDetails?: boolean
|
||||||
disableOnPress?: boolean
|
disableOnPress?: boolean
|
||||||
|
isConversation?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
// When the poll is long
|
// When the poll is long
|
||||||
@ -43,7 +44,8 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
rootQueryKey,
|
rootQueryKey,
|
||||||
highlighted = false,
|
highlighted = false,
|
||||||
disableDetails = false,
|
disableDetails = false,
|
||||||
disableOnPress = false
|
disableOnPress = false,
|
||||||
|
isConversation = false
|
||||||
}) => {
|
}) => {
|
||||||
const { colors } = useTheme()
|
const { colors } = useTheme()
|
||||||
const navigation = useNavigation<StackNavigationProp<TabLocalStackParamList>>()
|
const navigation = useNavigation<StackNavigationProp<TabLocalStackParamList>>()
|
||||||
@ -74,7 +76,7 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
? StyleConstants.Spacing.Global.PagePadding / 1.5
|
? StyleConstants.Spacing.Global.PagePadding / 1.5
|
||||||
: StyleConstants.Spacing.Global.PagePadding,
|
: StyleConstants.Spacing.Global.PagePadding,
|
||||||
backgroundColor: colors.backgroundDefault,
|
backgroundColor: colors.backgroundDefault,
|
||||||
paddingBottom: disableDetails ? StyleConstants.Spacing.Global.PagePadding / 1.5 : 0,
|
paddingBottom: disableDetails ? StyleConstants.Spacing.Global.PagePadding / 1.5 : 0
|
||||||
}
|
}
|
||||||
const main = () => (
|
const main = () => (
|
||||||
<>
|
<>
|
||||||
@ -140,7 +142,8 @@ const TimelineDefault: React.FC<Props> = ({
|
|||||||
highlighted,
|
highlighted,
|
||||||
inThread: queryKey?.[1].page === 'Toot',
|
inThread: queryKey?.[1].page === 'Toot',
|
||||||
disableDetails,
|
disableDetails,
|
||||||
disableOnPress
|
disableOnPress,
|
||||||
|
isConversation
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{disableOnPress ? (
|
{disableOnPress ? (
|
||||||
|
@ -12,7 +12,8 @@ export interface Props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const TimelineAvatar: React.FC<Props> = ({ account }) => {
|
const TimelineAvatar: React.FC<Props> = ({ account }) => {
|
||||||
const { status, highlighted, disableDetails, disableOnPress } = useContext(StatusContext)
|
const { status, highlighted, disableDetails, disableOnPress, isConversation } =
|
||||||
|
useContext(StatusContext)
|
||||||
const actualAccount = account || status?.account
|
const actualAccount = account || status?.account
|
||||||
if (!actualAccount) return null
|
if (!actualAccount) return null
|
||||||
|
|
||||||
@ -34,7 +35,7 @@ const TimelineAvatar: React.FC<Props> = ({ account }) => {
|
|||||||
}
|
}
|
||||||
uri={{ original: actualAccount.avatar, static: actualAccount.avatar_static }}
|
uri={{ original: actualAccount.avatar, static: actualAccount.avatar_static }}
|
||||||
dimension={
|
dimension={
|
||||||
disableDetails
|
disableDetails || isConversation
|
||||||
? {
|
? {
|
||||||
width: StyleConstants.Avatar.XS,
|
width: StyleConstants.Avatar.XS,
|
||||||
height: StyleConstants.Avatar.XS
|
height: StyleConstants.Avatar.XS
|
||||||
@ -47,7 +48,8 @@ const TimelineAvatar: React.FC<Props> = ({ account }) => {
|
|||||||
style={{
|
style={{
|
||||||
borderRadius: StyleConstants.Avatar.M,
|
borderRadius: StyleConstants.Avatar.M,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
marginRight: StyleConstants.Spacing.S
|
marginRight: StyleConstants.Spacing.S,
|
||||||
|
marginLeft: isConversation ? StyleConstants.Avatar.M - StyleConstants.Avatar.XS : undefined
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
@ -19,6 +19,7 @@ type ContextType = {
|
|||||||
inThread?: boolean
|
inThread?: boolean
|
||||||
disableDetails?: boolean
|
disableDetails?: boolean
|
||||||
disableOnPress?: boolean
|
disableOnPress?: boolean
|
||||||
|
isConversation?: boolean
|
||||||
}
|
}
|
||||||
const StatusContext = createContext<ContextType>({} as ContextType)
|
const StatusContext = createContext<ContextType>({} as ContextType)
|
||||||
|
|
||||||
|
@ -5,8 +5,10 @@ import { TabSharedStackScreenProps } from '@utils/navigation/navigators'
|
|||||||
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
|
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
|
||||||
import React, { useEffect, useRef, useState } from 'react'
|
import React, { useEffect, useRef, useState } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { FlatList } from 'react-native'
|
import { FlatList, View } from 'react-native'
|
||||||
import { InfiniteQueryObserver, useQueryClient } from '@tanstack/react-query'
|
import { InfiniteQueryObserver, useQueryClient } from '@tanstack/react-query'
|
||||||
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
|
|
||||||
const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
||||||
navigation,
|
navigation,
|
||||||
@ -14,6 +16,7 @@ const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
|||||||
params: { toot, rootQueryKey }
|
params: { toot, rootQueryKey }
|
||||||
}
|
}
|
||||||
}) => {
|
}) => {
|
||||||
|
const { colors } = useTheme()
|
||||||
const { t } = useTranslation('screenTabs')
|
const { t } = useTranslation('screenTabs')
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -34,6 +37,10 @@ const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
|||||||
queryKey,
|
queryKey,
|
||||||
enabled: false
|
enabled: false
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const replyLevels = useRef<{ id: string; level: number }[]>([])
|
||||||
|
const data = useRef<Mastodon.Status[]>()
|
||||||
|
const highlightIndex = useRef<number>(0)
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
return observer.subscribe(result => {
|
return observer.subscribe(result => {
|
||||||
if (result.isSuccess) {
|
if (result.isSuccess) {
|
||||||
@ -46,6 +53,24 @@ const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
|||||||
navigation.goBack()
|
navigation.goBack()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
data.current = flattenData
|
||||||
|
highlightIndex.current = flattenData.findIndex(({ id }) => id === toot.id)
|
||||||
|
|
||||||
|
for (const [index, status] of flattenData.entries()) {
|
||||||
|
if (status.id === toot.id) continue
|
||||||
|
if (status.in_reply_to_id === toot.id) continue
|
||||||
|
|
||||||
|
if (!replyLevels.current.find(reply => reply.id === status.in_reply_to_id)) {
|
||||||
|
const prevLevel =
|
||||||
|
replyLevels.current.find(reply => reply.id === flattenData[index - 1].in_reply_to_id)
|
||||||
|
?.level || 0
|
||||||
|
replyLevels.current.push({
|
||||||
|
id: status.in_reply_to_id,
|
||||||
|
level: prevLevel + 1
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
setItemsLength(flattenData.length)
|
setItemsLength(flattenData.length)
|
||||||
if (!scrolled.current) {
|
if (!scrolled.current) {
|
||||||
scrolled.current = true
|
scrolled.current = true
|
||||||
@ -68,7 +93,7 @@ const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, [scrolled.current])
|
}, [scrolled.current, replyLevels.current])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Timeline
|
<Timeline
|
||||||
@ -76,14 +101,84 @@ const TabSharedToot: React.FC<TabSharedStackScreenProps<'Tab-Shared-Toot'>> = ({
|
|||||||
queryKey={queryKey}
|
queryKey={queryKey}
|
||||||
queryOptions={{ staleTime: 0, refetchOnMount: true }}
|
queryOptions={{ staleTime: 0, refetchOnMount: true }}
|
||||||
customProps={{
|
customProps={{
|
||||||
renderItem: ({ item }) => (
|
renderItem: ({ item, index }) => {
|
||||||
<TimelineDefault
|
const levels = {
|
||||||
item={item}
|
previous:
|
||||||
queryKey={queryKey}
|
replyLevels.current.find(
|
||||||
rootQueryKey={rootQueryKey}
|
reply => reply.id === data.current?.[index - 1]?.in_reply_to_id
|
||||||
highlighted={toot.id === item.id}
|
)?.level || 0,
|
||||||
/>
|
current:
|
||||||
),
|
replyLevels.current.find(reply => reply.id === item.in_reply_to_id)?.level || 0,
|
||||||
|
next:
|
||||||
|
replyLevels.current.find(
|
||||||
|
reply => reply.id === data.current?.[index + 1]?.in_reply_to_id
|
||||||
|
)?.level || 0
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<TimelineDefault
|
||||||
|
item={{ ...item, content: `${item.content}${JSON.stringify(levels)}` }}
|
||||||
|
queryKey={queryKey}
|
||||||
|
rootQueryKey={rootQueryKey}
|
||||||
|
highlighted={toot.id === item.id}
|
||||||
|
isConversation={toot.id !== item.id}
|
||||||
|
/>
|
||||||
|
{Array.from(Array(levels.current)).map((_, i) => {
|
||||||
|
if (index < highlightIndex.current) return null
|
||||||
|
if (
|
||||||
|
levels.previous + 1 === levels.current ||
|
||||||
|
(levels.previous && levels.current && levels.previous === levels.current)
|
||||||
|
) {
|
||||||
|
return (
|
||||||
|
<View
|
||||||
|
key={i}
|
||||||
|
style={{
|
||||||
|
position: 'absolute',
|
||||||
|
top: 0,
|
||||||
|
left: StyleConstants.Spacing.Global.PagePadding / 2 + 8 * i,
|
||||||
|
height:
|
||||||
|
levels.current === levels.next
|
||||||
|
? StyleConstants.Spacing.Global.PagePadding
|
||||||
|
: StyleConstants.Spacing.Global.PagePadding + StyleConstants.Avatar.XS,
|
||||||
|
borderLeftColor: colors.border,
|
||||||
|
borderLeftWidth: 1
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
})}
|
||||||
|
{Array.from(Array(levels.next)).map((_, i) => {
|
||||||
|
if (index < highlightIndex.current) return null
|
||||||
|
if (
|
||||||
|
levels.current + 1 === levels.next ||
|
||||||
|
(levels.current && levels.next && levels.current === levels.next)
|
||||||
|
) {
|
||||||
|
return (
|
||||||
|
<View
|
||||||
|
key={i}
|
||||||
|
style={{
|
||||||
|
position: 'absolute',
|
||||||
|
top:
|
||||||
|
levels.current + 1 === levels.next && levels.next > i + 1
|
||||||
|
? StyleConstants.Spacing.Global.PagePadding + StyleConstants.Avatar.XS
|
||||||
|
: StyleConstants.Spacing.Global.PagePadding,
|
||||||
|
left: StyleConstants.Spacing.Global.PagePadding / 2 + 8 * i,
|
||||||
|
height: 200,
|
||||||
|
borderLeftColor: colors.border,
|
||||||
|
borderLeftWidth: 1
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
})}
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
},
|
||||||
onScrollToIndexFailed: error => {
|
onScrollToIndexFailed: error => {
|
||||||
const offset = error.averageItemLength * error.index
|
const offset = error.averageItemLength * error.index
|
||||||
flRef.current?.scrollToOffset({ offset })
|
flRef.current?.scrollToOffset({ offset })
|
||||||
|
Loading…
Reference in New Issue
Block a user