import { batch, createSelector, createSignal, Index, Show, untrack, type Component, } from "solid-js"; import "./TootPoll.css"; import type { mastodon } from "masto"; import { resolveCustomEmoji } from "../../masto/toot"; import { Button, Checkbox, Divider, List, ListItemButton, ListItemText, Radio, } from "@suid/material"; import { formatDistance, isBefore } from "date-fns"; import { useTimeSource } from "~platform/timesrc"; import { useDateFnLocale } from "~platform/i18n"; import TootPollDialog from "./TootPollDialog"; import { ANIM_CURVE_STD } from "~material/theme"; import { useTootEnv } from "../RegularToot"; type TootPollProps = { value: mastodon.v1.Poll; status: mastodon.v1.Status; }; const TootPoll: Component = (props) => { let list!: HTMLUListElement; const { vote } = useTootEnv(); const now = useTimeSource(); const dateFnLocale = useDateFnLocale(); const [mustShowResult, setMustShowResult] = createSignal(); const [showVoteDialog, setShowVoteDialog] = createSignal(false); const [initialVote, setInitialVote] = createSignal(0); const poll = () => props.value; const isShowResult = () => { const n = mustShowResult(); if (typeof n !== "undefined") { return n; } return poll().expired || poll().voted; }; const isOwnVote = createSelector( () => poll().ownVotes, (idx: number, votes) => votes?.includes(idx) || false, ); const openVote = (i: number, event: Event) => { event.stopPropagation(); if (poll().expired || poll().voted) { return; } batch(() => { setInitialVote(i); setShowVoteDialog(true); }); }; const animateAndSetMustShow = (event: Event) => { event.stopPropagation(); list.animate( { opacity: [0.5, 0, 0.5], }, { duration: 220, easing: ANIM_CURVE_STD, }, ); setMustShowResult((x) => { if (typeof x === "undefined") { return !untrack(isShowResult); } else { return undefined; } }); }; return (
{poll().votesCount} votes in total Poll is ended
{(option, index) => { return ( <> {option().votesCount} votes } > ); }}
{isBefore(now(), poll().expiresAt!) ? "Expire in" : "Expired"}
setShowVoteDialog(false)} initialVotes={[initialVote()]} />
); }; export default TootPoll;