notif when saved or error

This commit is contained in:
ty kayn 2019-07-03 17:15:58 +02:00
parent 39c18197c3
commit 41cbd4784c
3 changed files with 59 additions and 14 deletions

View File

@ -40,12 +40,13 @@
</button>
</div>
<div class="col-xs-12 col-md-6">
<div class="row">
<div class="row">{% verbatim %}
<div class="client-now text-right padded">
<div class="col-xs-12">
<i class="fa fa-user"></i>
Client actuel:
</div> {% verbatim %}
</div>
<div class="col-xs-10">
<div class="input-group">
@ -57,7 +58,18 @@
<div>
{{ activeSelling.length }} produit<span ng-if="activeSelling.length!=1">s</span>
</div>{% endverbatim %}
</div>
<!--états de sauvegarde-->
<div class="selling-ok alert-success alert block" ng-if="sellingOk" ng-click="sellingOk = false">
<i class="fa fa-save"></i>
Sauvegardé!
</div>
<div class="selling-ok alert-error alert block" ng-if="sellingError" ng-click="sellingError = false">
<i class="fa fa-warning"></i>
Problème de sauvegarde (pas de réseau ?)
</div>
{% endverbatim %}
</div>
</div>
</div>
@ -79,8 +91,9 @@
<div id="history" class="tab-pane fade">
<h2>Historique</h2>
</div>
</div>
</div>
{#</div>#}
{#</div>#}

View File

@ -86,12 +86,27 @@
height: 70vh;
overflow: auto;
}
.sellings {
.remove-item {
margin-left: 1em;
}
}
#not_loaded {
width: 100%;
height: 75vh;
}
.selling-ok {
position: fixed;
bottom: 0;
left: 2em;
z-index: 10;
}
.block{
display: block;
width: calc(100% - 2em);
text-align:center;
}

View File

@ -87,7 +87,6 @@ angular
}
});
$scope.activeSellingFiltered = soldObjectsIdsCount;
}
/**
@ -283,22 +282,40 @@ angular
}
}, function (rep) {
console.log('nope! ', rep.data);
$scope.showTemporaryErrorMessage();
})
;
};
$scope.sellingOk = false;
$scope.sellingError = false;
$scope.tempMessage = {};
$scope.showTemporaryMessage = function () {
console.log('show message');
if ($scope.sellingOk) {
$scope.sellingOk = false;
return;
}
$scope.sellingOk = true;
$timeout.cancel($scope.tempMessage);
$scope.tempMessage = $timeout(function () {
console.log('hide message');
$scope.sellingOk = false;
}, 2000)
};
$scope.showTemporaryErrorMessage = function () {
console.log('show message');
if ($scope.sellingError) {
$scope.sellingError = false;
return;
}
$scope.sellingError = true;
$timeout.cancel($scope.tempMessage);
$scope.tempMessage = $timeout(function () {
console.log('hide message');
$scope.sellingError = false;
}, 2000)
};
$scope.init = (function () {
$scope.fetchProductsFromDB();
})();