c374e8146a
- Add a Features service for examining feature flags on the frontend - Add a directive (quay-requires) that matches feature flags and, if any one does not match, removes the element from the DOM - Add a directive (quay-show) that injects the features into the scope so that expressions of the form "Features.BILLING || something" work out of the box to show/hide the element - Add a directive (quay-classes) that allows for setting of CSS classes on an element based on feature expression(s) such as {"!BILLING": "active"} (e.g. the BILLING flag is set to false, add the class "active".
31 lines
720 B
Python
31 lines
720 B
Python
_FEATURES = {}
|
|
|
|
def import_features(config_dict):
|
|
for feature, feature_val in config_dict.items():
|
|
if feature.startswith('FEATURE_'):
|
|
feature_name = feature[8:]
|
|
_FEATURES[feature_name] = globals()[feature_name] = FeatureNameValue(feature_name, feature_val)
|
|
|
|
|
|
def get_features():
|
|
return {key: _FEATURES[key].value for key in _FEATURES}
|
|
|
|
|
|
class FeatureNameValue(object):
|
|
def __init__(self, name, value):
|
|
self.value = value
|
|
self.name = name
|
|
|
|
def __str__(self):
|
|
return '%s => %s' % (self.name, self.value)
|
|
|
|
def __repr__(self):
|
|
return str(self.value)
|
|
|
|
def __cmp__(self, other):
|
|
return self.value.__cmp__(other)
|
|
|
|
def __nonzero__(self):
|
|
return self.value.__nonzero__()
|
|
|
|
|