walnut_launchpad.html/js/app.js

178 righe
4.2 KiB
JavaScript

2017-09-29 00:01:28 +00:00
(function () {
'use strict';
var angular = window.angular;
var OAUTH3 = window.OAUTH3;
2017-10-04 22:27:36 +00:00
var app = window.app = angular.module('launchpad', ['oauth3.org', 'ui.router', 'LocalStorageModule', 'angucomplete-alt', 'ez.fileTree', 'ui.multiselect']);
2017-09-29 00:01:28 +00:00
app.directive('daplieFileChange', function () {
return {
restrict: 'A',
require:"ngModel",
link: function (scope, element, attrs, ngModel) {
element.bind('change', function (event) {
var files = event.target.files;
ngModel.$setViewValue(files[0]);
scope.$eval(attrs.daplieFileChange);
});
}
};
});
2017-10-30 21:45:58 +00:00
app.config([
'$stateProvider', '$urlRouterProvider', 'localStorageServiceProvider', '$urlMatcherFactoryProvider',
function ($stateProvider, $urlRouterProvider, localStorageServiceProvider, $urlMatcherFactoryProvider) {
$urlMatcherFactoryProvider.strictMode(false);
2017-08-09 18:41:43 +00:00
localStorageServiceProvider.setPrefix('launchpad').setStorageType('sessionStorage');
2017-08-09 04:23:19 +00:00
2017-08-09 18:41:43 +00:00
$urlRouterProvider.otherwise('/splash-page');
2017-10-30 21:45:58 +00:00
2017-08-09 18:41:43 +00:00
$stateProvider
2017-08-12 03:49:18 +00:00
.state('splash-page', {
2017-10-30 21:45:58 +00:00
data: { requiresLogin: false, session: null },
2017-08-12 03:49:18 +00:00
url: '/splash-page',
templateUrl: '/templates/splash-page.html',
2017-08-21 22:06:38 +00:00
controller: 'loginCtrl as vm'
2017-08-12 03:49:18 +00:00
})
2017-08-09 18:41:43 +00:00
.state('app',{
2017-08-24 22:51:19 +00:00
data: { requiresLogin: true, session: null },
2017-08-11 21:37:06 +00:00
url: '/',
2017-08-21 22:06:38 +00:00
controller: 'loginCtrl as vm',
2017-08-09 18:41:43 +00:00
views: {
'header': {
templateUrl: '/templates/partials/header.html',
},
'menu': {
templateUrl: '/templates/partials/menu.html'
},
'content': {
templateUrl: '/templates/home.html'
}
2017-08-11 19:21:35 +00:00
}
2017-08-09 18:41:43 +00:00
})
.state('app.home', {
url: 'home',
views: {
'content@': {
templateUrl: 'templates/home.html',
2017-08-21 20:28:58 +00:00
controller: 'loginCtrl as vm'
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.bolt', {
url: 'bolt',
views: {
'content@': {
templateUrl: 'templates/bolt.html',
2017-08-21 20:28:58 +00:00
controller: 'boltCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.files', {
url: 'files',
views: {
'content@': {
templateUrl: 'templates/files.html',
2017-08-21 20:28:58 +00:00
controller: 'fileCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.contacts', {
url: 'contacts',
views: {
'content@': {
templateUrl: 'templates/contacts.html',
2017-08-21 20:28:58 +00:00
controller: 'contactCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.music', {
url: 'music',
views: {
'content@': {
templateUrl: 'templates/music.html',
2017-08-21 20:28:58 +00:00
controller: 'musicCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.email', {
url: 'email',
views: {
'content@': {
templateUrl: 'templates/email.html',
2017-08-21 20:28:58 +00:00
controller: 'emailCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.website', {
url: 'website',
views: {
'content@': {
templateUrl: 'templates/website.html',
2017-08-21 20:28:58 +00:00
controller: 'websiteCtrl as vm',
2017-08-09 18:41:43 +00:00
}
}
})
.state('app.dns', {
url: 'dns',
views: {
'content@': {
templateUrl: 'templates/dns.html',
controller: 'dnsCtrl',
2017-08-09 18:41:43 +00:00
}
}
2017-08-18 21:13:43 +00:00
})
2017-10-21 07:24:24 +00:00
.state('app.applications', {
url: 'apps',
views: {
'content@': {
templateUrl: 'templates/applications.html',
controller: '',
}
}
})
.state('app.devices', {
url: 'devices',
views: {
'content@': {
templateUrl: 'templates/devices.html',
controller: '',
}
}
})
2017-08-18 21:13:43 +00:00
.state('app.account-settings', {
url: 'account-settings',
views: {
'content@': {
templateUrl: 'templates/account-settings.html',
2017-09-29 00:01:28 +00:00
controller: 'profileCtrl as vm',
2017-08-18 21:13:43 +00:00
}
}
2017-08-09 18:41:43 +00:00
});
2017-08-10 17:36:59 +00:00
}]);
2017-08-24 22:51:19 +00:00
app.run(['$rootScope', '$state', 'Auth', '$location', function($rootScope, $state, Auth, $location) {
2017-10-31 18:24:52 +00:00
$rootScope.urlCrumbs = [];
2017-08-09 18:41:43 +00:00
$rootScope.$on('$stateChangeStart', function(event, toState, toParams, fromState, fromParams) {
2017-08-10 17:36:59 +00:00
var requiresLogin = toState.data.requiresLogin;
var Crumbs = new Object();
Crumbs = {
absUrl: $location.$$absUrl,
url: $location.$$url,
path: $location.$$path,
params: $location.$$search,
toPath: toState.url,
fromPath: fromState.url
};
$rootScope.urlCrumbs.push(Crumbs);
2017-08-10 22:33:54 +00:00
if (requiresLogin && !Auth.isLoggedIn()) {
event.preventDefault();
$state.go('splash-page', { 'toState': toState.name });
2017-08-10 22:33:54 +00:00
}
2017-08-10 17:36:59 +00:00
});
2017-08-09 04:23:19 +00:00
}]);
2017-09-29 00:01:28 +00:00
}());