项目作者: drexed

项目描述 :
Ruby Decorator based framework (aka decorator/presenter objects)
高级语言: Ruby
项目地址: git://github.com/drexed/lite-decorator.git
创建时间: 2019-09-01T22:51:48Z
项目社区:https://github.com/drexed/lite-decorator

开源协议:MIT License

下载


Lite::Decorator

Gem Version
Build Status

Lite::Decorator is a library for using the decorator pattern to separate view/presentation
logic from classes.

Installation

Add this line to your application’s Gemfile:

  1. gem 'lite-decorator'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install lite-decorator

Table of Contents

Setup

Defining a decorator is as simple as inheriting the base class and adding your logic.

  1. class UserDecorator < Lite::Decorator::Base
  2. def full_name
  3. first_name + ' ' + last_name
  4. end
  5. end

Usage

To access the decorator you need to pass the object to the decorator class.
PORO’s and ActiveRecord objects can be decorated with this method.

Instance

  1. user = User.first
  2. decorator = UserDecorator.new(user)
  3. decorator.full_name #=> "John Doe"

Collection

  1. users = User.all
  2. collection = UserDecorator.new(users)
  3. collection.map(&:full_name) #=> ["John Doe", "Jane Poe"]

Infered decoration

Including the Inference module will setup a decorator_class and decorator method
that you can access via your PORO and ActiveRecord objects.

  1. class User
  2. include Lite::Decorator::Inference
  3. end
  4. user = User.first
  5. user.decorator.full_name

Decorator delegation

Including the Delegator module will use method missing to delegate decorator methods as
if it lived on the PORO or ActiveRecord object itself. If neither the class instance and the
decorator contain the method, a NoMethodError just like normal.

  1. class User < ActiveRecord::Base
  2. include Lite::Decorator::Delegator
  3. end
  4. user = User.first
  5. user.full_name

Generator

Use rails g decorator NAME will generate the following files:

  1. app/decorators/[NAME]_decorator.rb

If an ApplicationDecorator file in the app/decorators directory is available, the
generator will create file that inherit from ApplicationDecorator if not it will
fallback to Lite::Decorator::Base.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

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/drexed/lite-decorator. 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.

Code of Conduct

Everyone interacting in the Lite::Decorator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.