Sha256: 2958b2fd9273a96c4bccfa51cf1f0aee27470b80b29b5bc6e3e5074ef8285560

Contents?: true

Size: 1.33 KB

Versions: 16

Compression:

Stored size: 1.33 KB

Contents

# History views

format :html do
  view :history, cache: :never do
    frame do
      class_up "d0-card-body",  "history-slot"
      acts_layout card.history_acts, :relative, :show
    end
  end

  view :act, cache: :never do
    act_listing act_from_context
  end

  view :act_legend do
    bs_layout do
      row md: [12, 12], lg: [7, 5] do
        col action_legend
        col content_legend, class: "text-right"
      end
    end
  end

  view :draft_legend do
    "#{action_icon(:draft)} unsaved draft"
  end

  view :action_summary do
    action_content action_from_context, :summary
  end

  view :action_expanded do
    action_content action_from_context, :expanded
  end

  view :change do
    voo.show :title_link
    voo.hide :menu
    wrap do
      [_render_title,
       _render_menu,
       _render_last_action]
    end
  end

  view :last_action do
    %(
      <span class="last-update">
        #{render_last_action_verb} #{render_acted_at} ago by
        #{nest card.last_actor, view: :link}
      </span>
    )
  end

  view :last_action_verb, cache: :never do
    return unless (act = card.last_act)
    return unless (action = act.action_on card.id)

    case action.action_type
    when :create then "added"
    when :delete then "deleted"
    else
      link_to_view :history, "edited", class: "last-edited", rel: "nofollow"
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
card-mod-history-0.14.2 set/all/history/views.rb
card-mod-history-0.14.1 set/all/history/views.rb
card-mod-history-0.14.0 set/all/history/views.rb
card-mod-history-0.13.4 set/all/history/views.rb
card-mod-history-0.13.3 set/all/history/views.rb
card-mod-history-0.13.2 set/all/history/views.rb
card-mod-history-0.13.1 set/all/history/views.rb
card-mod-history-0.13.0 set/all/history/views.rb
card-mod-history-0.11.7 set/all/history/views.rb
card-mod-history-0.12.0 set/all/history/views.rb
card-mod-history-0.11.6 set/all/history/views.rb
card-mod-history-0.11.5 set/all/history/views.rb
card-mod-history-0.11.4 set/all/history/views.rb
card-mod-history-0.11.3 set/all/history/views.rb
card-mod-history-0.11.2 set/all/history/views.rb
card-mod-history-0.11.1 set/all/history/views.rb