Forming New Opinions

— 7 minute read

In this article:

Now that the basic flexion.tech website up and running and we are getting ready to start posting regular articles, I realised it was time to add a subscription option to this site.

The aim here is to not rely on LinkedIn and Twitter to connect to my audiences in the future. These are really valuable platforms, particularly LinkedIn for me, however, it is preferred to connect directly with people who are interested in the content published here, and of course, I want to retain ownership of my content! flexion letter in envelope

There are many options out there for adding forms to websites, but I wanted to ensure flexion.tech is adhering the following:

  • JAMStack principles
  • loosely coupled architecture
  • Avoid external dependencies
  • Progressive Enhancement
  • Accessibility

Accessibility permalink

So is Accessibility a strange place to start? Absolutely not! If you want your site to be accessible, starting here will make your decisions much easier. If you have accessibility as one of your core principles from the start, simple decisions now avoid inaccessibility issues later on.

Lets take a quick example. what if you were building a retail store, and only designed the store for people who were able to walk, you may utilise steps, and your store layout may prevent people who are in wheelchairs from navigating the store easily. What if instead, you designed store with wheelchair access in mind. You avoided use of steps throughout, and you utilised ramps where required. This may even effect your selection of a location to build the store.

Now, your store is a much better experience for people who cannot walk, and also those caring for people who cannot walk. If you think this is not you, think again. We are all born unable to walk, and for the first few years we are pushed around in prams, which are really just small wheelchairs. And at some stage, many of your customers may have restricted mobility, via broken legs, operations, etc.

Imagine if you build a retail store, or had to renovate an existing one after the fact, to enable accessibility? It is going to be a very difficult, and expensive process.

There are many great resources on the web on the topic of accessibility on the web. A11y Project is an amazing resource, and if you are into podcastsa11yrules is a great listen.

One of the key takeaways for me was to start with semantic markup, which basically means, use standard HTML elements, like FORM and INPUT and BUTTON, rather than DIV and SPAN.

I am still new to this, but I will eventually start to test my site with a screen reader, to get a better understanding of how vision impaired people experience the web.

JAMStack permalink

As flexion.tech is already aligned well to JAMStack principles, and I am hosting it on Netlify, the company that coined the term JAMStack! I was able to find a pretty simple solution for getting my semantic HTML processed as Netlify comes with a pretty handy solution here. By adding a few attributes to the HTML markup, I was able to get a form up and running in a very short amount of time. I did experience some issues here on my site though. More details on that later.

For a great article on getting things setup, head over to CSS Tricks and read this article by Matthew Strom.

No localhost support permalink

The Netlify forms do not work when developing locally. I am aware there is a solution to run Netlify locally, but I was not ready to go down this path just yet.

Another feature if Netlify comes to the rescue here, and that is Deploy Previews. Netlify can be configured to deploy all, or selected branches, from your github repo.

Progressive Enhancement permalink

With the use of Netlify Forms, which requires no client-side JavaScript, it was pretty simple to implement progressive enhancement. I am still learning about this, but basically, theway I have approached it is as follows:

  • HTML loaded only (no JavaScript and no CSS). The form should still work, even if it is not that pretty. I am thinking this should also help with accessibility also in some way. Do this first!
  • HTML + CSS. Form should be pretty now, and function correctly. This is the case, but when the form is submitted, it redirects to a thank-you page.
  • HTML + CSS + JavaScript. The form is submitted, but rather than redirecting to thank-you page, the form section is replaced with a thank-you message.

So, build the HTML first, then add CSS, and finally JavaScript, testing each step of the way. I actually think this is a faster way to develop, especially when starting from scratch.

Headaches permalink

In developing this way, I ran into a frustrating issue. When JavaScript was enabled, I was getting an error in the browser, when the form was submitted. My struggles are documented in detail on the Netlify Community page.

I reached out to Andy Bell who thankfully put me in contact with Dave Beesley who had experienced a similar issue. Some changes to the Service-Worker cache settings looks to have resolved this issue! Thanks Twitterverse!

All looking good now. The only concern I have remaining is a false positive test, which I have not been able to reproduce! Basically, someone subscribed, got the success message, but nothing made it to Netlify Forms. This one will be hard to monitor. If you are reading this, please give it a test below. If you do not get an email from me within a few minutes (please check your junk email too), please let me know!

Email Subscription Service permalink

So, with the first half working, the next part was to integrate to an email marketing service. Here, I chose the path of least resistance, and decided to use Zapier, at least for now, to integrate Netlify Form data, with MailChimp.

This was really the easiest part. Zapier is a breeze to setup, and the UI is really intuitive, and quite fun to use. The developers there have managed to build quite a bit of personality into the platform, and most importantly, it just works!

MailChimp on the other hand was not really agreeing with me.

ConvertKit permalink

I recently subscribed to Dan Abramov 's site, and received a series of emails about JavaScript. What I loved about these emails was, they were just emails. I could read them in the email client, and there was not strange formatting, click bait, or that sort of thing. It felt really personal. Plus the content was amazing. Something I really want to emulate with my email marketing.

So, I made the switch... And thanks to the loosely coupled architecture, it was again pretty damn simple. Create an ConvertKit account, update the Zapier ZAP, and boom💣, away we went!

netlify, zapier and convertkit logo

Next Steps permalink

Now with all that setup, it is time for me to focus on creating new content for the site. In future the site will ideally move away from Netlify Forms and Zapier, and build an custom API which takes the form input, and sends it to ConvertKit.

The reasoning behind this is to ensure the best possible user experience. As it stands today, if a user subscribes twice, the workflow exactly the same. Ideally, I want to tell the user if they have already subscribed and give them the option to resend a confirmation email. Testing has been really good on the ConvertKit API's so far, and I am confident I can get the above working while still align to the principles listed above.

Another minor issue is that the form continues to appear after someone has subscribed. I think the only way to resolve this is by using cookies, and I really think adding more complexity to the website just to hide the subscription form is not worth it. That is why the form is at the bottom of the page. I will see what the user feedback is. If anyone has advice on this, please let me know below in the comments section.

And of course, please subscribe for regular updates via email!


Subscribe to the Flexion Newsletter

Subscribe to get our latest content via email.

mail icon with flexion logo

RSS feed also available.

We will not spam you.

Un-subscribe at any time with a single click.

Thank you

Thanks for subscribing.

flexion present icon

We have just sent you an email. Please check your email and spam filter and add us to your contacts to receive updates right to your inbox!