blob: 17528e640fef58cc09f3c0625ed67ba4015ab955 [file] [log] [blame]
Matteo Scandolobe342fa2016-06-08 15:54:55 -07001/*
Brian O'Connor8fb63ec2017-08-03 22:46:35 -07002 * Copyright 2015 Open Networking Foundation
Matteo Scandolobe342fa2016-06-08 15:54:55 -07003 *
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
17angular.module('mCord')
18 .directive('relatedProfiles', function () {
19 return {
20 restrict: 'E',
21 templateUrl: 'app/components/related-profiles/related-profiles.tpl.html',
22 scope: {
Matteo Scandolod9fa8062016-06-10 13:46:15 -070023 model: '=',
24 config: '='
Matteo Scandolobe342fa2016-06-08 15:54:55 -070025 },
26 bindToController: true,
27 controllerAs: 'vm',
Matteo Scandoloed9e3ec2016-06-13 15:20:11 -070028 controller: function($scope, _){
Matteo Scandolo05bff8c2016-06-13 16:55:20 -070029 $scope.$watch(() => this.model, model => {
30 if(model){
Matteo Scandolobe342fa2016-06-08 15:54:55 -070031 loadProfiles();
32 }
33 });
34
35 const loadProfiles = () => {
Matteo Scandolobe342fa2016-06-08 15:54:55 -070036 this.model.getProfiles()
37 .then((profiles) => {
38 this.profiles = profiles;
39 });
40 };
Matteo Scandoloed9e3ec2016-06-13 15:20:11 -070041
42 this.deleteProfile = (id) => {
43 this.model.deleteProfile(id)
44 .then(() => {
45 _.remove(this.profiles, p => p.Name === id);
46 });
Matteo Scandolo05bff8c2016-06-13 16:55:20 -070047 };
48
49 $scope.$on('profile.add', (evt, data) => {
50 if(this.model.IMSI === data.targetId || this.model.eNBId === data.targetId){
51 this.profiles.push(data.profile);
52 }
53 });
Matteo Scandolobe342fa2016-06-08 15:54:55 -070054 }
55 };
56 });