♊️ GemiNews 🗞️
🏡
📰 Articles
🏷️ Tags
🧠 Queries
📈 Graphs
☁️ Stats
💁🏻 Assistant
Demo 1: Embeddings + Recommendation
Demo 2: Bella RAGa
Demo 3: NewRetriever
Demo 4: Assistant function calling
Editing article
Title
Summary
Content
<p>I’ve been working recently on fleshing out <a href="https://tapped.kevinrandles.com/">the app I built</a> for my final project at Flatiron School, and thought I’d share some of what I learned over the last few days while adding validation to the forms that make up a significant part of this app. In order to build the initial version of this app in a relatively short time, I used the <a href="https://react.semantic-ui.com/introduction">React version of Semantic UI</a>, which provided me with clean, responsive styling without having to put too much time into rolling my own CSS. Unlike the original jQuery-based version of Semantic UI, which has <a href="https://semantic-ui.com/behaviors/form.html">built-in form validation support</a>, Semantic UI React requires you to write your own validation methods — thankfully, this isn’t particularly difficult.</p><p>After a little bit of Googling, I found <a href="https://stackoverflow.com/a/46290968">this great answer</a> at Stack Overflow that got me pointed in the right direction, and got started with the part of my app that every user will encounter first, the new user signup form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/837/1*OMy8fvaKb1Ls20wAjlqTzA.png" /></figure><p>My first step was to add a disabled prop to the submit button, which checks to make sure that all of the required fields (in this case, all of them) are filled out with some value, valid or not, before enabling the button — most of the validation will be carried out when a user attempts to submit the form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/343/1*C73YQYY8PM-sYRGgierd7g.png" /></figure><p>This simply checks the part of the form’s state that corresponds to each field, and returns a boolean value of false, thereby enabling the button, when all of the fields are filled.</p><p>Next, I added a bunch of new key-value pairs to the forms initial state, all set to false, to keep track of any errors that come up when attempting to submit the form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/354/1*vjdiHpZ_uqqT5aOg60-Exw.png" /></figure><p>Then, on each individual form field, I added an error prop, checking for the errors which apply to that field, which will put the field into an error state if the entered data is invalid.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/592/1*NYaUSGRYR6qP3QOuatuj2w.png" /></figure><p>All pretty straightforward so far, right? But where the real work gets done is in the method that handles submitting the form to the back end. This method is about 80 lines long right now, so I’ll spare you the wall of code and just cover the basics of what I had to add to the existing method.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/403/1*bSsETckmhetcV8afYLR0tg.png" /></figure><p>First, I declared an “error” variable, set to false, that will track the global error state of the form — if any errors are found this will be set to true, and prevent submission of invalid data to the back end (I’ll show the code that manages this down below).</p><p>Then, for each possible error I want to check for, I wrote an if/else statement. The examples above check for the presence of a value in the email field (this should, ideally, also be checking to make sure that it’s in a valid email format-TODO: find a regExp that does that), and that the entered password is at least 8 characters long. I’ve got another half dozen or so of these, checking that the password and confirm password fields match, that the entered ZIP code is a 5-digit number, etc., etc.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/373/1*SRu3SgkpUGbQadfRvKriHQ.png" /></figure><p>After all of the validation checks are complete, we check to see if “error” has been set to true. If it has, we set formError in our state to true, then “return” to end execution of the method — the return here is critical, as it prevents the rest of the handleSubmit method from executing, and submitting what we already know to be invalid data to the back end. If no errors were found, we set formError to false, and continue with creating the new user account.</p><p>We’re almost finished here, but there’s one potential case that could, even if everything looks correct, prevent our new user from being created, that we can’t account for until we actually attempt to create the new user— what if the user already has an account?</p><p>I won’t go fully into how I implemented checking for this, as it involved adding some code to my reducer and my API call for creating a user (and the way I implemented it feels a little hack-y, if I’m being completely honest-but it does the job for now). Essentially, if the server’s response to the POST request is an error, instead of the expected JSON object, (and because I’ve implemented robust validation to make sure no potentially invalid data will be submitted) the action returned by our reducer will not contain a payload, so I check for this like so:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/341/1*ntx4r6ruqZ8b1csybasr6Q.png" /></figure><p>I have one final bit of code to show here, which deals with providing detailed feedback to the user about what they’ve done wrong.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/561/1*3kUxoeQze8JwQ3vrGtZAog.png" /></figure><p>I’ve added a ternary statement here which renders an error message on the form if createUserError is true.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/837/1*rWNB3UDTysUJm3ZqR18MnQ.png" /></figure><p>And so, there you have it…relatively comprehensive validation on a Semantic UI React form. This still needs some work, in order to provide more detailed feedback on other error cases, but I need to refactor my form layout to comfortably fit multiple error messages on screen (TODO: one more thing on a really long list), and it isn’t really comprehensive without server side validation as well, which I wrote about implementing in Rails <a href="https://medium.com/@krandles/active-record-validations-890519b94fe7">here</a> a few months back.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a057957f1dd6" width="1" height="1" alt="">
Author
Link
Published date
Image url
Feed url
Guid
Hidden blurb
--- !ruby/object:Feedjira::Parser::RSSEntry published: 2018-07-09 03:44:42.000000000 Z carlessian_info: news_filer_version: 2 newspaper: Kevin Randles on Medium macro_region: Technology entry_id: !ruby/object:Feedjira::Parser::GloballyUniqueIdentifier is_perma_link: 'false' guid: https://medium.com/p/a057957f1dd6 title: Validating Forms in Semantic UI React categories: - javascript - semantic-ui - react content: '<p>I’ve been working recently on fleshing out <a href="https://tapped.kevinrandles.com/">the app I built</a> for my final project at Flatiron School, and thought I’d share some of what I learned over the last few days while adding validation to the forms that make up a significant part of this app. In order to build the initial version of this app in a relatively short time, I used the <a href="https://react.semantic-ui.com/introduction">React version of Semantic UI</a>, which provided me with clean, responsive styling without having to put too much time into rolling my own CSS. Unlike the original jQuery-based version of Semantic UI, which has <a href="https://semantic-ui.com/behaviors/form.html">built-in form validation support</a>, Semantic UI React requires you to write your own validation methods — thankfully, this isn’t particularly difficult.</p><p>After a little bit of Googling, I found <a href="https://stackoverflow.com/a/46290968">this great answer</a> at Stack Overflow that got me pointed in the right direction, and got started with the part of my app that every user will encounter first, the new user signup form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/837/1*OMy8fvaKb1Ls20wAjlqTzA.png" /></figure><p>My first step was to add a disabled prop to the submit button, which checks to make sure that all of the required fields (in this case, all of them) are filled out with some value, valid or not, before enabling the button — most of the validation will be carried out when a user attempts to submit the form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/343/1*C73YQYY8PM-sYRGgierd7g.png" /></figure><p>This simply checks the part of the form’s state that corresponds to each field, and returns a boolean value of false, thereby enabling the button, when all of the fields are filled.</p><p>Next, I added a bunch of new key-value pairs to the forms initial state, all set to false, to keep track of any errors that come up when attempting to submit the form.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/354/1*vjdiHpZ_uqqT5aOg60-Exw.png" /></figure><p>Then, on each individual form field, I added an error prop, checking for the errors which apply to that field, which will put the field into an error state if the entered data is invalid.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/592/1*NYaUSGRYR6qP3QOuatuj2w.png" /></figure><p>All pretty straightforward so far, right? But where the real work gets done is in the method that handles submitting the form to the back end. This method is about 80 lines long right now, so I’ll spare you the wall of code and just cover the basics of what I had to add to the existing method.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/403/1*bSsETckmhetcV8afYLR0tg.png" /></figure><p>First, I declared an “error” variable, set to false, that will track the global error state of the form — if any errors are found this will be set to true, and prevent submission of invalid data to the back end (I’ll show the code that manages this down below).</p><p>Then, for each possible error I want to check for, I wrote an if/else statement. The examples above check for the presence of a value in the email field (this should, ideally, also be checking to make sure that it’s in a valid email format-TODO: find a regExp that does that), and that the entered password is at least 8 characters long. I’ve got another half dozen or so of these, checking that the password and confirm password fields match, that the entered ZIP code is a 5-digit number, etc., etc.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/373/1*SRu3SgkpUGbQadfRvKriHQ.png" /></figure><p>After all of the validation checks are complete, we check to see if “error” has been set to true. If it has, we set formError in our state to true, then “return” to end execution of the method — the return here is critical, as it prevents the rest of the handleSubmit method from executing, and submitting what we already know to be invalid data to the back end. If no errors were found, we set formError to false, and continue with creating the new user account.</p><p>We’re almost finished here, but there’s one potential case that could, even if everything looks correct, prevent our new user from being created, that we can’t account for until we actually attempt to create the new user— what if the user already has an account?</p><p>I won’t go fully into how I implemented checking for this, as it involved adding some code to my reducer and my API call for creating a user (and the way I implemented it feels a little hack-y, if I’m being completely honest-but it does the job for now). Essentially, if the server’s response to the POST request is an error, instead of the expected JSON object, (and because I’ve implemented robust validation to make sure no potentially invalid data will be submitted) the action returned by our reducer will not contain a payload, so I check for this like so:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/341/1*ntx4r6ruqZ8b1csybasr6Q.png" /></figure><p>I have one final bit of code to show here, which deals with providing detailed feedback to the user about what they’ve done wrong.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/561/1*3kUxoeQze8JwQ3vrGtZAog.png" /></figure><p>I’ve added a ternary statement here which renders an error message on the form if createUserError is true.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/837/1*rWNB3UDTysUJm3ZqR18MnQ.png" /></figure><p>And so, there you have it…relatively comprehensive validation on a Semantic UI React form. This still needs some work, in order to provide more detailed feedback on other error cases, but I need to refactor my form layout to comfortably fit multiple error messages on screen (TODO: one more thing on a really long list), and it isn’t really comprehensive without server side validation as well, which I wrote about implementing in Rails <a href="https://medium.com/@krandles/active-record-validations-890519b94fe7">here</a> a few months back.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a057957f1dd6" width="1" height="1" alt="">' rss_fields: - title - url - author - categories - published - entry_id - content url: https://medium.com/@krandles/validating-forms-in-semantic-ui-react-a057957f1dd6?source=rss-d451d084d34a------2 author: Kevin Randles
Language
Active
Ricc internal notes
Imported via /Users/ricc/git/gemini-news-crawler/webapp/db/seeds.d/import-feedjira.rb on 2024-04-03 16:31:18 +0200. Content is EMPTY here. Entried: title,url,author,categories,published,entry_id,content. TODO add Newspaper: filename = /Users/ricc/git/gemini-news-crawler/webapp/db/seeds.d/../../../crawler/out/feedjira/Technology/Kevin Randles on Medium/2018-07-09-Validating_Forms_in_Semantic_UI_React-v2.yaml
Ricc source
Show this article
Back to articles