mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-03 18:28:13 +01:00
sync page
This commit is contained in:
parent
438fbc1888
commit
2b6b75737e
@ -1,13 +1,7 @@
|
|||||||
angular
|
angular
|
||||||
.module('bit.settings')
|
.module('bit.settings')
|
||||||
|
|
||||||
.controller('settingsController', function ($scope, loginService, $state, syncService, SweetAlert, utilsService) {
|
.controller('settingsController', function ($scope, loginService, $state, SweetAlert, utilsService) {
|
||||||
$scope.sync = function () {
|
|
||||||
syncService.fullSync(function () {
|
|
||||||
alert('Sync done!');
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
$scope.logOut = function () {
|
$scope.logOut = function () {
|
||||||
SweetAlert.swal({
|
SweetAlert.swal({
|
||||||
title: 'Log Out',
|
title: 'Log Out',
|
||||||
|
@ -1,6 +1,25 @@
|
|||||||
angular
|
angular
|
||||||
.module('bit.settings')
|
.module('bit.settings')
|
||||||
|
|
||||||
.controller('settingsSyncController', function ($scope) {
|
.controller('settingsSyncController', function ($scope, syncService, toastr) {
|
||||||
|
$scope.lastSync = '--';
|
||||||
|
setLastSync();
|
||||||
|
|
||||||
|
$scope.sync = function () {
|
||||||
|
syncService.fullSync(function () {
|
||||||
|
toastr.success('Syncing complete');
|
||||||
|
setLastSync();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
function setLastSync() {
|
||||||
|
syncService.getLastSync(function (lastSync) {
|
||||||
|
if (lastSync) {
|
||||||
|
$scope.lastSync = lastSync.toLocaleDateString() + ' ' + lastSync.toLocaleTimeString();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$scope.lastSync = 'Never';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
Folders
|
Folders
|
||||||
<i class="fa fa-chevron-right fa-lg"></i>
|
<i class="fa fa-chevron-right fa-lg"></i>
|
||||||
</a>
|
</a>
|
||||||
<a class="list-section-item" href="" ng-click="sync()">
|
<a class="list-section-item" ui-sref="sync({animation: 'in-slide-left'})">
|
||||||
Sync
|
Sync
|
||||||
<i class="fa fa-chevron-right fa-lg"></i>
|
<i class="fa fa-chevron-right fa-lg"></i>
|
||||||
</a>
|
</a>
|
||||||
|
@ -5,5 +5,12 @@
|
|||||||
<div class="title">Sync</div>
|
<div class="title">Sync</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
<div class="centered-message">
|
||||||
|
<p style="margin-top: -50px;">
|
||||||
|
<a href="" class="btn btn-lg btn-link btn-block" ng-click="sync()">
|
||||||
|
Sync Vault Now
|
||||||
|
</a>
|
||||||
|
<small class="text-muted">Last Sync: {{lastSync}}</small>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user