rx/presenters

View on GitHub
views/mdc/components/actions/replaces.rb

Summary

Maintainability
A
0 mins
Test Coverage
module WebClient
  module Actions
    class Replaces
      include Voom::Presenters::WebClient::Helpers::ExpandHash

      def call(action, parent_id, grid_nesting, *)
        # Type, URL, Options, Params (passed into javascript event/action classes)
        trace { 'Replaces action dynamic parameters:'}
        trace {expand_hash(action.dynamic_params)}
        [action.type, action.url,
         action.options.to_h.merge({grid_nesting: grid_nesting, __parent_id__: parent_id, input_tag: action.options[:input_tag]}),
         expand_hash(action.dynamic_params)]
      end
    end
  end
end