bab1fcecfbc519b1613cd1127cbf9e3a25996532
[portal.git] / ecomp-portal-FE-common / client / app / directives / file-upload / file-upload.directive.js
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 /**
21  * Created by Rui Lu on 12/12/16.
22  */
23 'use strict';
24
25 angular.module('ecompApp').directive('fileModel', [ '$parse', function($parse) {
26         return {
27                 restrict : 'A',
28                 link : function(scope, element, attrs) {
29                         var model = $parse(attrs.fileModel);
30                         var modelSetter = model.assign;
31
32                         element.bind('change', function() {
33                                 scope.$apply(function() {
34                                         modelSetter(scope, element[0].files[0]);
35                                 });
36                         });
37                 }
38         };
39 } ]);