From 6efe8805289585586be94825e3824ceb0923802b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 22 Oct 2022 07:11:00 +0200 Subject: [PATCH] Integrate backend with UI --- functions/src/index.ts | 3 +- functions/src/route/admin.ts | 8 ++- functions/src/route/voting.ts | 14 +++++ functions/src/types/vote.ts | 20 ++++-- public/controls.html | 15 ++++- public/index.html | 114 +++++++++++++++++++++++++++++++++- 6 files changed, 165 insertions(+), 9 deletions(-) diff --git a/functions/src/index.ts b/functions/src/index.ts index 371a2e2..15b9dc5 100644 --- a/functions/src/index.ts +++ b/functions/src/index.ts @@ -3,8 +3,9 @@ import {initializeApp} from "firebase-admin/app"; initializeApp(); -import votingRoute from "./route/voting"; +import votingRoute, {activeVoteState} from "./route/voting"; import adminRoute from "./route/admin"; export const vote = functions.https.onRequest(votingRoute); export const admin = functions.https.onRequest(adminRoute); +export const activeVote = activeVoteState; diff --git a/functions/src/route/admin.ts b/functions/src/route/admin.ts index 6bc0f72..bdd0bd5 100644 --- a/functions/src/route/admin.ts +++ b/functions/src/route/admin.ts @@ -9,6 +9,7 @@ app.use(cors()); app.post("/create", async (req: Request, res: Response) => { const prompt = req.body.prompt as string | undefined; const options = req.body.options as Array | undefined; + const description = req.body.description as string | undefined; if (!prompt) { res.status(400).json({error: "Missing prompt"}); @@ -20,7 +21,12 @@ app.post("/create", async (req: Request, res: Response) => { return; } - res.json({id: await createVote(prompt, options)}); + if (!description) { + res.status(400).json({error: "Missing description"}); + return; + } + + res.json({id: await createVote(prompt, description, options)}); }); app.put("/setActive", async (req: Request, res: Response) => { diff --git a/functions/src/route/voting.ts b/functions/src/route/voting.ts index 2437193..044ae70 100644 --- a/functions/src/route/voting.ts +++ b/functions/src/route/voting.ts @@ -1,3 +1,4 @@ +import * as functions from "firebase-functions"; import express, {Request, Response} from "express"; import { getEntriesFromSnapshot, @@ -122,4 +123,17 @@ app.get("/active", async (req: Request, res: Response) => { res.json({id: (await getActiveVote())?.id}); }); +export const activeVoteState = functions.https.onCall(async () => { + const vote = await getActiveVote(); + if (!vote) return undefined; + + const voteData = await vote.get(); + return { + ...voteData.data(), + voteId: vote.id, + votes: (await Promise.all(getVoteCounts(voteData))) + .map((query) => query.size), + }; +}); + export default app; diff --git a/functions/src/types/vote.ts b/functions/src/types/vote.ts index 1827003..b2cf027 100644 --- a/functions/src/types/vote.ts +++ b/functions/src/types/vote.ts @@ -20,6 +20,7 @@ export type VoteEntry = { export type Vote = { prompt: string + description: string [optionsField]: Array [activeField]?: boolean }; @@ -44,14 +45,17 @@ export const updateVoteEntry = async ( vote: DocumentReference, voteIndex: number ) => - vote.update({voteIndex}); + vote.update({[voteIndexField]: voteIndex}); export const makeVoteEntry = async ( vote: DocumentReference, username: string, voteIndex: number ) => vote.collection(entriesCollectionName) - .add({username, voteIndex}) as Promise>; + .add({ + [usernameField]: username, + [voteIndexField]: voteIndex, + }) as Promise>; export const getVoteCounts = ( vote: DocumentSnapshot @@ -80,8 +84,16 @@ export const getEntriesFromSnapshot = async ( ).docs.map((doc) => doc.data() as VoteEntry); }; -export const createVote = async (prompt: string, options: Array) => { - const vote = await votesCollection.add({prompt, options}); +export const createVote = async ( + prompt: string, + description: string, + options: Array +) => { + const vote = await votesCollection.add({ + prompt, + description, + [optionsField]: options, + }); return vote.id; }; diff --git a/public/controls.html b/public/controls.html index 7c49559..6aac947 100644 --- a/public/controls.html +++ b/public/controls.html @@ -99,6 +99,12 @@ +
+ + + + +
@@ -129,7 +135,7 @@