passman/js/app/app.js

141 lines
4.2 KiB
JavaScript
Raw Normal View History

'use strict';
/**
* @ngdoc overview
* @name passmanApp
* @description
* # passmanApp
*
* Main module of the application.
*/
angular
.module('passmanApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngRoute',
'ngSanitize',
'ngTouch',
'templates-main',
2016-09-12 04:14:11 +08:00
'LocalStorageModule',
2016-09-12 05:40:06 +08:00
'offClick',
'ngPasswordMeter',
2016-09-14 05:03:12 +08:00
'ngclipboard',
'xeditable',
'ngTagsInput',
'angularjs-datetime-picker'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
2016-09-11 05:30:17 +08:00
templateUrl: 'views/vaults.html',
controller: 'VaultCtrl'
})
2016-09-12 02:47:29 +08:00
.when('/vault/:vault_id', {
templateUrl: 'views/show_vault.html',
controller: 'CredentialCtrl'
})
.when('/vault/:vault_id/new', {
templateUrl: 'views/edit_credential.html',
controller: 'CredentialEditCtrl'
})
.when('/vault/:vault_id/edit/:credential_id', {
templateUrl: 'views/edit_credential.html',
controller: 'CredentialEditCtrl'
2016-09-21 02:03:37 +08:00
}).when('/vault/:vault_id/:credential_id/share', {
templateUrl: 'views/share_credential.html',
controller: 'ShareCtrl'
2016-09-24 16:58:26 +08:00
}).when('/vault/:vault_id/:credential_id/revisions', {
templateUrl: 'views/credential_revisions.html',
controller: 'RevisionCtrl'
})
2016-09-25 02:16:57 +08:00
.when('/vault/:vault_id/settings', {
templateUrl: 'views/settings.html',
controller: 'SettingsCtrl'
})
.otherwise({
redirectTo: '/'
});
}).config(['$httpProvider', function ($httpProvider) {
$httpProvider.defaults.headers.common.requesttoken = oc_requesttoken;
}]).config(function (localStorageServiceProvider) {
localStorageServiceProvider
.setNotify(true, true);
});
/**
* jQuery for notification handling D:
**/
jQuery(document).ready(function () {
var findItemByID = function(id){
var credentials,foundItem=false;
credentials = angular.element('#app-content-wrapper').scope().credentials;
console.log(id, credentials)
angular.forEach(credentials, function(credential){
if(credential.credential_id == id){
foundItem = credential;
}
});
return foundItem;
};
jQuery(document).on('click', '.undoDelete', function () {
var credential = findItemByID($(this).attr('data-item-id'));
angular.element('#app-content-wrapper').scope().recoverCredential(credential);
angular.element('#app-content-wrapper').scope().$apply();
});
jQuery(document).on('click', '.undoRestore', function () {
var credential = findItemByID($(this).attr('data-item-id'));
angular.element('#app-content-wrapper').scope().deleteCredential(credential);
angular.element('#app-content-wrapper').scope().$apply();
});
2016-09-25 22:18:18 +08:00
var adjustControlsWidth = function(r) {
2016-09-21 02:51:41 +08:00
if($('#controls').length) {
var controlsWidth;
// if there is a scrollbar …
if($('#app-content').get(0).scrollHeight > $('#app-content').height()) {
if($(window).width() > 768) {
controlsWidth = $('#content').width() - $('#app-navigation').width() - OC.Util.getScrollBarWidth();
if (!$('#app-sidebar').hasClass('hidden') && !$('#app-sidebar').hasClass('disappear')) {
controlsWidth -= $('#app-sidebar').width();
}
} else {
controlsWidth = $('#content').width() - OC.Util.getScrollBarWidth();
}
} else { // if there is none
if($(window).width() > 768) {
controlsWidth = $('#content').width() - $('#app-navigation').width();
if (!$('#app-sidebar').hasClass('hidden') && !$('#app-sidebar').hasClass('disappear')) {
//controlsWidth -= $('#app-sidebar').width();
}
} else {
controlsWidth = $('#content').width();
}
}
2016-09-25 22:18:18 +08:00
if(r){
var magic = 0;
} else {
var magic = 85;
}
$('#controls').css('width', controlsWidth+magic);
$('#controls').css('min-width', controlsWidth+magic);
2016-09-21 02:51:41 +08:00
}
};
2016-09-25 22:18:18 +08:00
$(window).resize(_.debounce(adjustControlsWidth, 400));
setTimeout(function(){
2016-09-25 22:18:18 +08:00
adjustControlsWidth(true)
2016-09-26 00:19:55 +08:00
},200);
//@Fack this
$(document).on('click', '#app-navigation-toggle', function(){
setTimeout(function(){
if($('#app-content').css('transform').toString().indexOf('matrix') >= 0){
$('#passman-controls').css('width', 'calc( 100% - 245px)');
$('#passman-controls').css('top', '0');
} else {
$('#passman-controls').css('left', 0);
$('#passman-controls').css('top', '44px');
$('#passman-controls').css('width', '100%');
}
}, 350);
})
});