Module: Card::Set::All::History::Actions
- Extended by:
- Card::Set
- Defined in:
- platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb
Overview
Set: All cards (History, Actions)
-- encoding : utf-8 --
Defined Under Namespace
Modules: HtmlFormat
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Constants included from Event::Api
Class Method Summary collapse
Instance Method Summary collapse
-
#action_ids ⇒ Object
actions directly on current card.
-
#all_action_ids ⇒ Object
includes drafts.
-
#create_action ⇒ Object
-
#history_actions ⇒ Object
-
#nth_action(index) ⇒ Object
-
#old_actions ⇒ Object
Methods included from Card::Set
Methods included from I18nScope
Methods included from Registrar
#extended, #finalize_load, #process_base_modules, #register_set
Methods included from Helpers
#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name
Methods included from Card::Set::AdvancedApi
#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #stage_method
Methods included from Format
#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
Class Method Details
.source_location ⇒ Object
9 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 9 def self.source_location; "/Users/ethan/dev/decko/gem/mod/history/set/all/history/actions.rb"; end |
Instance Method Details
#action_ids ⇒ Object
actions directly on current card
11 12 13 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 11 def action_ids actions.pluck :id end |
#all_action_ids ⇒ Object
includes drafts
16 17 18 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 16 def all_action_ids Card::Action.where(card_id: id).pluck :id end |
#create_action ⇒ Object
28 29 30 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 28 def create_action @create_action ||= actions.first end |
#history_actions ⇒ Object
20 21 22 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 20 def history_actions Action.where card_id: history_card_ids end |
#nth_action(index) ⇒ Object
32 33 34 35 36 37 38 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 32 def nth_action index index = index.to_i return unless id && index.positive? Action.where("draft is not true AND card_id = #{id}") .order(:id).limit(1).offset(index - 1).first end |
#old_actions ⇒ Object
24 25 26 |
# File 'platypus/tmp/set/gem-defaults/mod015-history/all/history/actions.rb', line 24 def old_actions actions.where("id != ?", last_action_id) end |