Sha256: 6e0d24691a2f7d588b3a6fa06ae0098738904703d3eabb01679de2ae8d6e468a

Contents?: true

Size: 1.47 KB

Versions: 13

Compression:

Stored size: 1.47 KB

Contents

require 'delegate'
require 'flipper/ui/decorators/gate'
require 'flipper/ui/util'

module Flipper
  module UI
    module Decorators
      class Feature < SimpleDelegator
        include Comparable

        # Public: The feature being decorated.
        alias_method :feature, :__getobj__

        # Public: Returns name titleized.
        def pretty_name
          @pretty_name ||= Util.titleize(name)
        end

        # Public: Returns instance as hash that is ready to be json dumped.
        def as_json
          gate_values = feature.gate_values
          {
            'id' => name.to_s,
            'name' => pretty_name,
            'state' => state.to_s,
            'gates' => gates.map do |gate|
              Decorators::Gate.new(gate, gate_values[gate.key]).as_json
            end,
          }
        end

        def color_class
          case feature.state
          when :on
            'text-open'
          when :off
            'text-closed'
          when :conditional
            'text-pending'
          end
        end

        def pretty_enabled_gate_names
          enabled_gates.map { |gate| Util.titleize(gate.key) }.sort.join(', ')
        end

        StateSortMap = {
          on: 1,
          conditional: 2,
          off: 3,
        }.freeze

        def <=>(other)
          if state == other.state
            key <=> other.key
          else
            StateSortMap[state] <=> StateSortMap[other.state]
          end
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
flipper-ui-0.12.2 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.12.1 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.12.0 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.rc1 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta9 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta8 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta7 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta6 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta5 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta4 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta3 lib/flipper/ui/decorators/feature.rb
flipper-ui-0.11.0.beta1 lib/flipper/ui/decorators/feature.rb