effective_roles 2.5.0 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5863e0c337f0188827f98f64036bfc3750a722756922e1bba2e78e560a3f3c86
4
- data.tar.gz: 856fdc2b51de291936a16b593a538d77b419b9fb1a18cdbb0c4f432cabf884e7
3
+ metadata.gz: 43ff04eb475329ae2001305352cb8131942fd2f598a5273868720aeede0ca553
4
+ data.tar.gz: 100d76c0b230bd759fbc222714de32f443e42e5ef21dc00495bd7e4c1a4ad684
5
5
  SHA512:
6
- metadata.gz: f3a4376eefee3efc1479fe86480b0b80196b45e57a173db955d3bb8d2ea32566a9b541be765de98005a6d0c96c40aaba16b59ef5e66d9e852a315298f59d377f
7
- data.tar.gz: c0f838015be8b4ea637557be7abcebbd5cc0ab5220a1e776fc2a4520c12971fd7d92a9dfbbb0ad556c5a53989345676984c5a1dcdc4a488c0d08a2e9cac99bfa
6
+ metadata.gz: 54b6b93166130c94368c9d39505d24181d66ec7b8c63dd5c0a2488672ef9fbab7e00658558c45e99d49d58cfdef6bc4c7f5918129af4a90cd5ce7666348025fd
7
+ data.tar.gz: 90bb9ab5d3b7d86efbfafdeef445d8a94bae9352ad199173b6e3a96d551a4d77a3fffb13a7e858aa35c836583ea0d0852b462af226cc31e66af252137a8f1ee3
@@ -1,4 +1,21 @@
1
1
  module EffectiveRolesHelper
2
+
3
+ def roles_badges(obj)
4
+ roles = Array(obj.try(:roles) || obj) - [nil, '']
5
+
6
+ if (unexpected = roles - EffectiveRoles.roles).present?
7
+ raise "Unexpected value: #{unexpected}. Expected an acts_as_roleable object or an array of roles."
8
+ end
9
+
10
+ badges = roles.map do |role|
11
+ color = EffectiveRoles.color(role)
12
+
13
+ content_tag(:span, role, class: ("badge badge-#{color}" if color.present?), title: role.to_s.titleize)
14
+ end
15
+
16
+ badges.join(' ').html_safe
17
+ end
18
+
2
19
  def effective_roles_summary(obj, options = {}) # User or a Post, any acts_as_roleable
3
20
  raise 'expected an acts_as_roleable object' unless obj.respond_to?(:roles)
4
21
 
@@ -23,11 +23,17 @@ EffectiveRoles.setup do |config|
23
23
  # Or just keep it simple, and use this Hash syntax of permissions for every resource
24
24
  #
25
25
  config.role_descriptions = {
26
- :superadmin => 'full access to everything. Can manage users and all website content.',
27
- :admin => 'full access to website content. Cannot manage users.',
28
- :member => 'cannot access admin area. Can see all content in members-only sections of the website.'
26
+ superadmin: 'full access to everything. Can manage users and all website content.',
27
+ admin: 'full access to website content. Cannot manage users.',
28
+ member: 'cannot access admin area. Can see all content in members-only sections of the website.'
29
29
  }
30
30
 
31
+ # config.role_colors
32
+ # ========================
33
+ # Assign a bootstrap color to a role. Optional.
34
+ # Used by the roles_badges() helper to display this role as a badge
35
+ # config.role_colors = { superadmin: :primary, admin: :secondary, member: :light }
36
+
31
37
  # config.assignable_roles
32
38
  # Which roles can be assigned by whom
33
39
  # =======================
@@ -1,3 +1,3 @@
1
1
  module EffectiveRoles
2
- VERSION = '2.5.0'.freeze
2
+ VERSION = '2.6.0'.freeze
3
3
  end
@@ -5,7 +5,7 @@ require 'effective_roles/version'
5
5
  module EffectiveRoles
6
6
 
7
7
  def self.config_keys
8
- [:roles, :role_descriptions, :assignable_roles, :layout]
8
+ [:roles, :role_descriptions, :role_colors, :assignable_roles, :layout]
9
9
  end
10
10
 
11
11
  include EffectiveGem
@@ -39,6 +39,11 @@ module EffectiveRoles
39
39
  roles_for(roles).map { |r| 2 ** config.roles.index(r) }.sum
40
40
  end
41
41
 
42
+ def self.color(role)
43
+ raise('expected a role') unless role.kind_of?(Symbol)
44
+ (role_colors || {})[role]
45
+ end
46
+
42
47
  def self.roles_collection(resource, current_user = nil, only: nil, except: nil, multiple: nil, skip_disabled: nil)
43
48
  if assignable_roles.present?
44
49
  raise('expected object to respond to is_role_restricted?') unless resource.respond_to?(:is_role_restricted?)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_roles
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-24 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails