summaryrefslogtreecommitdiff
path: root/src/client/app.js
blob: d2c25b1dcba998f4c6e8203bed1b9522817db11b (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
    This file is part of rhizi, a collaborative knowledge graph editor.
    Copyright (C) 2014-2015  Rhizi

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published
    by the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

(function() {

    var lib_path = '/static/lib/';
    var fragmentd_path = '${fragment_d_path}'; // [!] see README.md#Deployment note

    var config = {
        shim: {
            'socketio': { exports: 'io' },
            'Bacon': {
                deps: ['jquery'],
                exports: 'Bacon',
            }
        },
        paths: {
            autocomplete: lib_path + 'autocomplete',
            Bacon: lib_path + 'Bacon',
            caret: lib_path + 'caret',
            cola: lib_path + 'cola',
            domain_types: fragmentd_path + '/js/domain_types',
            d3: lib_path + 'd3/d3',
            feedback: lib_path + 'feedback',
            FileSaver: lib_path + 'FileSaver',
            html2canvas: lib_path + 'html2canvas',
            jquery: lib_path + 'jquery',
            socketio: lib_path + 'socket.io/socket.io.min_0.9.10',
            underscore: lib_path + 'underscore',
        }
    }

    if (rz_config.optimized_main) {
        config.paths.main = 'main-built';
    }
    config.urlArgs = (typeof local_config != 'undefined') && local_config.urlArgs;

if (window.is_node) {
    // Testing path only
    console.log('app: running under node');
    config.baseUrl = '../src/';
    window.rhizi_require_config = config;
} else {
    // [!] no need to configure baseUrl, as in
    //     config.baseUrl = ...
    //     generated script URLs include the basepath of app.js

    // Main app path
    require.config(config);

    requirejs(['main'], function(main) {
        console.log('starting rhizi logic');
        main.main();
    });
}
}());