summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html
blob: 89091c0517c200ece0fea19b2bb4c801dfddd6bf (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!--
    * 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.    
-->
<html>
<head>  
<link rel="stylesheet" type="text/css" href="/ui.css">
<script type="text/javascript" src="/util.js"></script>
<script type="text/javascript" src="/elemutil.js"></script>
<script type="text/javascript" src="/xmlutil.js"></script>
<script type="text/javascript" src="/atomutil.js"></script>
<script type="text/javascript" src="/scdl.js"></script>
<script type="text/javascript" src="/ui.js"></script>
<script type="text/javascript" src="/component.js"></script>
</head>  
<body>

<div id="bodydiv" style="position: absolute; top: 0px; left: 0px; right: 0px;">

<div id="apps"></div>
<br/>
<input type="button" id="createAppButton" value="Create App" title="Create a new app"/>
<br/>
<br/>

<div id="newApp" style="visibility: hidden; height: 100%;">
<table style="width: 100%;">
<tr><th id="newAppHeader" class="thl thr" style="padding-top: 4px; padding-bottom:4px; border-style: none;">Create an App</th></tr>
<tr><td></td></tr>
</table>
<br/>

<table style="width: 100%;">
<tr><td><b>App Name:</b></td></tr>
<tr><td><input type="text" id="appName" size="10"/></td></tr>
<tr><tr><td><b>App Title:</b></td></tr>
<tr><td><input type="text" id="appTitle" size="80"/></td></tr>
<tr><tr><td><b>Category:</b></td></tr>
<tr><td><input type="text" id="appCategory" size="15" value="Cool Apps"/></td></tr>
<tr><tr><td><b>Description:</b></td></tr>
<tr><td><textarea id="appDescription" cols="80" rows="5">Enter a short description of your app here</textarea></td></tr>
<tr><td>
<input id="createAppOKButton" type="submit" style="font-weight: bold;" value="Create" title="Create the app"/>
<input id="createAppCancelButton" type="button" value="Cancel"/>
</td></tr>
</table>
<br/>
<br/>
</div>

</div>

<script type="text/javascript">
if (ui.isIE()) $('bodydiv').style.right = -20;

// Init service references
var editWidget = sca.component("EditWidget");
var dashboard = sca.reference(editWidget, "dashboard");

/**
 * Get and display list of apps.
 */
function getapps(sync) {
    function display(doc) {
        var apps = '<table style="width: 100%;">';
        apps += '<tr><th class="thl thr" style="width: 225px; min-width: 225px; padding-top: 4px; padding-right: 4px;">App</th>' +
            '<th class="thr thl" style="width: 100%;">Title</th>' +
            '<th class="thl thr" style="width: 30px;">Sharing</th></tr>';

        var feed = car(elementsToValues(atom.readATOMFeed(mklist(doc))));
        var entries = cadr(assoc("'entry", cdr(feed)));
        for (var i = 0; i < length(entries); i++) {
            var entry = entries[i];
            title = cadr(assoc("'title", entry))
            name = cadr(assoc("'id", entry))
            hreflink = '<a href=\"' + '/graph/?app=' + name + '\" target=\"_parent\">';
            sharing = 'Shared with everybody';

            apps += '<tr class="trb"><td>';
            apps += hreflink + '<img src="/public/app.png" style="width: 50px; height: 50px; margin-right: 10px; vertical-align: middle;"></img>' + '</a>';
            apps += '&nbsp;' + hreflink + name + '</a></td>';
            apps += '<td class="tdw">' + title + '</td>';
            apps += '<td>' + sharing + '</td>';
            apps += '</tr>';
        }
        apps += '</table>';
        $('apps').innerHTML = apps;
    }

    if (sync) {
        display(dashboard.get(''));
    } else {
        dashboard.get('', function(doc) {
            display(doc);
        });
    }
}

/**
 * Default field values.
 */
var deftitle = 'Enter the title of your app here';
var defcategory = 'Cool Apps';
var defdate = 'Feb 4, 2011';
var defdesc = 'Enter a short description of your app here';

/**
 * Display create app form.
 */
$('createAppButton').onclick = function() {
    $('appName').value = '';
    $('appTitle').value = deftitle;
    $('appCategory').value = defcategory;
    $('appDescription').value = defdesc;
    $('newAppHeader').style.borderStyle = 'solid';
    $('newApp').style.visibility = 'visible';
    $('appName').focus();
    return false;
};

/**
 * Create an app.
 */
$('createAppOKButton').onclick = function() {
    var name = $('appName').value;
    if (name == '')
        return false;
    var title = $('appTitle').value;
    var app = mklist(mklist("'entry", mklist("'title", title != deftitle && title != ''? title : name), mklist("'id", name)));
    var entry = atom.writeATOMEntry(valuesToElements(app));
    dashboard.put(name, car(entry));
    getapps();
    $('newApp').style.visibility = 'hidden';
    return false;
};

/**
 * Cancel creating an app.
 */
$('createAppCancelButton').onclick = function() {
    $('newApp').style.visibility = 'hidden';
    return false;
};

/**
 * Delete an app.
 */
/*
$('deleteAppLink').onclick = function() {
    var apps = $('apps');
    if (isNil(apps))
        return false;
    if (isNil(apps.length))
        apps = mklist(apps);
    for (var i = 0; i < length(apps); i++) {
        if (apps[i].checked) {
            var name = apps[i].value;
            dashboard.del(name);
        }
    }
    getapps();
    return false;
};
*/

// Get and display the list of apps
getapps(true);

</script>
</body>
</html>