tailwind_form
is a Rails form builder to easily implement custom, consistent TailwindCSS forms into your Rails app. It provides forms with preset form__group
, form__label
, form__inputGroup
, and form__input
css classes that you customize using Tailwind classes and @apply
tag in SCSS.
This gem is assuming you have TailwindCSS and TailwindCSS Custom Forms already installed on your rails application.
Benefits of tailwind_form
.erb
files.erb
forms much more readableThis gem is largely based on the Bootstrap Form Gem, but implemented for TailwindCSS.
Currently, tailwind_form
is only tested with
Add this line to your application's Gemfile:
gem 'tailwind_form'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install tailwind_form
Our gem depends on having preset form classes set in your local scss directory. A sample implementation is as follows:
.form__group {
@apply my-2;
}
.form__label {
@apply block text-sm font-medium text-gray-700;
}
.form__inputGroup {
@apply mt-1 rounded-md shadow-sm;
}
.form__input {
@apply form-input block w-full;
@screen sm {
@apply text-sm leading-tight;
}
}
Here is an example of the form:
<%= tailwind_form_with(model: @person, local: true) do |form| %>
<%= form.form_group :first_name %>
<%= form.form_group :last_name %>
<%= form.form_group :email, :email_field %>
<div class="actions">
<%= form.submit %>
</div>
<% end %>
Which generates the following form:
<form action="/people" accept-charset="UTF-8" method="post">
<input type="hidden" name="authenticity_token" value="cfuds;" />
<div class="form__group">
<label class="form__label" for="person_first_name">First name</label>
<div class="form__inputGroup">
<input class="form__input" type="text" name="person[first_name]" id="person_first_name" />
</div>
</div>
<div class="form__group">
<label class="form__label" for="person_last_name">Last name</label>
<div class="form__inputGroup">
<input class="form__input" type="text" name="person[last_name]" id="person_last_name" />
</div>
</div>
<div class="form__group">
<label class="form__label" for="person_email">Email</label>
<div class="form__inputGroup">
<input class="form__input" type="email" name="person[email]" id="person_email" />
</div>
</div>
<div class="actions">
<input type="submit" name="commit" value="Create Person" data-disable-with="Create Person" />
</div>
</form>
After checking out the repo, run bin/setup
to install dependencies.
To install this gem onto your local machine, run bundle exec rake install
.
To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
So far, we have implemented the basic form but only have text_field
, text_area
, and email_field
. Next steps are implementing all of the other input types.
Additionally, here are other items on the todo list:
If anyone happens to be seeing/using this gem and can think of other features, please let me know!
Bug reports and pull requests are welcome on GitHub at https://github.com/maxmetcalf12/tailwind_form. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the TailwindForm project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.