import { gql, useMutation } from '@apollo/client' import Button from 'react-bootstrap/Button' import { fixedDecimal, numWithUnits } from '../lib/format' import { timeLeft } from '../lib/time' import { useMe } from './me' import styles from './poll.module.css' import Check from '../svgs/checkbox-circle-fill.svg' import { signIn } from 'next-auth/react' import ActionTooltip from './action-tooltip' import { useShowModal } from './modal' import { POLL_COST } from '../lib/constants' import { InvoiceModal } from './invoice' export default function Poll ({ item }) { const me = useMe() const showModal = useShowModal() const [pollVote] = useMutation( gql` mutation pollVote($id: ID!, $hash: String, $hmac: String) { pollVote(id: $id, hash: $hash, hmac: $hmac) }`, { update (cache, { data: { pollVote } }) { cache.modify({ id: `Item:${item.id}`, fields: { poll (existingPoll) { const poll = { ...existingPoll } poll.meVoted = true poll.count += 1 return poll } } }) cache.modify({ id: `PollOption:${pollVote}`, fields: { count (existingCount) { return existingCount + 1 }, meVoted () { return true } } }) } } ) const PollButton = ({ v }) => { return ( ) } const expiresIn = timeLeft(new Date(+new Date(item.createdAt) + 864e5)) const mine = item.user.id === me?.id return (
{item.poll.options.map(v => expiresIn && !item.poll.meVoted && !mine ? : )}
{numWithUnits(item.poll.count, { unitSingular: 'vote', unitPlural: 'votes' })} \ {expiresIn ? `${expiresIn} left` : 'poll ended'}
) } function PollResult ({ v, progress }) { return (
{v.option}{v.meVoted && } {progress}%
) }