e56d676e75f25cb651b8b60395d84a41c451e4a7
[nit.git] / share / nitweb / javascripts / entities.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('entities', ['model'])
20
21 .controller('EntityCtrl', ['Model', '$routeParams', '$scope', function(Model, $routeParams, $scope) {
22 Model.loadEntity($routeParams.id,
23 function(data) {
24 $scope.mentity = data;
25 }, function(err) {
26 $scope.error = err;
27 });
28 }])
29
30 .directive('entityLink', function() {
31 return {
32 restrict: 'E',
33 scope: {
34 mentity: '='
35 },
36 templateUrl: '/directives/entity/link.html'
37 };
38 })
39
40 .directive('entityDoc', function() {
41 return {
42 restrict: 'E',
43 scope: {
44 mentity: '='
45 },
46 templateUrl: '/directives/entity/doc.html'
47 };
48 })
49
50 .directive('entitySignature', function() {
51 return {
52 restrict: 'E',
53 scope: {
54 mentity: '='
55 },
56 templateUrl: '/directives/entity/signature.html'
57 };
58 })
59
60 .directive('entityTag', function() {
61 return {
62 restrict: 'E',
63 scope: {
64 mentity: '='
65 },
66 replace: true,
67 templateUrl: '/directives/entity/tag.html'
68 };
69 })
70
71 .directive('entityLocation', function() {
72 return {
73 restrict: 'E',
74 scope: {
75 mentity: '='
76 },
77 templateUrl: '/directives/entity/location.html'
78 };
79 })
80
81 .directive('entityCard', function() {
82 return {
83 restrict: 'E',
84 scope: {
85 mentity: '='
86 },
87 replace: true,
88 templateUrl: '/directives/entity/card.html'
89 };
90 })
91
92 .directive('entityList', function() {
93 return {
94 restrict: 'E',
95 scope: {
96 listEntities: '=',
97 listTitle: '@',
98 },
99 templateUrl: '/directives/entity/list.html',
100 };
101 })
102 })();