1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
# Enumerize [](https://github.com/brainspec/enumerize/actions/workflows/ruby.yml)
Enumerated attributes with I18n and ActiveRecord/Mongoid/MongoMapper/Sequel support
## Table of Contents
- [Installation](#installation)
- [Supported Versions](#supported-versions)
- [Usage](#usage)
- [Database support](#database-support)
- [ActiveRecord](#activerecord)
- [Mongoid](#mongoid)
- [MongoMapper](#mongomapper)
- [I18n Support](#i18n-support)
- [I18n Helper Methods](#i18n-helper-methods)
- [Boolean Helper Methods](#boolean-helper-methods)
- [Basic](#basic)
- [Predicate Methods](#predicate-methods)
- [Optimzations and Tips](#optimzations-and-tips)
- [Extendable Module](#extendable-module)
- [Customizing Enumerize Value](#customizing-enumerize-value)
- [ActiveRecord scopes](#activerecord-scopes)
- [Array-like Attributes](#array-like-attributes)
- [Forms](#forms)
- [SimpleForm](#simpleform)
- [Formtastic](#formtastic)
- [Testing](#testing)
- [RSpec](#rspec)
- [Minitest with Shoulda](#minitest-with-shoulda)
- [Other Integrations](#other-integrations)
- [Contributing](#contributing)
## Installation
Add this line to your application's Gemfile:
gem 'enumerize'
And then execute:
$ bundle
Or install it yourself as:
$ gem install enumerize
## Supported Versions
- Ruby 3.0+
- Rails 6.1+
## Usage
Basic:
```ruby
class User
extend Enumerize
enumerize :role, in: [:user, :admin]
end
```
Note that enumerized values are just identifiers so if you want to use multi-word, etc. values then you should use `I18n` feature.
---
## Database support
### ActiveRecord
```ruby
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :status
t.string :role
t.timestamps
end
end
end
class User < ActiveRecord::Base
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], default: lambda { |user| StatusIdentifier.status_for_age(user.age).to_sym }
enumerize :role, in: [:user, :admin], default: :user
end
```
:warning: By default, `enumerize` adds `inclusion` validation to the model. You can skip validations by passing `skip_validations` option. :warning:
```ruby
class User < ActiveRecord::Base
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], skip_validations: lambda { |user| user.new_record? }
enumerize :role, in: [:user, :admin], skip_validations: true
end
```
### Mongoid
```ruby
class User
include Mongoid::Document
extend Enumerize
field :role
enumerize :role, in: [:user, :admin], default: :user
end
```
### MongoMapper
```ruby
class User
include MongoMapper::Document
extend Enumerize
key :role
enumerize :role, in: [:user, :admin], default: :user
end
```
---
## I18n Support
```ruby
en:
enumerize:
user:
status:
student: "Student"
employed: "Employed"
retired: "Retiree"
```
or if you use `status` attribute across several models you can use `defaults` scope:
```ruby
en:
enumerize:
defaults:
status:
student: "Student"
employed: "Employed"
retired: "Retiree"
```
You can also pass `i18n_scope` option to specify scope (or array of scopes) storing the translations.
```ruby
class Person
extend Enumerize
extend ActiveModel::Naming
enumerize :status, in: %w[student employed retired], i18n_scope: "status"
enumerize :roles, in: %w[user admin], i18n_scope: ["user.roles", "roles"]
enumerize :color, in: %w[green blue], i18n_scope: proc { |value| "color" }
end
# localization file
en:
status:
student: "Student"
employed: "Employed"
retired: "Retiree"
user:
roles:
user: "User"
roles:
admin: "Admin"
```
Note that if you want to use I18n feature with plain Ruby object don't forget to extend it with `ActiveModel::Naming`:
```ruby
class User
extend Enumerize
extend ActiveModel::Naming
end
```
### I18n Helper Methods
#### \*\_text / .text
Attribute's I18n text value:
```ruby
@user.status_text # or @user.status.text
```
#### values
List of possible values for an enumerized attribute:
```ruby
User.status.values # or User.enumerized_attributes[:status].values
# => ['student', 'employed', 'retired']
```
#### I18n text values
List of possible I18n text values for an enumerized attribute:
```ruby
User.status.values.collect(&:text)
# => ['Student', 'Employed', 'Retiree']
```
#### Form example
Use it with forms (it supports `:only` and `:except` options):
```erb
<%= form_for @user do |f| %>
<%= f.select :status, User.status.options %>
<% end %>
```
---
## Boolean Helper Methods
### Basic
```ruby
user.status = :student
user.status.student? #=> true
user.status.retired? #=> false
```
### Predicate Methods
```ruby
class User
extend Enumerize
enumerize :status, in: %w(student employed retired), predicates: true
end
user = User.new
user.student? # => false
user.employed? # => false
user.status = :student
user.student? # => true
user.employed? # => false
```
:warning: If `enumerize` is used with Mongoid, it's not recommended to use `"writer"` as a field value since `writer?` is defined by Mongoid. [See more](https://github.com/brainspec/enumerize/issues/235). :warning:
#### Predicate Prefixes
```ruby
class User
extend Enumerize
enumerize :status, in: %w(student employed retired), predicates: { prefix: true }
end
user = User.new
user.status = 'student'
user.status_student? # => true
```
Use `:only` and `:except` options to specify what values create predicate methods for.
---
## Optimzations and Tips
### Extendable Module
To make some attributes shared across different classes it's possible to define them in a separate module and then include it into classes:
```ruby
module RoleEnumerations
extend Enumerize
enumerize :roles, in: %w[user admin]
end
class Buyer
include RoleEnumerations
end
class Seller
include RoleEnumerations
end
```
### Customizing Enumerize Value
It's also possible to store enumerized attribute value using custom values (e.g. integers). You can pass a hash as `:in` option to achieve this:
```ruby
class User < ActiveRecord::Base
extend Enumerize
enumerize :role, in: {:user => 1, :admin => 2}
end
user = User.new
user.role = :user
user.role #=> 'user'
user.role_value #=> 1
User.role.find_value(:user).value #=> 1
User.role.find_value(:admin).value #=> 2
```
### ActiveRecord scopes:
#### Basic
```ruby
class User < ActiveRecord::Base
extend Enumerize
enumerize :role, :in => [:user, :admin], scope: true
enumerize :status, :in => { student: 1, employed: 2, retired: 3 }, scope: :having_status
end
User.with_role(:admin)
# SELECT "users".* FROM "users" WHERE "users"."role" IN ('admin')
User.without_role(:admin)
# SELECT "users".* FROM "users" WHERE "users"."role" NOT IN ('admin')
User.having_status(:employed).with_role(:user, :admin)
# SELECT "users".* FROM "users" WHERE "users"."status" IN (2) AND "users"."role" IN ('user', 'admin')
```
#### Shallow Scopes
Adds named scopes to the class directly.
```ruby
class User < ActiveRecord::Base
extend Enumerize
enumerize :status, :in => [:student, :employed, :retired], scope: :shallow
enumerize :role, :in => { user: 1, admin: 2 }, scope: :shallow
end
User.student
# SELECT "users".* FROM "users" WHERE "users"."status" = 'student'
User.admin
# SELECT "users".* FROM "users" WHERE "users"."role" = 2
```
:warning: It is not possible to define a scope when using the `:multiple` option. :warning:
### Array-like Attributes
Array-like attributes with plain ruby objects:
```ruby
class User
extend Enumerize
enumerize :interests, in: [:music, :sports], multiple: true
end
user = User.new
user.interests << :music
user.interests << :sports
```
and with ActiveRecord:
```ruby
class User < ActiveRecord::Base
extend Enumerize
serialize :interests, Array
enumerize :interests, in: [:music, :sports], multiple: true
end
```
get an array of all text values:
```ruby
@user.interests.texts # shortcut for @user.interests.map(&:text)
```
Also, the reader method can be overridden, referencing the enumerized attribute value using `super`:
```ruby
def status
if current_user.admin?
"Super #{super}"
else
super
end
end
```
---
## Forms
### SimpleForm
If you are using SimpleForm gem you don't need to specify input type (`:select` by default) and collection:
```erb
<%= simple_form_for @user do |f| %>
<%= f.input :status %>
<% end %>
```
and if you want it as radio buttons:
```erb
<%= simple_form_for @user do |f| %>
<%= f.input :status, :as => :radio_buttons %>
<% end %>
```
Please note that Enumerize overwrites the I18n keys of SimpleForm collections. The enumerized keys are used instead of the SimpleForm ones for inputs concerning enumerized attributes. If you don't want this just pass `:collection` option to the `input` call.
### Formtastic
If you are using Formtastic gem you also don't need to specify input type (`:select` by default) and collection:
```erb
<%= semantic_form_for @user do |f| %>
<%= f.input :status %>
<% end %>
```
and if you want it as radio buttons:
```erb
<%= semantic_form_for @user do |f| %>
<%= f.input :status, :as => :radio %>
<% end %>
```
---
## Testing
### RSpec
Also you can use builtin RSpec matcher:
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired]
end
describe User do
it { should enumerize(:status) }
# or with RSpec 3 expect syntax
it { is_expected.to enumerize(:status) }
end
```
#### Qualifiers
##### in
Use `in` to test usage of the `:in` option.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired]
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired) }
end
```
You can test enumerized attribute value using custom values with the `in`
qualifier.
```ruby
class User
extend Enumerize
enumerize :role, in: { user: 0, admin: 1 }
end
describe User do
it { should enumerize(:role).in(user: 0, admin: 1) }
end
```
##### with_default
Use `with_default` to test usage of the `:default` option.
```ruby
class User
extend Enumerize
enumerize :role, in: [:user, :admin], default: :user
end
describe User do
it { should enumerize(:user).in(:user, :admin).with_default(:user) }
end
```
##### with_i18n_scope
Use `with_i18n_scope` to test usage of the `:i18n_scope` option.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], i18n_scope: 'status'
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_i18n_scope('status') }
end
```
##### with_predicates
Use `with_predicates` to test usage of the `:predicates` option.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], predicates: true
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_predicates(true) }
end
```
You can text prefixed predicates with the `with_predicates` qualifiers.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], predicates: { prefix: true }
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_predicates(prefix: true) }
end
```
##### with_scope
Use `with_scope` to test usage of the `:scope` option.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], scope: true
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_scope(true) }
end
```
You can test a custom scope with the `with_scope` qualifiers.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed], scope: :employable
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_scope(scope: :employable) }
end
```
##### with_multiple
Use `with_multiple` to test usage of the `:multiple` option.
```ruby
class User
extend Enumerize
enumerize :status, in: [:student, :employed, :retired], multiple: true
end
describe User do
it { should enumerize(:status).in(:student, :employed, :retired).with_multiple(true) }
end
```
### Minitest with Shoulda
You can use the RSpec matcher with shoulda in your tests by adding two lines in your `test_helper.rb` inside `class ActiveSupport::TestCase` definition:
```ruby
class ActiveSupport::TestCase
ActiveRecord::Migration.check_pending!
require 'enumerize/integrations/rspec'
extend Enumerize::Integrations::RSpec
...
end
```
### Other Integrations
Enumerize integrates with the following automatically:
- [RailsAdmin](https://github.com/sferik/rails_admin/)
---
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
|