2022-11-29 20:29:02 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Poll } from 'masto'
|
|
|
|
|
|
|
|
const { poll: _poll } = defineProps<{
|
|
|
|
poll: Poll
|
|
|
|
}>()
|
|
|
|
const poll = reactive({ ..._poll })
|
|
|
|
|
|
|
|
function toPercentage(num: number) {
|
|
|
|
const percentage = 100 * num
|
|
|
|
return `${percentage.toFixed(1).replace(/\.?0+$/, '')}%`
|
|
|
|
}
|
2022-12-02 02:18:36 +00:00
|
|
|
const timeAgoOptions = useTimeAgoOptions()
|
|
|
|
const expiredTimeAgo = useTimeAgo(poll.expiresAt!, timeAgoOptions)
|
2022-11-29 20:29:02 +00:00
|
|
|
|
|
|
|
const masto = useMasto()
|
|
|
|
async function vote(e: Event) {
|
|
|
|
const formData = new FormData(e.target as HTMLFormElement)
|
|
|
|
const choices = formData.getAll('choices') as string[]
|
|
|
|
await masto.poll.vote(poll.id, { choices })
|
|
|
|
|
|
|
|
// Update the poll optimistically
|
|
|
|
for (const [index, option] of poll.options.entries()) {
|
|
|
|
if (choices.includes(String(index)))
|
|
|
|
option.votesCount = (option.votesCount || 0) + 1
|
|
|
|
}
|
|
|
|
poll.voted = true
|
|
|
|
poll.votesCount++
|
|
|
|
poll.votersCount = (poll.votersCount || 0) + 1
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex flex-col w-full items-stretch gap-3>
|
2022-11-30 06:35:12 +00:00
|
|
|
<form v-if="!poll.voted && !poll.expired" flex flex-col gap-4 accent-primary @click.stop="noop" @submit.prevent="vote">
|
2022-11-29 20:29:02 +00:00
|
|
|
<label v-for="(option, index) of poll.options" :key="index" flex items-center gap-2 px-2>
|
|
|
|
<input name="choices" :value="index" :type="poll.multiple ? 'checkbox' : 'radio'">
|
|
|
|
{{ option.title }}
|
|
|
|
</label>
|
|
|
|
<button btn-solid>
|
|
|
|
Vote
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<template v-else>
|
|
|
|
<div v-for="(option, index) of poll.options" :key="index" flex justify-between p-1 relative :style="{ '--bar-width': toPercentage((option.votesCount || 0) / poll.votesCount) }">
|
2022-11-30 11:24:20 +00:00
|
|
|
<div absolute top-0 left-0 bottom-0 bg-primary-active rounded-l-sm rounded-r-lg h-full class="w-[var(--bar-width)]" />
|
|
|
|
<div z-1 flex items-center gap-1 px-1 text-inverted>
|
|
|
|
{{ option.title }}
|
|
|
|
|
|
|
|
<div v-if="poll.voted && poll.ownVotes?.includes(index)" i-ri:checkbox-circle-line />
|
2022-11-29 20:29:02 +00:00
|
|
|
</div>
|
|
|
|
<div z-1>
|
|
|
|
{{ poll.votesCount ? toPercentage((option.votesCount || 0) / (poll.votesCount)) : '0%' }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<div text-sm>
|
|
|
|
{{ poll.votersCount }} votes · {{ poll.expired ? 'finished' : 'ends' }} {{ expiredTimeAgo }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|