main.js 8.08 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

require.config({
    /* starting point for application */
21 22 23
    'hbs': {
        'disableI18n': true, // This disables the i18n helper and doesn't require the json i18n files (e.g. en_us.json)
        'helperPathCallback': // Callback to determine the path to look for helpers
24 25 26
            function(name) { // ('/template/helpers/'+name by default)
            return 'modules/Helpers';
        },
27 28
        'templateExtension': 'html', // Set the extension automatically appended to templates
        'compileOptions': {} // options object which is passed to Handlebars compiler
29 30 31 32 33 34 35 36
    },
    /**
     * Requested as soon as the loader has processed the configuration. It does
     * not block any other require() calls from starting their requests for
     * modules, it is just a way to specify some modules to load asynchronously
     * as part of a config block.
     * @type {Array} An array of dependencies to load.
     */
37
    'deps': ['marionette'],
38 39 40 41 42 43

    /**
     * The number of seconds to wait before giving up on loading a script.
     * @default 7 seconds
     * @type {Number}
     */
44
    'waitSeconds': 30,
45

46 47 48 49
    'shim': {
        'backbone': {
            'deps': ['underscore', 'jquery'],
            'exports': 'Backbone'
50
        },
51
        'jquery-ui': {
52
            'deps': ['jquery']
53
        },
54 55 56
        'asBreadcrumbs': {
            'deps': ['jquery'],
            'exports': 'asBreadcrumbs'
57
        },
58 59 60
        'bootstrap': {
            'deps': ['jquery'],
            'exports': 'jquery'
61
        },
62 63
        'underscore': {
            'exports': '_'
64
        },
65 66
        'marionette': {
            'deps': ['backbone']
67
        },
68 69 70
        'backgrid': {
            'deps': ['backbone'],
            'exports': 'Backgrid'
71 72
        },
        'backgrid-paginator': {
73
            'deps': ['backbone', 'backgrid']
74 75
        },
        'backgrid-filter': {
76
            'deps': ['backbone', 'backgrid']
77 78
        },
        'backgrid-orderable': {
79
            'deps': ['backbone', 'backgrid'],
80 81
        },
        'backgrid-sizeable': {
82
            'deps': ['backbone', 'backgrid'],
83
        },
84
        'backgrid-select-all': {
85
            'deps': ['backbone', 'backgrid']
86
        },
87 88
        'hbs': {
            'deps': ['underscore', 'handlebars']
89
        },
90 91
        'd3': {
            'exports': ['d3']
92 93
        },
        'd3-tip': {
94 95
            'deps': ['d3'],
            'exports': ['d3-tip']
96
        },
97 98 99 100
        'datetimepicker': {
            'deps': ['jquery'],
            'exports': 'datetimepicker'
        },
101 102 103
        'dagreD3': {
            'deps': ['d3'],
            'exports': ['dagreD3']
104
        },
105 106 107 108 109
        'pnotify': {
            'exports': ['pnotify']
        },
        'jquery-placeholder': {
            'deps': ['jquery']
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        }
    },

    paths: {
        'jquery': 'libs/jquery/js/jquery.min',
        'underscore': 'libs/underscore/underscore-min',
        'bootstrap': 'libs/bootstrap/js/bootstrap.min',
        'backbone': 'libs/backbone/backbone-min',
        'backbone.babysitter': 'libs/backbone.babysitter/lib/backbone.babysitter.min',
        'marionette': 'libs/backbone-marionette/backbone.marionette.min',
        'backbone.paginator': 'libs/backbone-paginator/backbone.paginator.min',
        'backbone.wreqr': 'libs/backbone-wreqr/backbone.wreqr.min',
        'backgrid': 'libs/backgrid/js/backgrid',
        'backgrid-filter': 'libs/backgrid-filter/js/backgrid-filter.min',
        'backgrid-orderable': 'libs/backgrid-orderable-columns/js/backgrid-orderable-columns',
        'backgrid-paginator': 'libs/backgrid-paginator/js/backgrid-paginator.min',
        'backgrid-sizeable': 'libs/backgrid-sizeable-columns/js/backgrid-sizeable-columns',
        'asBreadcrumbs': 'libs/jquery-asBreadcrumbs/js/jquery-asBreadcrumbs.min',
        'd3': 'libs/d3/d3.min',
        'd3-tip': 'libs/d3/index',
        'tmpl': 'templates',
        'requirejs.text': 'libs/requirejs-text/text',
132 133 134 135
        'handlebars': 'external_lib/require-handlebars-plugin/js/handlebars',
        'json2': 'external_lib/require-handlebars-plugin/js/json2',
        'hbs': 'external_lib/require-handlebars-plugin/js/hbs',
        'i18nprecompile': 'external_lib/require-handlebars-plugin/js/i18nprecompile',
136
        'dagreD3': 'libs/dagre-d3/dagre-d3.min',
137
        'select2': 'libs/select2/select2.full.min',
138
        'backgrid-select-all': 'libs/backgrid-select-all/backgrid-select-all.min',
139
        'moment': 'libs/moment/js/moment.min',
140
        'jquery-ui': 'external_lib/jquery-ui/jquery-ui.min',
141
        'datetimepicker': 'external_lib/datetimepicker/bootstrap-datetimepicker',
142 143 144
        'pnotify': 'external_lib/pnotify/pnotify',
        'pnotify.buttons': 'external_lib/pnotify/pnotify.buttons',
        'pnotify.confirm': 'external_lib/pnotify/pnotify.confirm',
145 146
        'jquery-placeholder': 'libs/jquery-placeholder/js/jquery.placeholder',
        'platform': 'libs/platform/platform'
147 148 149 150 151 152 153 154
    },

    /**
     * If set to true, an error will be thrown if a script loads that does not
     * call define() or have a shim exports string value that can be checked.
     * To get timely, correct error triggers in IE, force a define/shim export.
     * @type {Boolean}
     */
155
    'enforceDefine': false
156 157 158 159
});

require(['App',
    'router/Router',
160 161
    'utils/CommonViewFunction',
    'utils/Globals',
162
    'utils/UrlLinks',
163
    'collection/VEntityList',
164 165
    'utils/Overrides',
    'bootstrap',
166
    'd3',
167
    'select2'
168 169 170 171
], function(App, Router, CommonViewFunction, Globals, UrlLinks, VEntityList) {
    var that = this;
    this.asyncFetchCounter = 2;
    this.entityDefCollection = new VEntityList();
172
    that.entityDefCollection.url = UrlLinks.entitiesDefApiUrl();
173 174 175 176 177 178 179 180 181 182

    App.appRouter = new Router({
        entityDefCollection: this.entityDefCollection
    });

    var startApp = function() {
        if (that.asyncFetchCounter === 0) {
            App.start();
        }
    };
183
    CommonViewFunction.userDataFetch({
184
        url: UrlLinks.sessionApiUrl(),
185 186 187 188 189
        callback: function(response) {
            if (response && response.userName) {
                Globals.userLogedIn.status = true;
                Globals.userLogedIn.response = response;
            }
190 191 192
            if (response && response['atlas.feature.taxonomy.enable'] !== undefined) {
                Globals.taxonomy = response['atlas.feature.taxonomy.enable']
            }
193 194 195 196 197 198
            if (response && response['atlas.entity.create.allowed'] !== undefined) {
                Globals.entityCreate = response['atlas.entity.create.allowed'];
            }
            if (response && response['atlas.entity.update.allowed'] !== undefined) {
                Globals.entityUpdate = response['atlas.entity.update.allowed'];
            }
199 200 201 202 203 204 205 206 207 208
            if (response && response['atlas.ui.editable.entity.types'] !== undefined) {
                var entityTypeList = response['atlas.ui.editable.entity.types'].trim().split(",");
                if (entityTypeList.length) {
                    if (entityTypeList[0] === "*") {
                        Globals.entityTypeConfList = [];
                    } else if (entityTypeList.length > 0) {
                        Globals.entityTypeConfList = entityTypeList;
                    }
                }
            }
209 210 211 212 213 214 215 216
            --that.asyncFetchCounter;
            startApp();
        }
    });
    that.entityDefCollection.fetch({
        complete: function() {
            --that.asyncFetchCounter;
            startApp();
217 218
        }
    });
219
});