ic-query 0.2.12

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
//! Module: sns::report::live::convert::proposals::ballot
//!
//! Responsibility: convert SNS governance proposal ballots.
//! Does not own: governance transport, proposal row assembly, or rendering.
//! Boundary: maps live ballot tuples into report ballot rows.

use super::{labels::ballot_vote_text, timestamp::optional_timestamp_text};
use crate::sns::report::{SnsProposalBallotRow, live::types::SnsGovernanceBallot};

/// Convert one SNS governance ballot tuple into a report ballot row.
pub(super) fn sns_proposal_ballot_row(
    (neuron_id, ballot): (String, SnsGovernanceBallot),
) -> SnsProposalBallotRow {
    SnsProposalBallotRow {
        neuron_id,
        vote: ballot.vote,
        vote_text: ballot_vote_text(ballot.vote),
        cast_timestamp_seconds: ballot.cast_timestamp_seconds,
        cast_at: optional_timestamp_text(ballot.cast_timestamp_seconds),
        voting_power: ballot.voting_power,
    }
}