mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-07-04 16:38:55 +08:00
优化评论着位置显示文案
This commit is contained in:
parent
1194d37a2d
commit
8ea63a2784
@ -89,6 +89,7 @@
|
||||
"list_update_success": "{name} updated successfully",
|
||||
"load_failed": "Ah, loading failed 😥",
|
||||
"loading": "Loading...",
|
||||
"location": "From {location}",
|
||||
"lyric__load_error": "Failed to get lyrics",
|
||||
"move_to": "Move to...",
|
||||
"name": "Name: {name}",
|
||||
|
@ -89,6 +89,7 @@
|
||||
"list_update_success": "{name} 更新成功",
|
||||
"load_failed": "啊 加载失败了 😥",
|
||||
"loading": "加载中...",
|
||||
"location": "来自{location}",
|
||||
"lyric__load_error": "歌词获取失败",
|
||||
"move_to": "移动到...",
|
||||
"name": "歌曲名:{name}",
|
||||
|
@ -9,6 +9,7 @@ import Text from '@/components/common/Text'
|
||||
import { scaleSizeH, scaleSizeW } from '@/utils/pixelRatio'
|
||||
import ScaledImage from '@/components/common/ScaledImage'
|
||||
import { useLayout } from '@/utils/hooks'
|
||||
import { useI18n } from '@/lang'
|
||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||
const defaultUser = require('@/resources/images/defaultUser.jpg')
|
||||
|
||||
@ -23,6 +24,7 @@ const CommentFloor = memo(({ comment, isLast }: {
|
||||
const theme = useTheme()
|
||||
const [isAvatarError, setIsAvatarError] = useState(false)
|
||||
const { onLayout, width } = useLayout()
|
||||
const t = useI18n()
|
||||
|
||||
const handleAvatarError = useCallback(() => {
|
||||
setIsAvatarError(true)
|
||||
@ -74,7 +76,7 @@ const CommentFloor = memo(({ comment, isLast }: {
|
||||
</Text>
|
||||
<View style={styles.metaInfo}>
|
||||
<Text numberOfLines={1} size={12} color={theme['c-450']}>{comment.timeStr}</Text>
|
||||
{ comment.location ? <Text numberOfLines={1} style={styles.location} size={12} color={theme['c-450']}>{comment.location}</Text> : null }
|
||||
{ comment.location ? <Text numberOfLines={1} style={styles.location} size={12} color={theme['c-450']}>{t('location', { location: comment.location })}</Text> : null }
|
||||
</View>
|
||||
</View>
|
||||
{likedCount}
|
||||
|
@ -244,7 +244,7 @@ export default {
|
||||
userName: item.Nick ?? '',
|
||||
images: item.Pic ? [item.Pic] : [],
|
||||
avatar: item.Avatar,
|
||||
location: item.Location ? ('来自' + item.Location) : '',
|
||||
location: item.Location ? item.Location : '',
|
||||
userId: item.EncryptUin,
|
||||
likedCount: item.PraiseNum,
|
||||
reply: item.SubComments
|
||||
|
Loading…
x
Reference in New Issue
Block a user