Class: Pageflow::Admin::RevisionsTab

Inherits:
ViewComponent
  • Object
show all
Defined in:
app/views/components/pageflow/admin/revisions_tab.rb

Instance Method Summary collapse

Methods inherited from ViewComponent

builder_method

Instance Method Details

#build(entry) ⇒ Object



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
# File 'app/views/components/pageflow/admin/revisions_tab.rb', line 4

def build(entry)
  embedded_index_table entry.revisions, :blank_slate_text => I18n.t('pageflow.admin.entries.no_revisions') do
    scope(:publications)
    scope(:publications_and_user_snapshots)
    scope(:frozen)

    table_for_collection :class => 'revisions', :i18n => Pageflow::Revision do
      row_attributes do |revision|
        {:class => revision_css_class(revision)}
      end

      column :frozen_at
      column :creator do |revision|
        if authorized? :manage, User
          link_to revision.creator.full_name, admin_user_path(revision.creator)
        else
          revision.creator.full_name
        end
      end
      column :published_until  do |revision|
        if revision.published_until
          I18n.l(revision.published_until)
        elsif revision.published?
          I18n.t('pageflow.admin.entries.forever')
        else
          '-'
        end
      end
      column :created_with do |revision|
        span(I18n.t(revision.created_with, :scope => 'pageflow.admin.entries.revision_created_with'),
             :title => I18n.t(revision.created_with, :scope => 'pageflow.admin.entries.revision_created_with_hint'))

        if revision.password_protected?
          span('', :class => 'password_protected', :title => t('pageflow.admin.entries.password_protected'))
        end
      end
      column do |revision|
        text_node(link_to(t('pageflow.admin.entries.show'), pageflow.revision_path(revision), :class => 'show'))
        text_node(link_to(t('pageflow.admin.entries.restore'), restore_admin_revision_path(revision), :method => :post, :class => 'restore', :data => {:confirm => I18n.t('pageflow.admin.entries.confirm_restore')}))
      end
    end
  end

  para(I18n.t('pageflow.admin.entries.published_revision_legend'), :class => 'legend published')

  text_node(button_to(t('pageflow.admin.entries.snapshot'),
                      snapshot_admin_entry_path(entry),
                      :method => :post))
end