fix: update cache with poll votes (#598)

pull/602/head
Daniel Roe 2022-12-28 12:49:47 +01:00 zatwierdzone przez GitHub
rodzic 15fee71c14
commit 75047e878b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 8 dodań i 9 usunięć

Wyświetl plik

@ -34,10 +34,7 @@ const isFiltered = $computed(() => filterPhrase && (context && context !== 'deta
<p>{{ status.spoilerText || `${$t('status.filter_hidden_phrase')}: ${filterPhrase}` }}</p>
</template>
<StatusBody :status="status" :with-action="!isDetails" :class="isDetails ? 'text-xl' : ''" />
<StatusPoll
v-if="status.poll"
:poll="status.poll"
/>
<StatusPoll v-if="status.poll" :status="status" />
<StatusMedia
v-if="status.mediaAttachments?.length"
:status="status"

Wyświetl plik

@ -1,10 +1,10 @@
<script setup lang="ts">
import type { Poll } from 'masto'
import type { Status } from 'masto'
const { poll: _poll } = defineProps<{
poll: Poll
const { status } = defineProps<{
status: Status
}>()
const poll = reactive({ ..._poll })
const poll = reactive({ ...status.poll! })
function toPercentage(num: number) {
const percentage = 100 * num
@ -19,7 +19,6 @@ 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()) {
@ -29,6 +28,9 @@ async function vote(e: Event) {
poll.voted = true
poll.votesCount++
poll.votersCount = (poll.votersCount || 0) + 1
cacheStatus({ ...status, poll }, undefined, true)
await masto.poll.vote(poll.id, { choices })
}
</script>