2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="tivcixzd" :class="{ done: closed || isVoted }">
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
v-for="(choice, i) in note.poll.choices"
|
|
|
|
:key="i"
|
|
|
|
:class="{ voted: choice.voted }"
|
|
|
|
@click.stop="vote(i)"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="backdrop"
|
|
|
|
:style="{
|
|
|
|
width: `${
|
|
|
|
showResult ? (choice.votes / total) * 100 : 0
|
|
|
|
}%`,
|
|
|
|
}"
|
|
|
|
></div>
|
|
|
|
<span>
|
|
|
|
<template v-if="choice.isVoted"
|
|
|
|
><i class="ph-check ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
<Mfm
|
|
|
|
:text="choice.text"
|
|
|
|
:plain="true"
|
|
|
|
:custom-emojis="note.emojis"
|
|
|
|
/>
|
|
|
|
<span v-if="showResult" class="votes"
|
|
|
|
>({{
|
|
|
|
i18n.t("_poll.votesCount", { n: choice.votes })
|
|
|
|
}})</span
|
|
|
|
>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<p v-if="!readOnly">
|
|
|
|
<span>{{ i18n.t("_poll.totalVotes", { n: total }) }}</span>
|
|
|
|
<span> · </span>
|
|
|
|
<a
|
|
|
|
v-if="!closed && !isVoted"
|
|
|
|
@click.stop="showResult = !showResult"
|
|
|
|
>{{
|
|
|
|
showResult ? i18n.ts._poll.vote : i18n.ts._poll.showResult
|
|
|
|
}}</a
|
|
|
|
>
|
|
|
|
<span v-if="isVoted">{{ i18n.ts._poll.voted }}</span>
|
|
|
|
<span v-else-if="closed">{{ i18n.ts._poll.closed }}</span>
|
|
|
|
<span v-if="remaining > 0"> · {{ timer }}</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-07-20 15:24:26 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { computed, onUnmounted, ref, toRef } from "vue";
|
|
|
|
import * as misskey from "calckey-js";
|
|
|
|
import { sum } from "@/scripts/array";
|
|
|
|
import { pleaseLogin } from "@/scripts/please-login";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import { useInterval } from "@/scripts/use-interval";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-07-20 15:24:26 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
note: misskey.entities.Note;
|
|
|
|
readOnly?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const remaining = ref(-1);
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const total = computed(() => sum(props.note.poll.choices.map((x) => x.votes)));
|
2022-07-20 15:24:26 +02:00
|
|
|
const closed = computed(() => remaining.value === 0);
|
2023-04-08 02:01:42 +02:00
|
|
|
const isVoted = computed(
|
|
|
|
() =>
|
|
|
|
!props.note.poll.multiple &&
|
|
|
|
props.note.poll.choices.some((c) => c.isVoted)
|
|
|
|
);
|
|
|
|
const timer = computed(() =>
|
|
|
|
i18n.t(
|
|
|
|
remaining.value >= 86400
|
|
|
|
? "_poll.remainingDays"
|
|
|
|
: remaining.value >= 3600
|
|
|
|
? "_poll.remainingHours"
|
|
|
|
: remaining.value >= 60
|
|
|
|
? "_poll.remainingMinutes"
|
|
|
|
: "_poll.remainingSeconds",
|
|
|
|
{
|
|
|
|
s: Math.floor(remaining.value % 60),
|
|
|
|
m: Math.floor(remaining.value / 60) % 60,
|
|
|
|
h: Math.floor(remaining.value / 3600) % 24,
|
|
|
|
d: Math.floor(remaining.value / 86400),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
2022-07-20 15:24:26 +02:00
|
|
|
|
|
|
|
const showResult = ref(props.readOnly || isVoted.value);
|
|
|
|
|
|
|
|
// 期限付きアンケート
|
|
|
|
if (props.note.poll.expiresAt) {
|
|
|
|
const tick = () => {
|
2023-04-08 02:01:42 +02:00
|
|
|
remaining.value = Math.floor(
|
|
|
|
Math.max(
|
|
|
|
new Date(props.note.poll.expiresAt).getTime() - Date.now(),
|
|
|
|
0
|
|
|
|
) / 1000
|
|
|
|
);
|
2022-07-20 15:24:26 +02:00
|
|
|
if (remaining.value === 0) {
|
|
|
|
showResult.value = true;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2022-07-20 15:24:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
useInterval(tick, 3000, {
|
|
|
|
immediate: true,
|
|
|
|
afterMounted: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const vote = async (id) => {
|
|
|
|
pleaseLogin();
|
|
|
|
|
|
|
|
if (props.readOnly || closed.value || isVoted.value) return;
|
|
|
|
|
|
|
|
const { canceled } = await os.confirm({
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "question",
|
|
|
|
text: i18n.t("voteConfirm", {
|
|
|
|
choice: props.note.poll.choices[id].text,
|
|
|
|
}),
|
2022-07-20 15:24:26 +02:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
2021-12-03 08:07:50 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
await os.api("notes/polls/vote", {
|
2022-07-20 15:24:26 +02:00
|
|
|
noteId: props.note.id,
|
|
|
|
choice: id,
|
|
|
|
});
|
|
|
|
if (!showResult.value) showResult.value = !props.note.poll.multiple;
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-05-10 10:06:20 +02:00
|
|
|
.tivcixzd {
|
2020-01-29 20:37:25 +01:00
|
|
|
> ul {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
margin: 4px 0;
|
2021-12-03 08:07:50 +01:00
|
|
|
padding: 4px;
|
|
|
|
//border: solid 0.5px var(--divider);
|
|
|
|
background: var(--accentedBg);
|
2020-01-29 20:37:25 +01:00
|
|
|
border-radius: 4px;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
> .backdrop {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--accent);
|
2023-04-08 02:01:42 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
var(--buttonGradateA),
|
|
|
|
var(--buttonGradateB)
|
|
|
|
);
|
2020-01-29 20:37:25 +01:00
|
|
|
transition: width 1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
position: relative;
|
2021-12-03 08:07:50 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: 3px 5px;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: 3px;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin-right: 4px;
|
2021-12-03 08:07:50 +01:00
|
|
|
color: var(--accent);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .votes {
|
|
|
|
margin-left: 4px;
|
2021-12-03 08:07:50 +01:00
|
|
|
opacity: 0.7;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
color: var(--fg);
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
&.done {
|
2020-01-29 20:37:25 +01:00
|
|
|
> ul > li {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|