Sha256: 4ce3633f22152a0403765152b1d97ef41ef39130ce0dadf2031ff34388e9c4e5

Contents?: true

Size: 1.15 KB

Versions: 3

Compression:

Stored size: 1.15 KB

Contents

module Gamification
  module ApplicationHelper

    # Create a form to reward someone for something.
    #
    # rewardable - A model that is rewardable (e.g. a user)
    # options    - A Hash of options:
    #              :for      - A model that is rewarding (e.g. an article)
    #              :redirect - A String describing a URL to redirect to.
    def reward rewardable, options
      rewarding = options[:for]
      redirect  = options[:redirect]

      form_tag Gamification::Engine.routes.url_helpers.rewards_path, method: :post do
        concat hidden_field_tag 'reward[rewarding_type]', rewarding.class.name
        concat hidden_field_tag 'reward[rewarding_id]', rewarding.id
        concat hidden_field_tag 'reward[rewardable_type]', rewardable.class.name
        concat hidden_field_tag 'reward[rewardable_id]', rewardable.id
        concat hidden_field_tag 'checksum', Checksum.generate(
          [rewarding.class.name, rewarding.id, rewardable.class.name, rewardable.id]
        )

        if redirect
          concat hidden_field_tag 'redirect_url', redirect
        end

        concat submit_tag I18n.t 'gamification.complete'
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gamification-1.0.3 app/helpers/gamification/application_helper.rb
gamification-1.0.2 app/helpers/gamification/application_helper.rb
gamification-1.0.1 app/helpers/gamification/application_helper.rb