Card: Auto save while typing
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
committed by
Julius Härtl
parent
3d54d129b9
commit
8d39fd9ad1
@@ -613,14 +613,21 @@ input.input-inline {
|
||||
}
|
||||
|
||||
.save-indicator {
|
||||
background-color: $color-success;
|
||||
color: $color-primary-text;
|
||||
border-radius: 3px;
|
||||
float: right;
|
||||
padding: 0px 10px;
|
||||
font-size: 8pt !important;
|
||||
padding: 0 10px;
|
||||
font-size: 8pt;
|
||||
display: none;
|
||||
align-self: flex-end;
|
||||
text-align: center;
|
||||
&.saved {
|
||||
background-color: $color-success;
|
||||
color: $color-primary-text;
|
||||
}
|
||||
&.unsaved {
|
||||
background-color: $color-lightgrey;
|
||||
color: $color-darkgrey;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-help {
|
||||
|
||||
@@ -23,9 +23,12 @@
|
||||
/* global app */
|
||||
/* global moment */
|
||||
|
||||
app.controller('CardController', function ($scope, $rootScope, $routeParams, $location, $stateParams, BoardService, CardService, StackService, StatusService) {
|
||||
app.controller('CardController', function ($scope, $rootScope, $routeParams, $location, $stateParams, $interval, BoardService, CardService, StackService, StatusService) {
|
||||
$scope.sidebar = $rootScope.sidebar;
|
||||
$scope.status = {};
|
||||
$scope.status = {
|
||||
lastEdit: 0,
|
||||
lastSave: Date.now()
|
||||
};
|
||||
|
||||
$scope.cardservice = CardService;
|
||||
$scope.cardId = $stateParams.cardId;
|
||||
@@ -58,6 +61,27 @@ app.controller('CardController', function ($scope, $rootScope, $routeParams, $lo
|
||||
$scope.status.cardEditDescription = true;
|
||||
return true;
|
||||
};
|
||||
$scope.cardEditDescriptionChanged = function ($event) {
|
||||
$scope.status.lastEdit = Date.now();
|
||||
$('#card-description').find('.save-indicator.unsaved').show();
|
||||
$('#card-description').find('.save-indicator.saved').hide();
|
||||
};
|
||||
|
||||
$scope.cardEditDescriptionAutosave = function() {
|
||||
var currentTime = Date.now();
|
||||
var timeSinceEdit = currentTime-$scope.status.lastEdit;
|
||||
if (timeSinceEdit > 1000 && $scope.status.lastEdit > $scope.status.lastSave) {
|
||||
$scope.status.lastSave = currentTime;
|
||||
$('#card-description').find('.save-indicator.unsaved').fadeIn(500);
|
||||
CardService.update(CardService.getCurrent()).then(function (data) {
|
||||
$('#card-description').find('.save-indicator.unsaved').hide();
|
||||
$('#card-description').find('.save-indicator.saved').fadeIn(250).fadeOut(1000);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
$interval( function(){ $scope.cardEditDescriptionAutosave(); }, 500);
|
||||
|
||||
// handle rename to update information on the board as well
|
||||
$scope.cardRename = function (card) {
|
||||
CardService.rename(card).then(function (data) {
|
||||
@@ -68,7 +92,8 @@ app.controller('CardController', function ($scope, $rootScope, $routeParams, $lo
|
||||
$scope.cardUpdate = function (card) {
|
||||
CardService.update(CardService.getCurrent()).then(function (data) {
|
||||
$scope.status.cardEditDescription = false;
|
||||
$('#card-description').find('.save-indicator').fadeIn(500).fadeOut(1000);
|
||||
$('#card-description').find('.save-indicator.unsaved').hide();
|
||||
$('#card-description').find('.save-indicator.saved').fadeIn(500).fadeOut(1000);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
@@ -63,12 +63,15 @@
|
||||
<?php p($l->t('Description')); ?>
|
||||
<a href="https://github.com/nextcloud/deck/wiki/Markdown-Help" target="_blank" class="icon icon-help" title="<?php p($l->t('Formatting help')); ?>"></a>
|
||||
</div>
|
||||
<span class="save-indicator"><?php p($l->t('Saved')); ?></span>
|
||||
<span class="save-indicator saved"><?php p($l->t('Saved')); ?></span>
|
||||
<span class="save-indicator unsaved"><?php p($l->t('Unsaved changes')); ?></span>
|
||||
|
||||
</h4>
|
||||
<textarea elastic ng-if="status.cardEditDescription"
|
||||
placeholder="<?php p($l->t('Add a card description…')); ?>"
|
||||
ng-blur="cardUpdate(cardservice.getCurrent())"
|
||||
ng-model="cardservice.getCurrent().description"
|
||||
ng-change="cardEditDescriptionChanged()"
|
||||
autofocus-on-insert> </textarea>
|
||||
<div class="container" ng-click="cardEditDescriptionShow($event)"
|
||||
ng-if="!status.cardEditDescription" ng-animate>
|
||||
|
||||
Reference in New Issue
Block a user