From b07c995784db3eb00211db533cf7ae30a72c9e8c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 22 Oct 2022 00:46:32 +0200 Subject: [PATCH] Fix eslint errors --- functions/src/index.ts | 62 ++++++++++++++++++++++++++++-------------- 1 file changed, 42 insertions(+), 20 deletions(-) diff --git a/functions/src/index.ts b/functions/src/index.ts index 4f6095d..7dec240 100644 --- a/functions/src/index.ts +++ b/functions/src/index.ts @@ -1,7 +1,12 @@ import * as functions from "firebase-functions"; -import { initializeApp } from "firebase-admin/app"; -import { DocumentReference, DocumentSnapshot, getFirestore, QuerySnapshot } from "firebase-admin/firestore"; -import express, { Request, Response } from "express"; +import {initializeApp} from "firebase-admin/app"; +import { + DocumentReference, + DocumentSnapshot, + getFirestore, + QuerySnapshot, +} from "firebase-admin/firestore"; +import express, {Request, Response} from "express"; type VoteEntry = { username: string @@ -20,11 +25,20 @@ const db = getFirestore(); const app = express(); const getVote = async (id: string) => - db.collection("votes").doc(id).get() as Promise> + db.collection("votes") + .doc(id) + .get() as Promise>; const getVoteEntry = async (vote: DocumentReference, username: string) => - vote.collection("entries").where("username", "==", username).get() as Promise> -const makeVoteEntry = async (vote: DocumentReference, username: string, voteIndex: number) => - vote.collection("entries").add({ username, voteIndex }) as Promise> + vote.collection("entries") + .where("username", "==", username) + .get() as Promise>; +const makeVoteEntry = async ( + vote: DocumentReference, + username: string, + voteIndex: number +) => + vote.collection("entries") + .add({username, voteIndex}) as Promise>; app.post("/", async (req: Request, res: Response) => { const voteId = req.body.voteId as string; @@ -43,24 +57,28 @@ app.post("/", async (req: Request, res: Response) => { const vote = await getVote(voteId); if (!vote.exists) { - res.status(404).json({ error: "Vote not found" }); + res.status(404).json({error: "Vote not found"}); return; } - if (Number.isNaN(voteIndex) || voteIndex < 0 || voteIndex >= vote.data()!.options) { - res.status(400).json({ error: "Invalid vote index" }); + if ( + Number.isNaN(voteIndex) || + voteIndex < 0 || + voteIndex >= (vote.data()?.options ?? 0) + ) { + res.status(400).json({error: "Invalid vote index"}); return; } const entry = await getVoteEntry(vote.ref, voter); if (entry.empty) { await makeVoteEntry(vote.ref, voter, voteIndex); - res.json({ success: true }); + res.json({success: true}); return; } - entry.docs[0].ref.update({ voteIndex }); - res.json({ success: true }); + entry.docs[0].ref.update({voteIndex}); + res.json({success: true}); }); app.get("/", async (req: Request, res: Response) => { @@ -72,7 +90,7 @@ app.get("/", async (req: Request, res: Response) => { const vote = await getVote(voteId); if (!vote.exists) { - res.status(404).json({ error: "Vote not found" }); + res.status(404).json({error: "Vote not found"}); return; } @@ -88,12 +106,12 @@ app.get("/entries", async (req: Request, res: Response) => { const vote = await getVote(voteId); if (!vote.exists) { - res.status(404).json({ error: "Vote not found" }); + res.status(404).json({error: "Vote not found"}); return; } const entries = await vote.ref.collection("entries").get(); - res.json(entries.docs.map(d => d.data())); + res.json(entries.docs.map((d) => d.data())); }); app.get("/count", async (req: Request, res: Response) => { @@ -106,19 +124,23 @@ app.get("/count", async (req: Request, res: Response) => { const vote = await getVote(voteId); if (!vote.exists) { - res.status(404).json({ error: "Vote not found" }); + res.status(404).json({error: "Vote not found"}); return; } const collect = new Array>>(); - for (let i = 0; i < vote.data()!.options; i++) { - collect.push(vote.ref.collection("entries").where("voteIndex", "==", i).get() as Promise>) + for (let i = 0; i < (vote.data()?.options ?? 0); i++) { + collect.push(vote.ref + .collection("entries") + .where("voteIndex", "==", i) + .get() as Promise> + ); } res.json((await Promise.all(collect)).map((query) => query.size)); }); -export const vote = functions.https.onRequest(app) +export const vote = functions.https.onRequest(app); // // Start writing Firebase Functions // // https://firebase.google.com/docs/functions/typescript