2015-09-20 16:49:37 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
pandora.ui.home = function() {
|
|
|
|
|
|
|
|
var that = $('<div>')
|
|
|
|
.addClass('OxScreen')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
opacity: 0,
|
|
|
|
zIndex: 1001
|
|
|
|
}),
|
|
|
|
$logo = $('<img>')
|
|
|
|
.addClass('logo')
|
|
|
|
.attr({
|
|
|
|
id: 'logo',
|
|
|
|
src: '/static/png/logo.png'
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
|
|
|
right: 0,
|
2015-09-21 10:11:36 +00:00
|
|
|
bottom: '256px',
|
2015-09-20 16:49:37 +00:00
|
|
|
width: window.innerWidth + 'px',
|
|
|
|
margin: 'auto',
|
2019-12-01 15:00:24 +00:00
|
|
|
cursor: 'pointer',
|
|
|
|
animation: 'spin 7500ms linear infinite'
|
2015-09-20 16:49:37 +00:00
|
|
|
})
|
|
|
|
.on({
|
|
|
|
click: function() {
|
|
|
|
$browseButton.triggerEvent('click');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that),
|
|
|
|
$findInput = Ox.Input({
|
|
|
|
width: 156
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: '48px',
|
|
|
|
right: '164px',
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.on({
|
|
|
|
click: function(e) {
|
|
|
|
// fixme: why?
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(data) {
|
|
|
|
if (data.value) {
|
|
|
|
$findButton.triggerEvent('click');
|
|
|
|
} else {
|
|
|
|
$browseButton.triggerEvent('click');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that),
|
|
|
|
$findButton = Ox.Button({
|
|
|
|
title: Ox._('Find'),
|
|
|
|
width: 74
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: '82px',
|
|
|
|
top: '48px',
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
var folder = pandora.getListData().folder,
|
|
|
|
value = $findInput.value();
|
|
|
|
folder && pandora.$ui.folderList[folder].options({selected: []});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
pandora.UI.set({
|
|
|
|
page: '',
|
2019-12-01 16:39:33 +00:00
|
|
|
find: {
|
2015-09-20 16:49:37 +00:00
|
|
|
conditions: value === ''
|
|
|
|
? []
|
|
|
|
: [{key: '*', value: value, operator: '='}],
|
|
|
|
operator: '&'
|
|
|
|
},
|
2019-12-01 14:10:23 +00:00
|
|
|
section: 'documents'
|
2015-09-20 16:49:37 +00:00
|
|
|
});
|
2019-12-01 16:39:33 +00:00
|
|
|
pandora.$ui.findSelect && pandora.$ui.findSelect.value('*');
|
|
|
|
pandora.$ui.findInput && pandora.$ui.findInput.value(value);
|
2015-09-20 16:49:37 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that),
|
|
|
|
$browseButton = Ox.Button({
|
|
|
|
title: Ox._('Browse'),
|
|
|
|
width: 74
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: '246px',
|
|
|
|
top: '48px',
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({
|
|
|
|
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
2019-12-01 14:10:23 +00:00
|
|
|
section: 'documents'
|
2015-09-20 16:49:37 +00:00
|
|
|
});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that),
|
|
|
|
$signupButton = Ox.Button({
|
|
|
|
title: Ox._('Sign Up'),
|
|
|
|
width: 74
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: '112px',
|
|
|
|
right: '246px',
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'signup'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
$signinButton = Ox.Button({
|
|
|
|
title: Ox._('Sign In'),
|
|
|
|
width: 74
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: '112px',
|
|
|
|
right: '82px',
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page :'signin'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
$preferencesButton = Ox.Button({
|
|
|
|
title: Ox._('Preferences'),
|
|
|
|
width: 156
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: '112px',
|
|
|
|
right: '164px',
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'preferences'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
$aboutButton = Ox.Button({
|
|
|
|
title: Ox._('About {0}', [pandora.site.site.name]),
|
|
|
|
width: 156
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: '164px',
|
|
|
|
top: '112px',
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'about'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that),
|
|
|
|
$text = $('<div>')
|
|
|
|
.html(Ox._(
|
|
|
|
'pan.do/ra. \u2620 2007-{0} 0x2620. All Open Source.',
|
|
|
|
[Ox.formatDate(new Date(), '%Y')]
|
|
|
|
)).css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
top: '176px',
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
width: '360px',
|
|
|
|
height: '16px',
|
|
|
|
margin: 'auto',
|
|
|
|
opacity: 0,
|
|
|
|
textAlign: 'center'
|
|
|
|
})
|
2019-12-01 15:00:24 +00:00
|
|
|
.appendTo(that),
|
|
|
|
loadedCSS = false;
|
2015-09-20 16:49:37 +00:00
|
|
|
|
|
|
|
if (pandora.user.level == 'guest') {
|
|
|
|
$signupButton.appendTo(that);
|
|
|
|
$signinButton.appendTo(that);
|
|
|
|
} else {
|
|
|
|
$preferencesButton.appendTo(that);
|
|
|
|
}
|
|
|
|
|
2019-12-01 15:00:24 +00:00
|
|
|
function loadCSS(callback) {
|
|
|
|
if (loadedCSS) {
|
|
|
|
callback()
|
|
|
|
} else {
|
|
|
|
Ox.getFile('/static/css/home.leftovers.css', function() {
|
|
|
|
loadedCSS = true
|
|
|
|
callback()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-20 16:49:37 +00:00
|
|
|
that.fadeInScreen = function() {
|
2019-12-01 15:00:24 +00:00
|
|
|
loadCSS(function() {
|
|
|
|
that.appendTo(Ox.$body).animate({opacity: 1}, 500, function() {
|
|
|
|
that.find(':not(#logo)').animate({opacity: 1}, 250, function() {
|
|
|
|
$findInput.focusInput(true);
|
|
|
|
});
|
2015-09-20 16:49:37 +00:00
|
|
|
});
|
2019-12-01 15:00:24 +00:00
|
|
|
$logo.animate({width: '320px'}, 500);
|
2015-09-20 16:49:37 +00:00
|
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.fadeOutScreen = function() {
|
|
|
|
that.find(':not(#logo)').hide();
|
|
|
|
$logo.animate({width: window.innerWidth + 'px'}, 500);
|
|
|
|
that.animate({opacity: 0}, 500, function() {
|
|
|
|
that.remove();
|
|
|
|
});
|
|
|
|
pandora.$ui.tv && pandora.$ui.tv.unmute().find('.OxControls.OxVolume').hide();
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.hideScreen = function() {
|
|
|
|
that.hide().remove();
|
|
|
|
that.find(':not(#logo)').css({opacity: 0});
|
|
|
|
$logo.css({width: window.innerWidth + 'px'});
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.showScreen = function(callback) {
|
|
|
|
var $elements = that.find(':not(.logo)'), count = 0;
|
2015-09-21 17:34:54 +00:00
|
|
|
$logo.css({width: '320px'});
|
2019-12-01 15:05:02 +00:00
|
|
|
loadCSS(function() {
|
|
|
|
that.css({opacity: 1}).appendTo(Ox.$body);
|
|
|
|
that.find(':not(#logo)').css({opacity: 1});
|
|
|
|
$elements.animate({opacity: 1}, 500, function() {
|
|
|
|
if (callback && ++count == $elements.length) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
});
|
2015-09-20 16:49:37 +00:00
|
|
|
});
|
|
|
|
$findInput.focusInput(true);
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|