Class: Pageflow::Admin::UsersTab Private
- Inherits:
-
ViewComponent
- Object
- Arbre::Component
- ViewComponent
- Pageflow::Admin::UsersTab
- Defined in:
- app/views/components/pageflow/admin/users_tab.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #build(account) ⇒ Object private
Instance Method Details
#build(account) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
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 |
# File 'app/views/components/pageflow/admin/users_tab.rb', line 5 def build(account) (account.memberships.on_accounts.includes(:user) .accessible_by(current_ability, :index) .where('pageflow_memberships.user_id IS NOT NULL'), blank_slate_text: I18n.t('pageflow.admin.accounts.no_members')) do table_for_collection class: 'memberships', sortable: true, i18n: Pageflow::Membership do column :full_name, sortable: 'users.last_name' do |membership| link_to membership.user.formal_name, admin_user_path(membership.user) end column :role, sortable: 'pageflow_memberships.role' do |membership| membership_role_with_tooltip(membership.role, scope: 'accounts') end column :created_at column do |membership| if (:update, membership) link_to(I18n.t('pageflow.admin.users.edit_role'), edit_admin_account_membership_path( account, membership, entity_type: 'Pageflow::Account' ), data: { rel: "edit_account_role_#{membership.role}" }) end end column do |membership| if (:destroy, membership) link_to(I18n.t('pageflow.admin.users.delete'), admin_account_membership_path(account, membership), method: :delete, data: { confirm: I18n.t('active_admin.delete_confirmation'), rel: "delete_account_membership_#{membership.role}" }) end end end if (:add_member_to, account) (current_user, account, 'account') end end end |