Fix VoteEntry type

This commit is contained in:
Gabriel Tofvesson 2022-10-25 05:18:11 +02:00
parent 393fe3b1d1
commit 5f753849ad

View File

@ -14,7 +14,6 @@ const optionsField = "options";
const activeField = "active"; const activeField = "active";
export type VoteEntry = { export type VoteEntry = {
[usernameField]: string
[voteIndexField]: number [voteIndexField]: number
}; };
@ -35,13 +34,6 @@ export const getVoteSnapshot = async (id: string) =>
.doc(id) .doc(id)
.get() as Promise<DocumentSnapshot<Vote>>; .get() as Promise<DocumentSnapshot<Vote>>;
export const getVote = async (id: string) => (await getVoteSnapshot(id)).data(); export const getVote = async (id: string) => (await getVoteSnapshot(id)).data();
export const getVoteEntry = async (
vote: DocumentReference<Vote>,
username: string
) =>
(await getEntriesCollection(vote)
.where(usernameField, "==", username)
.get() as QuerySnapshot<VoteEntry>).docs[0]?.ref;
export const updateVoteEntry = async ( export const updateVoteEntry = async (
vote: DocumentSnapshot<Vote>, vote: DocumentSnapshot<Vote>,
username: string, username: string,
@ -51,16 +43,6 @@ export const updateVoteEntry = async (
.collection(entriesCollectionName) .collection(entriesCollectionName)
.doc(username) .doc(username)
.set({[voteIndexField]: voteIndex}); .set({[voteIndexField]: voteIndex});
export const makeVoteEntry = async (
vote: DocumentReference<Vote>,
username: string,
voteIndex: number
) =>
vote.collection(entriesCollectionName)
.add({
[usernameField]: username,
[voteIndexField]: voteIndex,
}) as Promise<DocumentReference<VoteEntry>>;
export const getVoteCounts = ( export const getVoteCounts = (
vote: DocumentSnapshot<Vote> vote: DocumentSnapshot<Vote>
@ -79,14 +61,14 @@ export const getVoteCounts = (
export const getEntriesFromSnapshot = async ( export const getEntriesFromSnapshot = async (
snapshot: DocumentSnapshot<Vote>, snapshot: DocumentSnapshot<Vote>,
voteIndex: number voteIndex: number
): Promise<VoteEntry[]> => { ): Promise<{ [usernameField]: string, [voteIndexField]: number }[]> => {
const entryCollection = getEntriesCollection(snapshot.ref); const entryCollection = getEntriesCollection(snapshot.ref);
return (await ( return (await (
Number.isNaN(voteIndex) ? Number.isNaN(voteIndex) ?
entryCollection : entryCollection :
entryCollection.where(voteIndexField, "==", voteIndex) entryCollection.where(voteIndexField, "==", voteIndex)
).get() ).get()
).docs.map((doc) => doc.data() as VoteEntry); ).docs.map((doc) => ({ [usernameField]: doc.id, ...(doc.data() as VoteEntry)}));
}; };
export const createVote = async ( export const createVote = async (