summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/file-opener/file-opener.ts
blob: 95e43262f5aa9c54c9deba025edacfe5addfb473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
'use strict';

export interface IFileOpenerScope extends ng.IScope {
    importFile:any;
    testsId:any;
    extensions:string;

    onFileSelect():void;
    onFileUpload(file:any):void;
    getExtensionsWithDot():string;
}

export class FileOpenerDirective implements ng.IDirective {

    constructor(private $compile:ng.ICompileService) {
    }

    scope = {
        onFileUpload: '&',
        testsId: '@',
        extensions: '@'
    };

    restrict = 'AE';
    replace = true;
    template = ():string => {
        return require('./file-opener.html');
    };

    link = (scope:IFileOpenerScope, element:any) => {

        scope.onFileSelect = () => {
            scope.onFileUpload({file: scope.importFile});
            element.html('app/directives/file-opener/file-opener.html');
            this.$compile(element.contents())(scope);
        };

        scope.getExtensionsWithDot = ():string => {
            let ret = [];
            _.each(scope.extensions.split(','), function (item) {
                ret.push("." + item.toString());
            });
            return ret.join(",");
        };

    };

    public static factory = ($compile:ng.ICompileService)=> {
        return new FileOpenerDirective($compile);
    };

}

FileOpenerDirective.factory.$inject = ['$compile'];