Merge: core: move file related services from `String` to `Text`
[nit.git] / share / nitweb / javascripts / users.js
1 /*
2 * Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 (function() {
18 angular
19 .module('users', ['ngSanitize'])
20
21 .config(function($stateProvider, $locationProvider) {
22 $stateProvider
23 .state('user', {
24 url: '/user',
25 templateUrl: 'views/user.html',
26 controller: 'UserCtrl',
27 controllerAs: 'userCtrl'
28 })
29 .state('login', {
30 url: '/login',
31 controller : function(){
32 window.location.replace('/login');
33 },
34 template : "<div></div>"
35 })
36 .state('logout', {
37 controller : function(){
38 window.location.replace('/logout');
39 },
40 template : "<div></div>"
41 })
42 })
43
44 .factory('User', [ '$http', function($http) {
45 return {
46 loadUser: function(cb, cbErr) {
47 $http.get('/api/user')
48 .success(cb)
49 .error(cbErr);
50 },
51 loadUserStars: function(cb, cbErr) {
52 $http.get('/api/feedback/user/stars')
53 .success(cb)
54 .error(cbErr);
55 },
56 }
57 }])
58
59 .controller('UserCtrl', ['User', '$scope', function(User, $scope) {
60 this.loadUser = function() {
61 User.loadUser(
62 function(data) {
63 $scope.user = data;
64 }, function(err) {
65 $scope.error = err;
66 });
67 };
68 this.loadGrades = function() {
69 User.loadUserStars(
70 function(data) {
71 $scope.ratings = data;
72 }, function(err) {
73 $scope.error = err;
74 });
75 };
76 this.loadUser();
77 this.loadGrades();
78 }])
79
80 .directive('userMenu', ['User', '$rootScope', function(User, $rootScope) {
81 return {
82 restrict: 'E',
83 templateUrl: '/directives/user/user-menu.html',
84 link: function ($scope, element, attrs) {
85 $scope.loadUser = function() {
86 User.loadUser(
87 function(data) {
88 $rootScope.user = data;
89 }, function(err) {
90 //$scope.error = err;
91 });
92 }
93 $scope.loadUser();
94 }
95 };
96 }])
97
98 .directive('userSidebar', ['User', '$rootScope', function(User, $rootScope) {
99 return {
100 restrict: 'E',
101 templateUrl: '/directives/user/sidebar.html',
102 };
103 }])
104 })();