Class: LaunchDarkly::FeatureFlagsState

Inherits:
Object
  • Object
show all
Defined in:
lib/ldclient-rb/flags_state.rb

Overview

A snapshot of the state of all feature flags with regard to a specific context, generated by calling the LDClient#all_flags_state. Serializing this object to JSON using JSON.generate (or the to_json method) will produce the appropriate data structure for bootstrapping the LaunchDarkly JavaScript client.

Instance Method Summary collapse

Constructor Details

#initialize(valid) ⇒ FeatureFlagsState

Returns a new instance of FeatureFlagsState.



11
12
13
14
15
# File 'lib/ldclient-rb/flags_state.rb', line 11

def initialize(valid)
  @flag_values = {}
  @flag_metadata = {}
  @valid = valid
end

Instance Method Details

#as_jsonObject

Returns a hash that can be used as a JSON representation of the entire state map, in the format used by the LaunchDarkly JavaScript SDK. Use this method if you are passing data to the front end in order to "bootstrap" the JavaScript client.

Do not rely on the exact shape of this data, as it may change in future to support the needs of the JavaScript client.



75
76
77
78
79
80
# File 'lib/ldclient-rb/flags_state.rb', line 75

def as_json(*) # parameter is unused, but may be passed if we're using the json gem
  ret = @flag_values.clone
  ret['$flagsState'] = @flag_metadata
  ret['$valid'] = @valid
  ret
end

#flag_value(key) ⇒ Object

Returns the value of an individual feature flag at the time the state was recorded. Returns nil if the flag returned the default value, or if there was no such flag.



56
57
58
# File 'lib/ldclient-rb/flags_state.rb', line 56

def flag_value(key)
  @flag_values[key]
end

#to_json(*a) ⇒ Object

Same as as_json, but converts the JSON structure into a string.



83
84
85
# File 'lib/ldclient-rb/flags_state.rb', line 83

def to_json(*a)
  as_json.to_json(*a)
end

#valid?Boolean

Returns true if this object contains a valid snapshot of feature flag state, or false if the state could not be computed (for instance, because the client was offline or there was no context).

Returns:

  • (Boolean)


50
51
52
# File 'lib/ldclient-rb/flags_state.rb', line 50

def valid?
  @valid
end

#values_mapObject

Returns a map of flag keys to flag values. If a flag would have evaluated to the default value, its value will be nil.

Do not use this method if you are passing data to the front end to "bootstrap" the JavaScript client. Instead, use as_json.



65
66
67
# File 'lib/ldclient-rb/flags_state.rb', line 65

def values_map
  @flag_values
end