From a970de336574e046e63763d93f9a70d5b1e8464b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 9 Jun 2023 15:52:34 +0300 Subject: feat(corp/rih): add UUIDs to records from frontend This UUID stays the same even if a user submits the form multiple times (unless they edit it manually in local storage, of course). Change-Id: I4190fbfeb1027ce8a8d87bc283099539e8722b39 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8733 Reviewed-by: tazjin Tested-by: BuildkiteCI --- corp/rih/frontend/src/main.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'corp/rih/frontend/src') diff --git a/corp/rih/frontend/src/main.rs b/corp/rih/frontend/src/main.rs index 9b7e38422ac2..efccaaece287 100644 --- a/corp/rih/frontend/src/main.rs +++ b/corp/rih/frontend/src/main.rs @@ -10,6 +10,7 @@ use rand::thread_rng; use serde::{Deserialize, Serialize}; use static_markdown::markdown; use std::collections::BTreeSet; +use uuid::Uuid; use wasm_bindgen::closure::Closure; use wasm_bindgen::{JsCast, JsValue}; use web_sys::{HtmlInputElement, HtmlTextAreaElement, KeyboardEvent}; @@ -94,6 +95,9 @@ enum Route { /// primary data structure we want to populate and persist somewhere. #[derive(Clone, Default, Debug, Deserialize, Serialize)] struct Record { + // Record-specific metadata + uuid: Uuid, + // Personal information name: String, email: String, @@ -362,7 +366,11 @@ impl Component for App { fn create(ctx: &Context) -> Self { App { - record: LocalStorage::get("record").unwrap_or_default(), + record: LocalStorage::get("record").unwrap_or_else(|_| { + let mut new_record = Record::default(); + new_record.uuid = Uuid::new_v4(); + new_record + }), citizenship_focus: false, citizenship_query: String::default(), history: BrowserHistory::default(), -- cgit 1.4.1