0.3.4 • Published 12 days ago

@frontierdotbe/formstrap v0.3.4

Weekly downloads
-
License
MIT
Repository
github
Last release
12 days ago

Formstrap

An extensive Bootstrap form library to power your Ruby On Rails application.

Installation

Add this line to your application's gemfile ./Gemfile

gem 'formstrap'

Afterwards, run:

bundle

Usage

Getting started

Use the Formstrap helpers formstrap_form_for or formstrap_form_with instead of the Ruby on Rails helpers form_for or form_with.

An example:

<%= formstrap_form_for(@user) do |f| %>
  <%= f.email :email, required: true %>
  <%= f.password :password, required: true %>
  <%= f.checkbox :remember_me, required: true %>
  <%= f.submit "Log In" %>
<% end %>

As you might have noticed, Formstrap uses different named form helpers than Ruby on Rails.

If the original Rails helper needs to be accessed, it can be accessed by:

<%= formstrap_for_for(@user) do |f| %>
  <%= f.text :name, formstrap: false %>
  <%= f.text_field :name %>
<% end %>

An overview of all the Formstrap / Ruby on Rails form helpers:

TypeFormstrap helpersRuby on Rails helpers
AssociationassociationN/A
Checkboxcheckboxcheckbox formstrap: false or check_box
Colorcolorcolor formstrap: false or color_field
Datedatedate formstrap: false or date_field
Date rangedate_rangeN/A
Datetimedatetimedatetime formstrap: false or datetime_field
Datetime rangedatetime_rangeN/A
Emailemailemail formstrap: false or email_field
Filefilefile formstrap: false or file_field
Flatpickr *flatpickrN/A
Flatpickr range *flatpickr_rangeN/A
Hiddenhiddenhidden formstrap: false or hidden_field
MediamediaN/A
Numbernumbernumber formstrap: false or number_field
Passwordpasswordpassword formstrap: false or password_field
Redactor *redactorN/A
SearchsearchN/A
Selectselectselect formstrap: false
SwitchswitchN/A
Texttexttext formstrap: false or text_field
Textareatextareatextarea formstrap: false or text_area
URLurlurl formstrap: false or url_field
WYSIWYG *wysiwygN/A
Repeaterrepeater_forAdds advanced features to fields_for

* Formstrap provides the implementation of these 3rd party libraries, however it is up to the user to provide the correct assets.

As you might have noticed, Formstrap provides more helpers than what is standard in Ruby on Rails, e.g. Media, Date range, Redactor ...

Altering Formstrap helpers

Because Formstrap uses html and Ruby on Rails helpers behind the scenes to render its helpers, editing the Formstrap helpers is straightforward.

As Formstrap is an engine, its views are within the gem. In order to have a copy of the views inside your application, run:

rails generate formstrap:views

This will create a directory ./views/formstrap, in which all the views (and its helpers) are copied in and can thus be inspected / altered. Because Formstrap is an engine, the application's local files take precedence over the engine's files.

Note that on new releases, one can once more run:

rails generate formstrap:views

To get new or updated versions of the helpers. This will override the files that are already present (and which might contain your personal adjustments).

Extending Formstrap helpers

Extending Formstrap helpers is straightforward.

Add your custom Formstrap (e.g. map) helper into the map ./views/formstrap. Formstrap makes it possible to access this helper is by its filename.

<%# custom Formstrap helper file: ./views/formstrap/_map.html.erb %>

<%= formstrap_form_for(@user) do |f| %>
    <%= f.map :address %>
<% end %>

Development

For development purposes it's helpful to have both the test project and Formstrap located in the same directory.

In Gemfile

gem "formstrap", path: "../formstrap"

In package.json

{
  "dependencies": {
    "formstrap": "link:../formstrap"
  }
}

To see frontend changes update live in development run

# Watches changes and builds them on-the-fly
yarn dev

Javascript

When adding new dependencies, make sure you add them to the package.json file as well as the importmap.rb file.

Testing

Run tests with

rake test

Or to run a single file

rake test TEST=path/to/test/file.rb

If you want to test a specific feature in a staging environment without releasing the gem, you can refer to the remote repo in your Gemfile and package.json.

In Gemfile

gem 'formstrap', git: 'git@github.com:frontierdotbe/formstrap.git', branch: 'feature/test'

In package.json

{
  "dependencies": {
    "formstrap": "ssh://git@github.com:frontierdotbe/formstrap.git#feature/test"
  }
}

Releasing

After integration a new feature of fixing a bug, first commit and push your changes.

Update the gem

# First bundle if new runtime dependencies were added
$ bundle

# Update the version number, push commits and tag the release
$ gem bump -v {patch,minor,major,...} --push --tag

# Release to Rubygems and create a Github release tag
$ gem release

Update the node package

# Manually update the version number in package.json
$ yarn build 
$ npm publish --access public

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/frontierdotbe/formstrap. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Formstrap project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.