2018-10-25 16:50:16 +02:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
Application.Directives.directive('coupon', [ '$rootScope', 'Coupon', '_t', ($rootScope, Coupon, _t) =>
|
|
|
|
({
|
|
|
|
restrict: 'E',
|
|
|
|
scope: {
|
|
|
|
show: '=',
|
|
|
|
coupon: '=',
|
|
|
|
total: '=',
|
2016-08-10 11:08:01 +02:00
|
|
|
userId: '@'
|
2018-10-25 16:50:16 +02:00
|
|
|
},
|
|
|
|
templateUrl: '<%= asset_path "shared/_coupon.html" %>',
|
|
|
|
link($scope, element, attributes) {
|
2016-08-08 17:09:05 +02:00
|
|
|
|
2018-10-25 16:50:16 +02:00
|
|
|
// Whether code input is shown or not (ie. the link 'I have a coupon' is shown)
|
2016-08-09 10:22:01 +02:00
|
|
|
$scope.code =
|
2018-10-25 16:50:16 +02:00
|
|
|
{input: false};
|
|
|
|
|
|
|
|
// Available status are: 'pending', 'valid', 'invalid'
|
|
|
|
$scope.status = 'pending';
|
|
|
|
|
|
|
|
// Binding for the code inputed (see the attached template)
|
|
|
|
$scope.couponCode = null;
|
|
|
|
|
|
|
|
// Code validation messages
|
|
|
|
$scope.messages = [];
|
|
|
|
|
|
|
|
// Re-compute if the code can be applied when the total of the cart changes
|
|
|
|
$scope.$watch('total', function(newValue, oldValue) {
|
|
|
|
if (newValue && (newValue !== oldValue) && $scope.couponCode) {
|
|
|
|
return $scope.validateCode();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//#
|
|
|
|
// Callback to validate the code
|
|
|
|
//#
|
|
|
|
$scope.validateCode = function() {
|
|
|
|
$scope.messages = [];
|
|
|
|
if ($scope.couponCode === '') {
|
|
|
|
$scope.status = 'pending';
|
|
|
|
return $scope.coupon = null;
|
|
|
|
} else {
|
|
|
|
return Coupon.validate({code: $scope.couponCode, user_id: $scope.userId, amount: $scope.total}, function(res) {
|
|
|
|
$scope.status = 'valid';
|
|
|
|
$scope.coupon = res;
|
|
|
|
if (res.type === 'percent_off') {
|
|
|
|
return $scope.messages.push({type: 'success', message: _t('the_coupon_has_been_applied_you_get_PERCENT_discount', {PERCENT: res.percent_off})});
|
|
|
|
} else {
|
|
|
|
return $scope.messages.push({type: 'success', message: _t('the_coupon_has_been_applied_you_get_AMOUNT_CURRENCY', {AMOUNT: res.amount_off, CURRENCY: $rootScope.currencySymbol})});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
, function(err) {
|
|
|
|
$scope.status = 'invalid';
|
|
|
|
$scope.coupon = null;
|
|
|
|
return $scope.messages.push({type: 'danger', message: _t(`unable_to_apply_the_coupon_because_${err.data.status}`)});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//#
|
|
|
|
// Callback to remove the message at provided index from the displayed list
|
|
|
|
//#
|
|
|
|
return $scope.closeMessage = index => $scope.messages.splice(index, 1);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
]);
|
2016-08-08 17:09:05 +02:00
|
|
|
|
|
|
|
|