dwyl/app

Frictionless Adoption: Anonymous Timers?

nelsonic opened this issue ยท 7 comments

minimise-friction-to-addoption

To _minimise adoption friction, when a person first arrives on the site/app we should allow them to try starting timer(s) _without registering or logging in. This means they are anonymous to us. ๐Ÿ˜ฎ

To make this work we need to assign them a JWT they can use to interact with the app anonymously.
if they decide to register their email address (and thus keep their timer(s) securely saved) their timer(s) will be owned by the email address they register with.

further reading: http://www.forentrepreneurs.com/time-to-wow/

Steps:

  1. The boot client, check for existing Token (person has previously used the app) > goto step 4
  2. Person is _new_ so hit /anon route and get a Temporary JWT
  3. /anon generates JWT with _random_ GUID as person's value.
  4. (Person can) create timers

We are going to use localStorage on the client/browser to store the (session) token.
This means that the person using the timer(s) anonymously can return to their timer (after accidentally closing a browser window) but will not be able to see their timers if they clear history.

This is working. Need to put it in practice to iron out any kinks.

@nelsonic On a non-technical note, should we allow anonymous (unregistered people) to have more than one timer (i.e. stop a timer and start a second, third or fourth one, etc) before they have to register to save their timers?

That question should not be directed at "just" me...
I think the app should have basic functionality for people who chose not to register.
and then we can do something like:
save-this-to-your-inbox
which we are discussing in: #80

But letting anonymous people start multiple timers it really a question for discussion and deserves its own issue... @iteles want to open an issue dedicated to discussing it? ๐Ÿ˜‰

@iteles what else do we need to do to close this? have you tried the latest alpha itteration which allows people to start/stop as many timers as they want and then transfer these timers to their account once they register...? what else...?

Anonymous timers work ๐Ÿ‘

We just need to test #91 and we can wrap on iteration 1 of anonymous people functionality I reckon.