|
| 1 | +# How to Use Custom IDs with Avo |
| 2 | +Avo seamlessly integrates custom IDs, including popular solutions like FriendlyID, prefixed IDs, or Hashids. Below, you'll find examples illustrating each approach for effortless customization within your application. |
| 3 | + |
| 4 | +## Example with FriendlyID |
| 5 | + |
| 6 | +FriendlyID is a gem that allows you to generate pretty URLs and unique IDs. To integrate FriendlyID with Avo, follow these steps: |
| 7 | + |
| 8 | +**Install [friendly_id](https://github.com/norman/friendly_id) gem by adding this line to your application's Gemfile:** |
| 9 | + |
| 10 | +```ruby |
| 11 | +gem "friendly_id", "~> 5.5.0" |
| 12 | +``` |
| 13 | + |
| 14 | +And then execute: |
| 15 | + |
| 16 | +```bash |
| 17 | +bundle install |
| 18 | +``` |
| 19 | + |
| 20 | +**Generate and run the migration to add a slug column to your model:** |
| 21 | + |
| 22 | +```bash |
| 23 | +rails generate friendly_id |
| 24 | +rails db:migrate |
| 25 | +``` |
| 26 | + |
| 27 | +**Add `friendly_id` to your model:** |
| 28 | + |
| 29 | +```ruby{3,6} |
| 30 | +# app/models/post.rb |
| 31 | +class Post < ApplicationRecord |
| 32 | + extend FriendlyId |
| 33 | +
|
| 34 | + # This post model have a name column |
| 35 | + friendly_id :name, use: :finders |
| 36 | +end |
| 37 | +
|
| 38 | +``` |
| 39 | + |
| 40 | +With this setup, you can use `Post.find("bar")` to find records by their custom IDs. |
| 41 | + |
| 42 | +:::info |
| 43 | +For a version of [friendly_id](https://github.com/norman/friendly_id) smaller then 5.0 you can use [custom query scopes](/3.0/customization.md#custom-query-scopes) |
| 44 | +::: |
| 45 | +View [friendly_id](https://github.com/norman/friendly_id) setup in action: [View Demo](https://main.avodemo.com/avo/resources/users) |
| 46 | + |
| 47 | +Check out the code: [Code on GitHub](https://github.com/avo-hq/main.avodemo.com/blob/main/app/models/user.rb) |
| 48 | + |
| 49 | +## Example with Prefixed IDs |
| 50 | + |
| 51 | +Prefixed IDs involve adding a custom prefix to your IDs. |
| 52 | + |
| 53 | +**Install [prefixed_ids](https://github.com/excid3/prefixed_ids) gem by adding this line to your application's Gemfile:** |
| 54 | + |
| 55 | +```ruby |
| 56 | +gem "prefixed_ids" |
| 57 | +``` |
| 58 | + |
| 59 | +And then execute: |
| 60 | + |
| 61 | +```bash |
| 62 | +bundle install |
| 63 | +``` |
| 64 | + |
| 65 | +**Basic Usage** |
| 66 | + |
| 67 | +Add `has_prefix_id :my_prefix` to your models to autogenerate prefixed IDs: |
| 68 | +```ruby{3} |
| 69 | +# app/models/post.rb |
| 70 | +class Post < ApplicationRecord |
| 71 | + has_prefix_id :post |
| 72 | +end |
| 73 | +``` |
| 74 | + |
| 75 | +View [prefixed_ids](https://github.com/excid3/prefixed_ids) setup in action: [View Demo](https://main.avodemo.com/avo/resources/teams) |
| 76 | + |
| 77 | +Check out the code: [Code on GitHub](https://github.com/avo-hq/main.avodemo.com/blob/main/app/models/team.rb) |
| 78 | + |
| 79 | +## Example with Hashids |
| 80 | + |
| 81 | +Hashid Rials is a gem that generates short, unique, and cryptographically secure IDs. |
| 82 | + |
| 83 | +**Install [hashid-rails](https://github.com/jcypret/hashid-rails) gem by adding this line to your application's Gemfile:** |
| 84 | + |
| 85 | +```ruby |
| 86 | +gem "hashid-rails", "~> 1.0" |
| 87 | +``` |
| 88 | + |
| 89 | +And then execute: |
| 90 | + |
| 91 | +```bash |
| 92 | +bundle install |
| 93 | +``` |
| 94 | + |
| 95 | +**Include Hashid Rails in the ActiveRecord model you'd like to enable hashids:** |
| 96 | + |
| 97 | +```ruby{3} |
| 98 | +# app/models/post.rb |
| 99 | +class Post < ApplicationRecord |
| 100 | + include Hashid::Rails |
| 101 | +end |
| 102 | +``` |
| 103 | + |
| 104 | +View [hashid-rails](https://github.com/jcypret/hashid-rails) setup in action: [View Demo](https://main.avodemo.com/avo/resources/spouses) |
| 105 | + |
| 106 | +Check out the code: [Code on GitHub](https://github.com/avo-hq/main.avodemo.com/blob/main/app/models/spouse.rb) |
0 commit comments