Skip to content

Commit 3a51f22

Browse files
committed
Merge branch 'main' of github.com:avo-hq/avodocs
2 parents 012c41a + bb402bb commit 3a51f22

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

docs/3.0/discreet-information.md

+36
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,23 @@ class Avo::Resources::Post < Avo::BaseResource
2727
end
2828
```
2929

30+
## Display the `id`
31+
32+
To save field space, you can use the discreet information area to display the id of the current record.
33+
34+
Set the option to the `:id` value and the id will be added next to the title.
35+
36+
```ruby
37+
# app/avo/resources/post.rb
38+
class Avo::Resources::Post < Avo::BaseResource
39+
self.discreet_information = :id
40+
41+
# fields and other resource configuration
42+
end
43+
```
44+
45+
You can alternatively use `:id_badge` to display the id as a badge.
46+
3047
## Display the `created_at` and `updated_at` timestamps
3148

3249
The reason why we built this feature was that we wanted a place to display the created and updated at timestamps but didn't want to use up a whole field for it.
@@ -45,6 +62,8 @@ end
4562

4663
If the record doesn't have the `created_at` or `updated_at` attributes, they will be ommited.
4764

65+
You can alternatively use `:timestamps_badge` to display the timestamps as a badge.
66+
4867
## Options
4968

5069
You may fully customize the discreet information item by taking control of different options.
@@ -106,6 +125,23 @@ end
106125

107126
</Option>
108127

128+
<Option name="`as`">
129+
130+
The `as` option specifies the type of representation. Currently, only `:badge` is supported, but additional types may be introduced in the future.
131+
132+
```ruby{7}
133+
# app/avo/resources/post.rb
134+
class Avo::Resources::Post < Avo::BaseResource
135+
self.discreet_information = {
136+
tooltip: -> { "Product is #{record.published_at ? "published" : "draft"}" },
137+
icon: "heroicons/outline/academic-cap",
138+
url: -> { main_app. },
139+
as: :badge
140+
}
141+
end
142+
```
143+
144+
</Option>
109145

110146
## Display multiple pieces of information
111147

0 commit comments

Comments
 (0)