2014-05-04 17:26:43 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
oml.ui.appDialog = function() {
|
|
|
|
|
|
|
|
var ui = oml.user.ui,
|
|
|
|
|
2014-05-14 09:57:11 +00:00
|
|
|
tabs = Ox.getObjectById(oml.config.pages, 'app').parts.map(function(tab) {
|
|
|
|
return {
|
|
|
|
id: tab.id,
|
|
|
|
title: tab.title.replace(/ Open Media Library$/, ''),
|
|
|
|
selected: tab.id == ui.part.app
|
|
|
|
};
|
|
|
|
}),
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-05-14 09:57:11 +00:00
|
|
|
$panel = Ox.TabPanel({
|
|
|
|
content: function(id) {
|
2014-08-22 16:42:08 +00:00
|
|
|
var $content = Ox.Element(),
|
|
|
|
$logo = Ox.Element(),
|
2014-05-14 09:57:11 +00:00
|
|
|
$text = Ox.Element()
|
|
|
|
.addClass('OxTextPage'),
|
|
|
|
title = Ox.getObjectById(
|
|
|
|
Ox.getObjectById(oml.config.pages, 'app').parts,
|
|
|
|
id
|
|
|
|
).title;
|
|
|
|
$('<img>')
|
2014-05-04 17:26:43 +00:00
|
|
|
.attr({
|
|
|
|
src: '/static/png/oml.png'
|
|
|
|
})
|
|
|
|
.css({
|
2014-05-14 09:57:11 +00:00
|
|
|
position: 'absolute',
|
|
|
|
left: '16px',
|
|
|
|
top: '16px',
|
2014-05-04 17:26:43 +00:00
|
|
|
width: '192px',
|
|
|
|
height: '192px'
|
|
|
|
})
|
|
|
|
.appendTo($logo);
|
2014-08-22 16:42:08 +00:00
|
|
|
if (id == 'update') {
|
|
|
|
$content.html('<h1><b>' + title + '</b></h1>');
|
2014-09-01 12:01:41 +00:00
|
|
|
var $update = Ox.Element()
|
|
|
|
.css({
|
|
|
|
paddingTop: '4px',
|
|
|
|
paddingBottom: '16px'
|
|
|
|
}).appendTo($content);
|
2014-08-22 16:42:08 +00:00
|
|
|
oml.api.getVersion(function(response) {
|
|
|
|
if (response.data.update) {
|
2014-09-01 12:01:41 +00:00
|
|
|
if (response.data.current == 'git') {
|
|
|
|
$update.html('A new version of Open Media Library is available in git.<br>To update run: <code>./ctl update</code>');
|
|
|
|
} else {
|
|
|
|
$update.html('A new version of Open Media Library is available');
|
|
|
|
Ox.Button({
|
|
|
|
id: 'update',
|
|
|
|
title: Ox._('Install Now')
|
|
|
|
}).bindEvent({
|
|
|
|
click: function() {
|
|
|
|
this.options({
|
|
|
|
disabled: true,
|
|
|
|
title: 'Installing...'
|
|
|
|
});
|
|
|
|
oml.api.restart(function(response) {
|
|
|
|
if (response.status.code == 200) {
|
|
|
|
setTimeout(reload, 500);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).appendTo($content);
|
|
|
|
}
|
2014-08-22 16:42:08 +00:00
|
|
|
} else {
|
2014-09-01 12:01:41 +00:00
|
|
|
$update.html('No updates available')
|
2014-08-22 16:42:08 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$content.html('<h1><b>' + title + '</b></h1>'
|
|
|
|
+ '<p>The lazy brown fox jumped over the lazy black fox, but otherwise not really much happened here since you last checked.');
|
|
|
|
}
|
2014-05-04 17:26:43 +00:00
|
|
|
$('<div>')
|
2014-05-14 09:57:11 +00:00
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: '16px',
|
2014-05-16 08:06:11 +00:00
|
|
|
right: '16px',
|
|
|
|
top: '16px',
|
2014-05-14 09:57:11 +00:00
|
|
|
overflowY: 'auto'
|
|
|
|
})
|
2014-08-22 16:42:08 +00:00
|
|
|
.append($content)
|
2014-05-14 09:57:11 +00:00
|
|
|
.appendTo($text);
|
2014-05-04 17:26:43 +00:00
|
|
|
return Ox.SplitPanel({
|
|
|
|
elements: [
|
|
|
|
{
|
|
|
|
element: $logo,
|
|
|
|
size: 208
|
|
|
|
},
|
|
|
|
{
|
|
|
|
element: $text
|
|
|
|
}
|
|
|
|
],
|
|
|
|
orientation: 'horizontal'
|
|
|
|
});
|
2014-05-14 09:57:11 +00:00
|
|
|
},
|
|
|
|
tabs: tabs
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
change: function(data) {
|
2014-05-04 17:26:43 +00:00
|
|
|
oml.UI.set({'part.app': data.selected});
|
2014-05-14 09:57:11 +00:00
|
|
|
}
|
|
|
|
}),
|
2014-05-04 17:26:43 +00:00
|
|
|
|
|
|
|
that = Ox.Dialog({
|
|
|
|
buttons: [
|
|
|
|
Ox.Button({
|
|
|
|
id: 'close',
|
|
|
|
title: Ox._('Close')
|
|
|
|
}).bindEvent({
|
|
|
|
click: function() {
|
|
|
|
that.close();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
],
|
|
|
|
closeButton: true,
|
|
|
|
content: $panel,
|
|
|
|
fixedSize: true,
|
|
|
|
height: 384,
|
|
|
|
removeOnClose: true,
|
|
|
|
title: 'Open Media Library',
|
|
|
|
width: 768
|
|
|
|
})
|
|
|
|
.bindEvent({
|
2014-05-14 09:57:11 +00:00
|
|
|
close: function() {
|
2014-05-04 17:26:43 +00:00
|
|
|
if (ui.page == 'app') {
|
|
|
|
oml.UI.set({page: ''});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'oml_part.app': function() {
|
|
|
|
if (ui.page == 'app') {
|
2014-05-17 11:45:57 +00:00
|
|
|
that.updateElement();
|
2014-05-04 17:26:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-05-17 11:45:57 +00:00
|
|
|
that.updateElement = function(section) {
|
2014-05-14 09:57:11 +00:00
|
|
|
$panel.selectTab(section);
|
2014-05-04 17:26:43 +00:00
|
|
|
};
|
|
|
|
|
2014-08-22 16:42:08 +00:00
|
|
|
function reload() {
|
|
|
|
var ws = new WebSocket('ws:' + document.location.host + '/ws');
|
|
|
|
ws.onopen = function(event) {
|
|
|
|
document.location.href = document.location.protocol + '//' + document.location.host;
|
|
|
|
};
|
|
|
|
ws.onerror = function(event) {
|
|
|
|
ws.close();
|
|
|
|
};
|
|
|
|
ws.onclose = function(event) {
|
|
|
|
console.log('waiting...');
|
|
|
|
setTimeout(reload, 500);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
return that;
|
|
|
|
|
2014-08-22 16:42:08 +00:00
|
|
|
};
|