mirror of
https://github.com/tooot-app/app
synced 2025-04-05 06:01:10 +02:00
Fix #756
This commit is contained in:
parent
1de8a40cda
commit
f64135a6df
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tooot",
|
"name": "tooot",
|
||||||
"version": "4.10.1",
|
"version": "4.10.2",
|
||||||
"description": "tooot for Mastodon",
|
"description": "tooot for Mastodon",
|
||||||
"author": "xmflsct <me@xmflsct.com>",
|
"author": "xmflsct <me@xmflsct.com>",
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
|
@ -1,22 +1,20 @@
|
|||||||
import GracefullyImage from '@components/GracefullyImage'
|
import GracefullyImage from '@components/GracefullyImage'
|
||||||
import openLink from '@components/openLink'
|
|
||||||
import CustomText from '@components/Text'
|
import CustomText from '@components/Text'
|
||||||
|
import openLink from '@components/openLink'
|
||||||
import { useNeodbQuery } from '@utils/queryHooks/neodb'
|
import { useNeodbQuery } from '@utils/queryHooks/neodb'
|
||||||
import { StyleConstants } from '@utils/styles/constants'
|
|
||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
import * as Linking from 'expo-linking'
|
import * as Linking from 'expo-linking'
|
||||||
import { useState } from 'react'
|
import { useContext, useState } from 'react'
|
||||||
import { Pressable, View } from 'react-native'
|
import { Pressable, View } from 'react-native'
|
||||||
|
import StatusContext from '../Context'
|
||||||
import { Rating } from './Rating'
|
import { Rating } from './Rating'
|
||||||
|
|
||||||
export type Props = {
|
export const CardNeodb: React.FC = () => {
|
||||||
card: Mastodon.Card
|
const { status } = useContext(StatusContext)
|
||||||
}
|
|
||||||
|
|
||||||
export const CardNeodb: React.FC<Props> = ({ card }) => {
|
|
||||||
const { colors } = useTheme()
|
const { colors } = useTheme()
|
||||||
|
|
||||||
const path = Linking.parse(card.url).path
|
const path = Linking.parse(status?.card?.url || '').path
|
||||||
if (!path) return null
|
if (!path) return null
|
||||||
|
|
||||||
const segments = path?.split('/')
|
const segments = path?.split('/')
|
||||||
@ -26,7 +24,7 @@ export const CardNeodb: React.FC<Props> = ({ card }) => {
|
|||||||
)
|
)
|
||||||
return null
|
return null
|
||||||
|
|
||||||
const [headingLines, setHeadingLines] = useState(3)
|
const [headingLines, setHeadingLines] = useState<number>()
|
||||||
|
|
||||||
const { data } = useNeodbQuery({ path })
|
const { data } = useNeodbQuery({ path })
|
||||||
|
|
||||||
@ -41,7 +39,7 @@ export const CardNeodb: React.FC<Props> = ({ card }) => {
|
|||||||
padding: StyleConstants.Spacing.S,
|
padding: StyleConstants.Spacing.S,
|
||||||
flexDirection: 'row'
|
flexDirection: 'row'
|
||||||
}}
|
}}
|
||||||
onPress={() => openLink(card.url)}
|
onPress={() => status?.card?.url && openLink(status.card.url)}
|
||||||
>
|
>
|
||||||
{data.cover_image_url ? (
|
{data.cover_image_url ? (
|
||||||
<GracefullyImage
|
<GracefullyImage
|
||||||
@ -68,7 +66,9 @@ export const CardNeodb: React.FC<Props> = ({ card }) => {
|
|||||||
fontWeight='Bold'
|
fontWeight='Bold'
|
||||||
style={{ color: colors.primaryDefault }}
|
style={{ color: colors.primaryDefault }}
|
||||||
numberOfLines={3}
|
numberOfLines={3}
|
||||||
onTextLayout={({ nativeEvent }) => setHeadingLines(nativeEvent.lines.length)}
|
onTextLayout={({ nativeEvent }) =>
|
||||||
|
!headingLines && setHeadingLines(nativeEvent.lines.length)
|
||||||
|
}
|
||||||
children={heading.filter(d => d).join(' ')}
|
children={heading.filter(d => d).join(' ')}
|
||||||
/>
|
/>
|
||||||
<Rating rating={data.rating / 2} />
|
<Rating rating={data.rating / 2} />
|
||||||
@ -77,7 +77,7 @@ export const CardNeodb: React.FC<Props> = ({ card }) => {
|
|||||||
<CustomText
|
<CustomText
|
||||||
fontStyle='S'
|
fontStyle='S'
|
||||||
style={{ color: colors.secondary }}
|
style={{ color: colors.secondary }}
|
||||||
numberOfLines={4 - headingLines}
|
numberOfLines={4 - (headingLines || 3)}
|
||||||
children={details.filter(d => d).join(' / ')}
|
children={details.filter(d => d).join(' / ')}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import ComponentAccount from '@components/Account'
|
import ComponentAccount from '@components/Account'
|
||||||
import GracefullyImage from '@components/GracefullyImage'
|
import GracefullyImage from '@components/GracefullyImage'
|
||||||
import openLink from '@components/openLink'
|
|
||||||
import CustomText from '@components/Text'
|
import CustomText from '@components/Text'
|
||||||
|
import openLink from '@components/openLink'
|
||||||
import { useNavigation } from '@react-navigation/native'
|
import { useNavigation } from '@react-navigation/native'
|
||||||
import { StackNavigationProp } from '@react-navigation/stack'
|
import { StackNavigationProp } from '@react-navigation/stack'
|
||||||
import { isDevelopment } from '@utils/helpers/checkEnvironment'
|
import { isDevelopment } from '@utils/helpers/checkEnvironment'
|
||||||
@ -9,8 +9,8 @@ import { urlMatcher } from '@utils/helpers/urlMatcher'
|
|||||||
import { TabLocalStackParamList } from '@utils/navigation/navigators'
|
import { TabLocalStackParamList } from '@utils/navigation/navigators'
|
||||||
import { useAccountQuery } from '@utils/queryHooks/account'
|
import { useAccountQuery } from '@utils/queryHooks/account'
|
||||||
import { useStatusQuery } from '@utils/queryHooks/status'
|
import { useStatusQuery } from '@utils/queryHooks/status'
|
||||||
import { StyleConstants } from '@utils/styles/constants'
|
|
||||||
import { useTheme } from '@utils/styles/ThemeManager'
|
import { useTheme } from '@utils/styles/ThemeManager'
|
||||||
|
import { StyleConstants } from '@utils/styles/constants'
|
||||||
import React, { useContext, useEffect, useState } from 'react'
|
import React, { useContext, useEffect, useState } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { Pressable, View } from 'react-native'
|
import { Pressable, View } from 'react-native'
|
||||||
@ -32,7 +32,7 @@ const TimelineCard: React.FC = () => {
|
|||||||
i18n.language.toLowerCase().startsWith('zh-hans')) ||
|
i18n.language.toLowerCase().startsWith('zh-hans')) ||
|
||||||
isDevelopment
|
isDevelopment
|
||||||
) {
|
) {
|
||||||
return <CardNeodb card={status.card} />
|
return <CardNeodb />
|
||||||
}
|
}
|
||||||
|
|
||||||
const { colors } = useTheme()
|
const { colors } = useTheme()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user