95 lines
2.6 KiB
JavaScript
Executable file
95 lines
2.6 KiB
JavaScript
Executable file
/***
|
|
Pandora API
|
|
***/
|
|
|
|
var app = new Ox.App({
|
|
apiURL: '/api/',
|
|
config: '/site.json',
|
|
init: 'hello',
|
|
}).launch(function(data) {
|
|
Ox.print('data', data)
|
|
app.config = data.config;
|
|
app.user = data.user;
|
|
if (app.user.group == 'guest') {
|
|
app.user = data.config.user;
|
|
$.browser.safari && Ox.theme('modern');
|
|
}
|
|
|
|
app.$body = $('body');
|
|
app.$document = $(document);
|
|
app.$window = $(window);
|
|
//app.$body.html('');
|
|
|
|
app.$ui = {};
|
|
app.$ui.actionList = constructList();
|
|
app.$ui.actionInfo = Ox.Container().css({padding: '8px'});
|
|
|
|
app.api.apidoc(function(results) { app.docs = results.data.actions; });
|
|
|
|
var $main = new Ox.SplitPanel({
|
|
elements: [
|
|
{
|
|
element: app.$ui.actionList,
|
|
size: 160
|
|
},
|
|
{
|
|
element: app.$ui.actionInfo,
|
|
}
|
|
],
|
|
orientation: 'horizontal'
|
|
});
|
|
|
|
$main.appendTo(app.$body);
|
|
});
|
|
|
|
function constructList() {
|
|
return new Ox.TextList({
|
|
columns: [
|
|
{
|
|
align: "left",
|
|
id: "name",
|
|
operator: "+",
|
|
title: "Name",
|
|
unique: true,
|
|
visible: true,
|
|
width: 140
|
|
},
|
|
],
|
|
columnsMovable: false,
|
|
columnsRemovable: false,
|
|
id: 'actionList',
|
|
request: function(data, callback) {
|
|
if(!data.keys) {
|
|
app.api.apidoc(function(results) {
|
|
var items = [];
|
|
$.each(results.data.actions, function(k) {items.push({'name': k})});
|
|
var result = {'data': {'items': items.length}};
|
|
callback(result);
|
|
});
|
|
} else {
|
|
app.api.apidoc(function(results) {
|
|
var items = [];
|
|
$.each(results.data.actions, function(k) {items.push({'name': k})});
|
|
var result = {'data': {'items': items}};
|
|
callback(result);
|
|
});
|
|
}
|
|
},
|
|
sort: [
|
|
{
|
|
key: "name",
|
|
operator: "+"
|
|
}
|
|
]
|
|
}).bindEvent({
|
|
select: function(event, data) {
|
|
var info = $('<div>');
|
|
$.each(data.ids, function(v, k) {
|
|
console.log(k)
|
|
info.append($("<h2>").html(k));
|
|
info.append($('<pre>').html(app.docs[k].replace('/\n/<br>\n/g')));
|
|
});
|
|
app.$ui.actionInfo.html(info);
|
|
}
|
|
});
|
|
}
|