blob: 3cad7f450be80c52ff69bbd65248d7160b4cd559 [file] [log] [blame]
Matteo Scandolo8cc22e42016-04-12 09:00:04 -07001'use strict';
2
3angular.module('xos.sampleView', [
4 'ngResource',
5 'ngCookies',
Matteo Scandolo8cc22e42016-04-12 09:00:04 -07006 'ui.router',
7 'xos.helpers'
8])
9.config(($stateProvider) => {
10 $stateProvider
11 .state('user-list', {
12 url: '/',
13 template: '<users-list></users-list>'
14 });
15})
16.config(function($httpProvider){
17 $httpProvider.interceptors.push('NoHyperlinks');
18})
19.directive('usersList', function(){
20 return {
21 restrict: 'E',
22 scope: {},
23 bindToController: true,
24 controllerAs: 'vm',
25 templateUrl: 'templates/users-list.tpl.html',
Matteo Scandolob0280752016-04-25 10:31:22 -070026 controller: function(Users, _){
Matteo Scandolo18adcb52016-04-14 12:06:50 -070027
28 this.tableConfig = {
29 columns: [
30 {
31 label: 'E-Mail',
32 prop: 'email'
33 },
34 {
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070035 label: 'First Name',
Matteo Scandolo18adcb52016-04-14 12:06:50 -070036 prop: 'firstname'
37 },
38 {
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070039 label: 'Last Name',
Matteo Scandolo18adcb52016-04-14 12:06:50 -070040 prop: 'lastname'
41 }
42 ],
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070043 classes: 'table table-striped table-condensed',
44 actions: [
45 {
46 label: 'delete',
47 icon: 'remove',
48 cb: (user) => {
49 console.log(user);
Matteo Scandolob0280752016-04-25 10:31:22 -070050 // _.remove(this.users, {id: user.id});
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070051 },
52 color: 'red'
53 }
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070054 ],
Matteo Scandolo03e59602016-04-14 17:19:08 -070055 filter: 'field',
Matteo Scandolocc6954e2016-04-15 12:20:14 -070056 order: true,
Matteo Scandolo7bc39c42016-04-20 11:38:42 -070057 pagination: {
Matteo Scandolob0280752016-04-25 10:31:22 -070058 pageSize: 10
Matteo Scandolo7bc39c42016-04-20 11:38:42 -070059 }
Matteo Scandolo18adcb52016-04-14 12:06:50 -070060 };
61
Matteo Scandolo74b6ef72016-04-15 16:43:48 -070062 this.alertConfig = {
63 type: 'danger',
64 closeBtn: true
65 }
66
Matteo Scandolo7bc39c42016-04-20 11:38:42 -070067 this.formConfig = {
68 exclude: ['password'],
Matteo Scandolo840260d2016-04-22 09:56:48 -070069 formName: 'myForm',
Matteo Scandolo7bc39c42016-04-20 11:38:42 -070070 fields: {
Matteo Scandolo90ed0642016-04-25 10:11:56 -070071 firstname: {
72 validators: {
73 minlength: 10
74 }
75 },
76 lastname: {
77 validators: {
78 maxlength: 3
79 }
80 },
81 user_url: {
82 validators: {
83 required: true
84 }
85 }
Matteo Scandolo7bc39c42016-04-20 11:38:42 -070086 },
87 actions: [
88 {
89 label: 'Save',
90 icon: 'ok', // refers to bootstraps glyphicon
91 cb: (user) => { // receive the model
92 console.log(user);
93 },
94 class: 'success'
95 }
96 ]
97 }
Matteo Scandolo74b6ef72016-04-15 16:43:48 -070098
Matteo Scandolo8cc22e42016-04-12 09:00:04 -070099 // retrieving user list
Matteo Scandolobd2e5cd2016-04-12 11:59:29 -0700100 Users.query().$promise
Matteo Scandolo8cc22e42016-04-12 09:00:04 -0700101 .then((users) => {
Matteo Scandolo90ed0642016-04-25 10:11:56 -0700102 this.users = users.concat(users).concat(users).concat(users);
Matteo Scandolo8cc22e42016-04-12 09:00:04 -0700103 })
104 .catch((e) => {
105 throw new Error(e);
106 });
107 }
108 };
109});