add dummy help dialog
This commit is contained in:
parent
4474ebb209
commit
cd8158de05
4 changed files with 87 additions and 7 deletions
|
@ -30,7 +30,8 @@ oml.ui.appPanel = function() {
|
||||||
appDialog: ['about', 'faq', 'terms', 'development', 'contact'],
|
appDialog: ['about', 'faq', 'terms', 'development', 'contact'],
|
||||||
updateDialog: ['update'],
|
updateDialog: ['update'],
|
||||||
userDialog: ['preferences', 'peers', 'transfers'],
|
userDialog: ['preferences', 'peers', 'transfers'],
|
||||||
importExportDialog: ['import', 'export']
|
importExportDialog: ['import', 'export'],
|
||||||
|
helpDialog: ['help', 'documentation']
|
||||||
};
|
};
|
||||||
// close dialogs
|
// close dialogs
|
||||||
if (Ox.every(dialogs, function(pages) {
|
if (Ox.every(dialogs, function(pages) {
|
||||||
|
|
72
static/js/helpDialog.js
Normal file
72
static/js/helpDialog.js
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
oml.ui.helpDialog = function() {
|
||||||
|
|
||||||
|
var ui = oml.user.ui,
|
||||||
|
|
||||||
|
$panel = Ox.TabPanel({
|
||||||
|
content: function(id) {
|
||||||
|
return Ox.Element()
|
||||||
|
.addClass('OxTextPage OxSelectable')
|
||||||
|
.css({margin: '16px'})
|
||||||
|
.html(
|
||||||
|
'<p>The lazy brown fox and the lazy black fox '
|
||||||
|
+ 'were observed singing "Loret ipsum", '
|
||||||
|
+ 'but other than that not really much happened here '
|
||||||
|
+ 'since you last checked.</p>'
|
||||||
|
);
|
||||||
|
},
|
||||||
|
style: 'squared',
|
||||||
|
tabs: [
|
||||||
|
{
|
||||||
|
id: 'help',
|
||||||
|
title: Ox._('Help'),
|
||||||
|
selected: ui.page == 'help'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'documentation',
|
||||||
|
title: Ox._('API Documentation'),
|
||||||
|
selected: ui.page == 'documentation'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
oml.UI.set({page: data.selected});
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
|
||||||
|
that = Ox.Dialog({
|
||||||
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
id: 'close',
|
||||||
|
style: 'squared',
|
||||||
|
title: Ox._('Close')
|
||||||
|
}).bindEvent({
|
||||||
|
click: function() {
|
||||||
|
that.close();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
closeButton: true,
|
||||||
|
content: $panel,
|
||||||
|
height: 384,
|
||||||
|
keys: {escape: 'close'},
|
||||||
|
maximizeButton: true,
|
||||||
|
minHeight: 256,
|
||||||
|
minWidth: 544 + 2 * Ox.UI.SCROLLBAR_SIZE,
|
||||||
|
removeOnClose: true,
|
||||||
|
title: 'Open Media Libary',
|
||||||
|
width: 672 + 2 * Ox.UI.SCROLLBAR_SIZE
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
close: function() {
|
||||||
|
if (Ox.contains(['help', 'documentation'], ui.page)) {
|
||||||
|
oml.UI.set({page: ''});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return that;
|
||||||
|
|
||||||
|
};
|
|
@ -311,18 +311,15 @@ oml.ui.mainMenu = function() {
|
||||||
id: 'helpMenu',
|
id: 'helpMenu',
|
||||||
title: Ox._('Help'),
|
title: Ox._('Help'),
|
||||||
items: [
|
items: [
|
||||||
{
|
|
||||||
id: 'gettingstarted',
|
|
||||||
title: 'Getting Started...'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 'help',
|
id: 'help',
|
||||||
title: Ox._('{0} Help...', ['Open Media Library']),
|
title: Ox._('Help...'),
|
||||||
keyboard: 'control ?'
|
keyboard: 'control ?'
|
||||||
},
|
},
|
||||||
|
{},
|
||||||
{
|
{
|
||||||
id: 'documentation',
|
id: 'documentation',
|
||||||
title: Ox._('Documentation...'),
|
title: Ox._('API Documentation...'),
|
||||||
keyboard: 'shift control ?'
|
keyboard: 'shift control ?'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -562,6 +559,10 @@ oml.ui.mainMenu = function() {
|
||||||
)).open();
|
)).open();
|
||||||
} else if (id == 'advancedfind') {
|
} else if (id == 'advancedfind') {
|
||||||
oml.$ui.findDialog = oml.ui.findDialog().open();
|
oml.$ui.findDialog = oml.ui.findDialog().open();
|
||||||
|
} else if (id == 'help') {
|
||||||
|
oml.UI.set({page: 'help'});
|
||||||
|
} else if (id == 'documentation') {
|
||||||
|
oml.UI.set({page: 'documentation'});
|
||||||
} else {
|
} else {
|
||||||
Ox.print('MAIN MENU DOES NOT YET HANDLE', id);
|
Ox.print('MAIN MENU DOES NOT YET HANDLE', id);
|
||||||
}
|
}
|
||||||
|
@ -666,6 +667,11 @@ oml.ui.mainMenu = function() {
|
||||||
oml.$ui.findDialog = oml.ui.findDialog().open();
|
oml.$ui.findDialog = oml.ui.findDialog().open();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
key_control_slash: function() {
|
||||||
|
if (!oml.hasDialogOrScreen()) {
|
||||||
|
oml.UI.set({page: 'documentation'});
|
||||||
|
}
|
||||||
|
},
|
||||||
key_control_shift_w: function() {
|
key_control_shift_w: function() {
|
||||||
if (!oml.hasDialogOrScreen()) {
|
if (!oml.hasDialogOrScreen()) {
|
||||||
oml.UI.set({
|
oml.UI.set({
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
"folders.js",
|
"folders.js",
|
||||||
"fullscreenButton.js",
|
"fullscreenButton.js",
|
||||||
"gridView.js",
|
"gridView.js",
|
||||||
|
"helpDialog.js",
|
||||||
"iconDialog.js",
|
"iconDialog.js",
|
||||||
"identifyDialog.js",
|
"identifyDialog.js",
|
||||||
"importExportDialog.js",
|
"importExportDialog.js",
|
||||||
|
|
Loading…
Reference in a new issue