openfoodfoundation/openfoodnetwork

View on GitHub
app/assets/javascripts/admin/enterprise_fees/directives/ensure_calculator_preferences_match_type.js.coffee

Summary

Maintainability
Test Coverage
angular.module("admin.enterpriseFees").directive 'spreeEnsureCalculatorPreferencesMatchType', ->
  # Hide calculator preference fields when calculator type changed
  # Fixes 'Enterprise fee is not found' error when changing calculator type
  # See spree/core/app/assets/javascripts/admin/calculator.js
  (scope, element, attrs) ->
    orig_calculator_type = scope.enterprise_fee.calculator_type

    scope.$watch "enterprise_fee.calculator_type", (value) ->
      settings = element.parent().parent().find('div.calculator-settings')
      if value == orig_calculator_type
        settings.show()
        settings.find('input, select').prop 'disabled', false
      else
        settings.hide()
        settings.find('input, select').prop 'disabled', true
      return
    return