terrorista
terrorista

Reputation: 227

create wizard for new users

I have a ruby on rails application, can you indicate me some gems or ways to create a wizard for new users (or if a user didnt use some feature, some button will appear). My objective is when a user creates an account or if hes not using a feature, some help would appear telling him how to do stuff, for example, after registration, tell the user that he can create a new project, and show how to do it (with the user doing it at the same time), and after that show how to create users ... moving between pages and changing the database records. the user can also skip not mandatory steps. Is there any good gem for this?

Thanks.

Upvotes: 0

Views: 219

Answers (1)

Anthony E
Anthony E

Reputation: 11235

You may find the "wicked" gem to be useful: https://github.com/schneems/wicked.

If you're looking for a more custom approach, you can implement a basic state machine to represent the states of the wizard. Each form in the wizard would advance the state of that user so they could resume where they left off.

Upvotes: 1

Related Questions