All Projects → simple-and-powerful → act-form

simple-and-powerful / act-form

Licence: MIT license
The simple way to create form objects or command/service objects with ActiveModel

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to act-form

Active interaction
💼 Manage application specific business logic.
Stars: ✭ 1,717 (+5820.69%)
Mutual labels:  activemodel, service-object
operators-service
Service Object based on Either Monad
Stars: ✭ 27 (-6.9%)
Mutual labels:  service-object
duck record
Used for creating virtual models like ActiveType or ModelAttribute does.
Stars: ✭ 23 (-20.69%)
Mutual labels:  activemodel
interactor
Simple service objects for PHP
Stars: ✭ 36 (+24.14%)
Mutual labels:  service-object
acfs
API client for services
Stars: ✭ 13 (-55.17%)
Mutual labels:  activemodel
Elasticsearch Rails
Elasticsearch integrations for ActiveModel/Record and Ruby on Rails
Stars: ✭ 2,896 (+9886.21%)
Mutual labels:  activemodel
active model serializers validator
🃏 An extension to ActiveModel::Serializer that validates serializers output against a JSON schema
Stars: ✭ 18 (-37.93%)
Mutual labels:  activemodel
u-observers
Simple and powerful implementation of the observer pattern.
Stars: ✭ 31 (+6.9%)
Mutual labels:  activemodel
activeentity
Active Record without Database
Stars: ✭ 46 (+58.62%)
Mutual labels:  activemodel
activemodel-datastore
Ruby on Rails with Active Model and Google Cloud Datastore. Extracted from Agrimatics Aero.
Stars: ✭ 47 (+62.07%)
Mutual labels:  activemodel
polist
Ruby gem for creating simple service classes.
Stars: ✭ 18 (-37.93%)
Mutual labels:  service-object
polyrhythm
A 3Kb full-stack async effect management toolkit over RxJS. Uses a Pub-Sub paradigm to orchestrate Observables in Node, or the browser (ala Redux Saga). Exports: channel, listen, filter, trigger, after.
Stars: ✭ 23 (-20.69%)
Mutual labels:  command-object

ActForm

ActForm is the gem that provide a simple way to create form object or command object or service object, it only depends on activemodel >= 5 and provides few api.

Usage

API - attribute

class UserForm < ActForm::Base
  attribute :name, required: true
  attribute :age,  type: :integer
  attribute :address
  attribute :nickname, default: 'nick'
  attribute :desc, default: ->{ 'desc' }
end

form = UserForm.new(name: 'su', age: '18', address: 'somewhere')
form.name # => 'su'
form.age # => 18
form.address # => 'somewhere'
form.nickname # => 'nick'
form.desc # => 'desc'
# override default
form.nickname = 'hello'
form.nickname # => 'hello'

# required
form = UserForm.new(age: '18', address: 'somewhere')
form.valid? # => false
form.errors.full_messages # => ["Name require a value"]

Difference between required and validates_presence_of

required will run before the validation, and it will cancel other validations if return false.

form object

API - valid?

Compliant with the active model api

class PhoneForm < ActForm::Base
  attribute :phone
  
  validates_format_of :phone, with: /\A\d{11}\z/i
end

form = PhoneForm.new
form.valid? # => false
form.errors.full_messages # => ["Phone is invalid"]

PhoneForm.new(phone: '12345678901').valid? # => true

API - sync

sync only copy attributes to target, will not trigger validate

target = Class.new do
  attr_accessor :phone
end.new

form = PhoneForm.new(phone: '12345678901')
form.sync(target)
target.phone # => '12345678901'

API - save

sync to the target and call the save method when passed the validation

target = Class.new do
  attr_accessor :phone
  attr_reader :saved
  
  def save
    @saved = true
  end
end.new

form = PhoneForm.new(phone: '12345678901')
form.save(target) # same as form.sync(target) and target.save
target.phone # => '12345678901'
target.saved # => true
form.persisted? # => true

API - init_by

init_by will copy attributes form target to the form, and set default target.

target = Class.new do
  attr_accessor :phone
  attr_reader :saved
  
  def save
    @saved = true
  end
end.new

target.phone = '12345678901'

form = PhoneForm.new
form.init_by(target)
form.phone # => '12345678901'
form.save # => true
target.saved # => true

API - combine

form can combine to other forms

class PhoneForm < ActForm::Base
  attribute :phone
  validates_format_of :phone, with: /\A\d{11}\z/i
end

class EmailForm < ActForm::Base
  attribute :email
  
  validate :check_email
  
  def check_email
    errors.add(:email, :blank) if email.blank?
  end
end

class UserForm < ActForm::Base
  combine PhoneForm, EmailForm
end

class AdminForm < ActForm::Base
  combine PhoneForm
end

user_form = UserForm.new
user_form.valid?
user_form.errors.full_messages # => ["Phone is invalid", "Email can't be blank"]
UserForm.new(phone: '12345678901', email: '1').valid? # => true
admin_form = AdminForm.new
admin_form.valid?
admin_form.errors.full_messages # => ["Phone is invalid"]
AdminForm.new(phone: '12345678901').valid? # => true

command/service object

Command object almost like form object. Command object can't init by new, and it has some new features.

API - perform, run, success?, failure?

command object must respond to perform method.

class CreateUserCommand < ActForm::Command
  combine UserForm
  
  def perform
    User.create(attributes)
  end
end

CreateUserCommand.new 
# => NoMethodError: private method `new' called for CreateUserCommand:Class 

command = CreateUserCommand.run(phone: '12345678901')
if command.success?
  @user = command.result
  # do something...
else
  command.errors.full_messages # => ["Email can't be blank"]
  # do something...
end

Installation

Add this line to your application's Gemfile:

gem 'act_form'

And then execute:

$ bundle

Or install it yourself as:

$ gem install act_form

Development

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.

Contributing

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

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].