feedback feature

This commit is contained in:
Gabriel Bazán 2016-11-01 14:21:35 -03:00
commit b64e80478e
14 changed files with 344 additions and 3 deletions

View file

@ -39,6 +39,41 @@ angular.module('copayApp.controllers').controller('tabHomeController',
externalLinkService.open(url, optIn, title, message, okText, cancelText);
};
$scope.setScore = function(score) {
$scope.score = score;
switch ($scope.score) {
case 1:
$scope.button_title = gettextCatalog.getString("I think this app is terrible");
break;
case 2:
$scope.button_title = gettextCatalog.getString("I don't like it");
break;
case 3:
$scope.button_title = gettextCatalog.getString("Meh - it's alright");
break;
case 4:
$scope.button_title = gettextCatalog.getString("I like the app");
break;
case 5:
$scope.button_title = gettextCatalog.getString("This app is fantastic");
break;
}
$timeout(function() {
$scope.$apply();
});
};
$scope.goFeedbackFlow = function() {
if ($scope.score != 5)
$state.go('feedback.sendFeedback', {
score: $scope.score
});
else
$state.go('feedback.rateAppStore', {
score: $scope.score
});
};
$scope.openNotificationModal = function(n) {
wallet = profileService.getWallet(n.walletId);