mirror of
https://github.com/tooot-app/app
synced 2025-04-03 13:11:25 +02:00
316 lines
8.2 KiB
TypeScript
316 lines
8.2 KiB
TypeScript
import { Feather } from '@expo/vector-icons'
|
|
import React, { useCallback, useMemo, useState } from 'react'
|
|
import { Pressable, StyleSheet, Text, View } from 'react-native'
|
|
import { useMutation, useQueryClient } from 'react-query'
|
|
import client from '@api/client'
|
|
import Button from '@components/Button'
|
|
import { toast } from '@components/toast'
|
|
import relativeTime from '@utils/relativeTime'
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
|
|
import Emojis from './Emojis'
|
|
import { TimelineData } from '../../Timeline'
|
|
import { findIndex } from 'lodash'
|
|
|
|
const fireMutation = async ({
|
|
id,
|
|
options
|
|
}: {
|
|
id: string
|
|
options?: boolean[]
|
|
}) => {
|
|
const formData = new FormData()
|
|
options &&
|
|
options.forEach((o, i) => {
|
|
if (options[i]) {
|
|
formData.append('choices[]', i.toString())
|
|
}
|
|
})
|
|
|
|
const res = await client({
|
|
method: options ? 'post' : 'get',
|
|
instance: 'local',
|
|
url: options ? `polls/${id}/votes` : `polls/${id}`,
|
|
...(options && { body: formData })
|
|
})
|
|
|
|
if (res.body.id === id) {
|
|
return Promise.resolve(res.body as Mastodon.Poll)
|
|
} else {
|
|
toast({
|
|
type: 'error',
|
|
content: '投票失败,请重试',
|
|
autoHide: false
|
|
})
|
|
return Promise.reject()
|
|
}
|
|
}
|
|
|
|
export interface Props {
|
|
queryKey: QueryKey.Timeline
|
|
poll: NonNullable<Mastodon.Status['poll']>
|
|
reblog: boolean
|
|
sameAccount: boolean
|
|
}
|
|
|
|
const TimelinePoll: React.FC<Props> = ({
|
|
queryKey,
|
|
poll,
|
|
reblog,
|
|
sameAccount
|
|
}) => {
|
|
const { theme } = useTheme()
|
|
const queryClient = useQueryClient()
|
|
|
|
const [allOptions, setAllOptions] = useState(
|
|
new Array(poll.options.length).fill(false)
|
|
)
|
|
|
|
const mutation = useMutation(fireMutation, {
|
|
onSuccess: (data, { id }) => {
|
|
queryClient.cancelQueries(queryKey)
|
|
|
|
queryClient.setQueryData<TimelineData>(queryKey, old => {
|
|
let tootIndex = -1
|
|
const pageIndex = findIndex(old?.pages, page => {
|
|
const tempIndex = findIndex(page.toots, [
|
|
reblog ? 'reblog.poll.id' : 'poll.id',
|
|
id
|
|
])
|
|
if (tempIndex >= 0) {
|
|
tootIndex = tempIndex
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
})
|
|
|
|
if (pageIndex >= 0 && tootIndex >= 0) {
|
|
if (reblog) {
|
|
old!.pages[pageIndex].toots[tootIndex].reblog!.poll = data
|
|
} else {
|
|
old!.pages[pageIndex].toots[tootIndex].poll = data
|
|
}
|
|
}
|
|
return old
|
|
})
|
|
}
|
|
})
|
|
|
|
const pollButton = () => {
|
|
if (!poll.expired) {
|
|
if (!sameAccount && !poll.voted) {
|
|
return (
|
|
<View style={styles.button}>
|
|
<Button
|
|
onPress={() =>
|
|
mutation.mutate({ id: poll.id, options: allOptions })
|
|
}
|
|
type='text'
|
|
content='投票'
|
|
loading={mutation.isLoading}
|
|
disabled={allOptions.filter(o => o !== false).length === 0}
|
|
/>
|
|
</View>
|
|
)
|
|
} else {
|
|
return (
|
|
<View style={styles.button}>
|
|
<Button
|
|
onPress={() => mutation.mutate({ id: poll.id })}
|
|
{...(mutation.isLoading ? { icon: 'loader' } : { text: '刷新' })}
|
|
type='text'
|
|
content='刷新'
|
|
loading={mutation.isLoading}
|
|
/>
|
|
</View>
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
const pollExpiration = useMemo(() => {
|
|
if (poll.expired) {
|
|
return (
|
|
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
|
投票已结束
|
|
</Text>
|
|
)
|
|
} else {
|
|
return (
|
|
<Text style={[styles.expiration, { color: theme.secondary }]}>
|
|
{relativeTime(poll.expires_at)}截止
|
|
</Text>
|
|
)
|
|
}
|
|
}, [])
|
|
|
|
const isSelected = useCallback(
|
|
(index: number): any =>
|
|
allOptions[index]
|
|
? `check-${poll.multiple ? 'square' : 'circle'}`
|
|
: `${poll.multiple ? 'square' : 'circle'}`,
|
|
[allOptions]
|
|
)
|
|
|
|
return (
|
|
<View style={styles.base}>
|
|
{poll.options.map((option, index) =>
|
|
poll.voted ? (
|
|
<View key={index} style={styles.poll}>
|
|
<View style={styles.optionSelected}>
|
|
<Feather
|
|
style={styles.voted}
|
|
name={
|
|
`${poll.own_votes!.includes(index) ? 'check-' : ''}${
|
|
poll.multiple ? 'square' : 'circle'
|
|
}` as any
|
|
}
|
|
size={StyleConstants.Font.Size.M}
|
|
color={
|
|
poll.own_votes!.includes(index)
|
|
? theme.primary
|
|
: theme.disabled
|
|
}
|
|
/>
|
|
<View style={styles.contentSelected}>
|
|
<Emojis
|
|
content={option.title}
|
|
emojis={poll.emojis}
|
|
size={StyleConstants.Font.Size.M}
|
|
numberOfLines={2}
|
|
/>
|
|
</View>
|
|
<Text style={[styles.percentage, { color: theme.primary }]}>
|
|
{poll.votes_count
|
|
? Math.round((option.votes_count / poll.voters_count) * 100)
|
|
: 0}
|
|
%
|
|
</Text>
|
|
</View>
|
|
|
|
<View
|
|
style={[
|
|
styles.background,
|
|
{
|
|
width: `${Math.round(
|
|
(option.votes_count / poll.voters_count) * 100
|
|
)}%`,
|
|
backgroundColor: theme.disabled
|
|
}
|
|
]}
|
|
/>
|
|
</View>
|
|
) : (
|
|
<View key={index} style={styles.poll}>
|
|
<Pressable
|
|
style={[styles.optionUnselected]}
|
|
onPress={() => {
|
|
if (poll.multiple) {
|
|
setAllOptions(
|
|
allOptions.map((o, i) => (i === index ? !o : o))
|
|
)
|
|
} else {
|
|
setAllOptions(
|
|
allOptions.map((o, i) =>
|
|
i === index ? !allOptions[index] : allOptions[index]
|
|
)
|
|
)
|
|
}
|
|
}}
|
|
>
|
|
<Feather
|
|
style={styles.votedNot}
|
|
name={isSelected(index)}
|
|
size={StyleConstants.Font.Size.L}
|
|
color={theme.primary}
|
|
/>
|
|
<View style={styles.contentUnselected}>
|
|
<Emojis
|
|
content={option.title}
|
|
emojis={poll.emojis}
|
|
size={StyleConstants.Font.Size.M}
|
|
numberOfLines={2}
|
|
/>
|
|
</View>
|
|
</Pressable>
|
|
</View>
|
|
)
|
|
)}
|
|
<View style={styles.meta}>
|
|
{pollButton()}
|
|
<Text style={[styles.votes, { color: theme.secondary }]}>
|
|
已投{poll.voters_count || 0}人{' • '}
|
|
</Text>
|
|
{pollExpiration}
|
|
</View>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
marginTop: StyleConstants.Spacing.M
|
|
},
|
|
poll: {
|
|
flex: 1,
|
|
minHeight: StyleConstants.Font.LineHeight.M * 2,
|
|
paddingVertical: StyleConstants.Spacing.XS
|
|
},
|
|
optionSelected: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
paddingRight: StyleConstants.Spacing.M
|
|
},
|
|
optionUnselected: {
|
|
flex: 1,
|
|
flexDirection: 'row'
|
|
},
|
|
contentSelected: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingRight: StyleConstants.Spacing.S
|
|
},
|
|
contentUnselected: {
|
|
flexShrink: 1
|
|
},
|
|
voted: {
|
|
marginRight: StyleConstants.Spacing.S
|
|
},
|
|
votedNot: {
|
|
paddingRight: StyleConstants.Spacing.S
|
|
},
|
|
percentage: {
|
|
fontSize: StyleConstants.Font.Size.M
|
|
},
|
|
background: {
|
|
height: StyleConstants.Spacing.XS,
|
|
minWidth: 2,
|
|
borderTopRightRadius: 10,
|
|
borderBottomRightRadius: 10,
|
|
marginTop: StyleConstants.Spacing.XS,
|
|
marginBottom: StyleConstants.Spacing.S
|
|
},
|
|
meta: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
marginTop: StyleConstants.Spacing.XS
|
|
},
|
|
button: {
|
|
marginRight: StyleConstants.Spacing.M
|
|
},
|
|
votes: {
|
|
fontSize: StyleConstants.Font.Size.S
|
|
},
|
|
expiration: {
|
|
fontSize: StyleConstants.Font.Size.S
|
|
}
|
|
})
|
|
|
|
export default TimelinePoll
|