From 5f753849ad1acbea6694c9e7784338e547e6230f Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 25 Oct 2022 05:18:11 +0200 Subject: [PATCH] Fix VoteEntry type --- functions/src/types/vote.ts | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/functions/src/types/vote.ts b/functions/src/types/vote.ts index 68b4de8..7a84bde 100644 --- a/functions/src/types/vote.ts +++ b/functions/src/types/vote.ts @@ -14,7 +14,6 @@ const optionsField = "options"; const activeField = "active"; export type VoteEntry = { - [usernameField]: string [voteIndexField]: number }; @@ -35,13 +34,6 @@ export const getVoteSnapshot = async (id: string) => .doc(id) .get() as Promise>; export const getVote = async (id: string) => (await getVoteSnapshot(id)).data(); -export const getVoteEntry = async ( - vote: DocumentReference, - username: string -) => - (await getEntriesCollection(vote) - .where(usernameField, "==", username) - .get() as QuerySnapshot).docs[0]?.ref; export const updateVoteEntry = async ( vote: DocumentSnapshot, username: string, @@ -51,16 +43,6 @@ export const updateVoteEntry = async ( .collection(entriesCollectionName) .doc(username) .set({[voteIndexField]: voteIndex}); -export const makeVoteEntry = async ( - vote: DocumentReference, - username: string, - voteIndex: number -) => - vote.collection(entriesCollectionName) - .add({ - [usernameField]: username, - [voteIndexField]: voteIndex, - }) as Promise>; export const getVoteCounts = ( vote: DocumentSnapshot @@ -79,14 +61,14 @@ export const getVoteCounts = ( export const getEntriesFromSnapshot = async ( snapshot: DocumentSnapshot, voteIndex: number -): Promise => { +): Promise<{ [usernameField]: string, [voteIndexField]: number }[]> => { const entryCollection = getEntriesCollection(snapshot.ref); return (await ( Number.isNaN(voteIndex) ? entryCollection : entryCollection.where(voteIndexField, "==", voteIndex) ).get() - ).docs.map((doc) => doc.data() as VoteEntry); + ).docs.map((doc) => ({ [usernameField]: doc.id, ...(doc.data() as VoteEntry)})); }; export const createVote = async (