mirror of https://github.com/tooot-app/app
Poll is re-rendered
This commit is contained in:
parent
7d7c907fa3
commit
d59fabd47f
|
@ -43,7 +43,7 @@ const TimelineDefault: React.FC<Props> = ({ item, queryKey }) => {
|
|||
<TimelineContent status={actualStatus} />
|
||||
)}
|
||||
{actualStatus.poll && (
|
||||
<TimelinePoll queryKey={queryKey} poll={actualStatus.poll} />
|
||||
<TimelinePoll queryKey={queryKey} status={actualStatus} />
|
||||
)}
|
||||
{actualStatus.media_attachments.length > 0 && (
|
||||
<TimelineAttachment status={actualStatus} width={contentWidth} />
|
||||
|
@ -90,10 +90,14 @@ const styles = StyleSheet.create({
|
|||
|
||||
export default React.memo(TimelineDefault, (prev, next) => {
|
||||
let skipUpdate = true
|
||||
skipUpdate = prev.item.id === next.item.id
|
||||
skipUpdate = prev.item.replies_count === next.item.replies_count
|
||||
skipUpdate = prev.item.favourited === next.item.favourited
|
||||
skipUpdate = prev.item.reblogged === next.item.reblogged
|
||||
skipUpdate = prev.item.bookmarked === next.item.bookmarked
|
||||
skipUpdate =
|
||||
prev.item.id === next.item.id &&
|
||||
prev.item.replies_count === next.item.replies_count &&
|
||||
prev.item.favourited === next.item.favourited &&
|
||||
prev.item.reblogged === next.item.reblogged &&
|
||||
prev.item.bookmarked === next.item.bookmarked &&
|
||||
prev.item.poll?.voted === next.item.poll?.voted &&
|
||||
prev.item.reblog?.poll?.voted === next.item.reblog?.poll?.voted
|
||||
|
||||
return skipUpdate
|
||||
})
|
||||
|
|
|
@ -25,7 +25,6 @@ const fireMutation = async ({
|
|||
formData.append('choices[]', option)
|
||||
}
|
||||
})
|
||||
console.log(formData)
|
||||
|
||||
const res = await client({
|
||||
method: 'post',
|
||||
|
@ -49,12 +48,10 @@ const fireMutation = async ({
|
|||
|
||||
export interface Props {
|
||||
queryKey: App.QueryKey
|
||||
poll: Mastodon.Poll
|
||||
status: Mastodon.Status
|
||||
}
|
||||
|
||||
const TimelinePoll: React.FC<Props> = ({ queryKey, poll }) => {
|
||||
console.log('render poll ' + Math.random())
|
||||
console.log(poll)
|
||||
const TimelinePoll: React.FC<Props> = ({ queryKey, status: { poll } }) => {
|
||||
const { theme } = useTheme()
|
||||
|
||||
const queryCache = useQueryCache()
|
||||
|
@ -68,25 +65,28 @@ const TimelinePoll: React.FC<Props> = ({ queryKey, poll }) => {
|
|||
toots: paging.toots.map((toot: any) => {
|
||||
if (toot.poll?.id === id) {
|
||||
const poll = toot.poll
|
||||
console.log('update votes')
|
||||
console.log(
|
||||
Object.keys(options)
|
||||
.filter(option => options[option])
|
||||
.map(option => parseInt(option))
|
||||
const myVotes = Object.keys(options).filter(
|
||||
// @ts-ignore
|
||||
option => options[option]
|
||||
)
|
||||
console.log(toot.poll)
|
||||
const myVotesInt = myVotes.map(option => parseInt(option))
|
||||
|
||||
toot.poll = {
|
||||
...toot.poll,
|
||||
votes_count: poll.votes_count
|
||||
? poll.votes_count + myVotes.length
|
||||
: myVotes.length,
|
||||
voters_count: poll.voters_count ? poll.voters_count + 1 : 1,
|
||||
voted: true,
|
||||
own_votes: [
|
||||
Object.keys(options)
|
||||
// @ts-ignore
|
||||
.filter(option => options[option])
|
||||
.map(option => parseInt(option))
|
||||
]
|
||||
own_votes: myVotesInt,
|
||||
// @ts-ignore
|
||||
options: poll.options.map((o, i) => {
|
||||
if (myVotesInt.includes(i)) {
|
||||
o.votes_count = o.votes_count + 1
|
||||
}
|
||||
return o
|
||||
})
|
||||
}
|
||||
console.log(toot.poll)
|
||||
}
|
||||
return toot
|
||||
}),
|
||||
|
@ -217,7 +217,6 @@ const TimelinePoll: React.FC<Props> = ({ queryKey, poll }) => {
|
|||
<Button
|
||||
onPress={() => {
|
||||
if (poll.multiple) {
|
||||
console.log(multipleOptions)
|
||||
mutateAction({ id: poll.id, options: multipleOptions })
|
||||
} else {
|
||||
mutateAction({ id: poll.id, options: singleOptions })
|
||||
|
@ -299,4 +298,7 @@ const styles = StyleSheet.create({
|
|||
}
|
||||
})
|
||||
|
||||
export default TimelinePoll
|
||||
export default React.memo(
|
||||
TimelinePoll,
|
||||
(prev, next) => prev.status.poll.voted === next.status.poll.voted
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue