Sha256: 7aa7554ebd5dab3b2f22d74007d4796eeca8ddcdd9e4347cc46cc364f57f5e07
Contents?: true
Size: 1.48 KB
Versions: 11
Compression:
Stored size: 1.48 KB
Contents
# if these aren't in a nested module, the methods just overwrite the base # methods, but we need a distinct module so that super will be able to refer to # the base methods. def content @selected_action_id ? selected_content : super end def content= value @selected_content = nil super end def select_action_by_params params action = nth_action(params[:rev]) || action_from_id(params[:rev_id]) return unless action select_action action.id end def select_action action_id run_callbacks :select_action do self.selected_action_id = action_id end end def selected_action_id @selected_action_id || @current_action&.id || last_action_id end def selected_action_id= action_id @selected_content = nil @selected_action_id = action_id end def selected_action selected_action_id && Action.fetch(selected_action_id) end def selected_content @selected_content ||= content_at_time_of_selected_action || db_content end def content_at_time_of_selected_action last_change_on(:db_content, not_after: selected_action_id, including_drafts: true)&.value end def with_selected_action_id action_id current_action_id = @selected_action_id select_action_id action_id result = yield select_action_id current_action_id result end def select_action_id action_id run_callbacks :select_action do self.selected_action_id = action_id end end def selected_content_action_id @selected_action_id || new_content_action_id || last_content_action_id end
Version data entries
11 entries across 11 versions & 1 rubygems