Sha256: b33347b37829547228173642541b76c85cbd0c102deeb0f88d1864c0a990d280

Contents?: true

Size: 996 Bytes

Versions: 15

Compression:

Stored size: 996 Bytes

Contents

# frozen_string_literal: true
module Decidim
  module Admin
    # This command deals with destroying a Feature from the admin panel.
    class DestroyFeature < Rectify::Command
      # Public: Initializes the command.
      #
      # feature - The Feature to be destroyed.
      def initialize(feature)
        @feature = feature
      end

      # Public: Executes the command.
      #
      # Broadcasts :ok if it got destroyed, raises an exception otherwise.
      def call
        begin
          destroy_feature
        rescue StandardError
          return broadcast(:invalid)
        end
        broadcast(:ok)
      end

      private

      def destroy_feature
        transaction do
          run_before_hooks
          @feature.destroy!
          run_hooks
        end
      end

      def run_before_hooks
        @feature.manifest.run_hooks(:before_destroy, @feature)
      end

      def run_hooks
        @feature.manifest.run_hooks(:destroy, @feature)
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
decidim-admin-0.1.0 app/commands/decidim/admin/destroy_feature.rb
decidim-0.1.0 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.8.1 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.8.1 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.7 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.7 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.6 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.6 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.5 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.5 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.4 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.3 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.3 decidim-admin/app/commands/decidim/admin/destroy_feature.rb
decidim-admin-0.0.2 app/commands/decidim/admin/destroy_feature.rb
decidim-0.0.2 decidim-admin/app/commands/decidim/admin/destroy_feature.rb