new home
This commit is contained in:
parent
c6f9bb5cac
commit
fbe84282c7
1 changed files with 146 additions and 98 deletions
|
@ -4,17 +4,67 @@
|
||||||
|
|
||||||
pandora.ui.home = function() {
|
pandora.ui.home = function() {
|
||||||
|
|
||||||
var that = $('<div>')
|
var self = {},
|
||||||
|
|
||||||
|
that = $('<div>')
|
||||||
.addClass('OxScreen')
|
.addClass('OxScreen')
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: '100%',
|
height: '100%',
|
||||||
opacity: 0,
|
opacity: 0,
|
||||||
|
overflowY: 'auto',
|
||||||
zIndex: 1001
|
zIndex: 1001
|
||||||
}),
|
}),
|
||||||
$logo = $('<img>')
|
|
||||||
.addClass('logo')
|
$box = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: '80px',
|
||||||
|
right: 0,
|
||||||
|
width: '560px',
|
||||||
|
margin: '0 auto 0 auto'
|
||||||
|
})
|
||||||
|
.appendTo(that),
|
||||||
|
|
||||||
|
$reflectionImage = $('<img>')
|
||||||
|
.attr({src: '/static/png/logo.png'})
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: '80px',
|
||||||
|
right: 0,
|
||||||
|
bottom: 0,
|
||||||
|
width: '160px',
|
||||||
|
height: 'auto',
|
||||||
|
margin: '0 auto 0 auto',
|
||||||
|
MozTransform: 'scaleY(-1)',
|
||||||
|
MsTransform: 'scaleY(-1)',
|
||||||
|
OTransform: 'scaleY(-1)',
|
||||||
|
WebkitTransform: 'scaleY(-1)'
|
||||||
|
})
|
||||||
|
.appendTo($box),
|
||||||
|
|
||||||
|
$reflectionGradient = $('<div>')
|
||||||
|
.addClass('OxReflection')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: 0,
|
||||||
|
top: '80px',
|
||||||
|
right: 0,
|
||||||
|
width: '160px',
|
||||||
|
height: '160px',
|
||||||
|
margin: '0 auto 0 auto',
|
||||||
|
})
|
||||||
|
.appendTo($box),
|
||||||
|
|
||||||
|
$logo = Ox.Element({
|
||||||
|
element: '<img>',
|
||||||
|
tooltip: function() {
|
||||||
|
return Ox._('Enter {0}', [pandora.site.site.name]);
|
||||||
|
}
|
||||||
|
})
|
||||||
.attr({
|
.attr({
|
||||||
id: 'logo',
|
id: 'logo',
|
||||||
src: '/static/png/logo.png'
|
src: '/static/png/logo.png'
|
||||||
|
@ -22,29 +72,29 @@ pandora.ui.home = function() {
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: 0,
|
left: 0,
|
||||||
top: 0,
|
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: '160px',
|
width: '160px',
|
||||||
width: window.innerWidth + 'px',
|
height: 'auto',
|
||||||
margin: 'auto',
|
margin: '0 auto 0 auto',
|
||||||
cursor: 'pointer'
|
cursor: 'pointer'
|
||||||
})
|
})
|
||||||
.on({
|
.bindEvent({
|
||||||
click: function() {
|
anyclick: function() {
|
||||||
$browseButton.triggerEvent('click');
|
$browseButton.triggerEvent('click');
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo(that),
|
.appendTo($box),
|
||||||
|
|
||||||
$findInput = Ox.Input({
|
$findInput = Ox.Input({
|
||||||
width: 156
|
width: 252
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: 0,
|
left: 0,
|
||||||
top: '48px',
|
top: '104px',
|
||||||
right: '164px',
|
right: '260px',
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
margin: 'auto',
|
margin: '0 auto 0 auto',
|
||||||
opacity: 0
|
opacity: 0
|
||||||
})
|
})
|
||||||
.on({
|
.on({
|
||||||
|
@ -62,18 +112,19 @@ pandora.ui.home = function() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo(that),
|
.appendTo($box),
|
||||||
|
|
||||||
$findButton = Ox.Button({
|
$findButton = Ox.Button({
|
||||||
title: Ox._('Find'),
|
title: Ox._('Find'),
|
||||||
width: 74
|
width: 122
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: '82px',
|
left: '130px',
|
||||||
top: '48px',
|
top: '104px',
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
margin: 'auto',
|
margin: '0 auto 0 auto',
|
||||||
opacity: 0
|
opacity: 0
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
|
@ -81,10 +132,6 @@ pandora.ui.home = function() {
|
||||||
var folder = pandora.getListData().folder,
|
var folder = pandora.getListData().folder,
|
||||||
value = $findInput.value();
|
value = $findInput.value();
|
||||||
folder && pandora.$ui.folderList[folder].options({selected: []});
|
folder && pandora.$ui.folderList[folder].options({selected: []});
|
||||||
if (pandora.user.ui.section == 'items') {
|
|
||||||
pandora.$ui.findSelect.value('*');
|
|
||||||
pandora.$ui.findInput.value(value);
|
|
||||||
}
|
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
pandora.UI.set({
|
pandora.UI.set({
|
||||||
page: '',
|
page: '',
|
||||||
|
@ -96,20 +143,23 @@ pandora.ui.home = function() {
|
||||||
},
|
},
|
||||||
section: 'items'
|
section: 'items'
|
||||||
});
|
});
|
||||||
|
pandora.$ui.findSelect && pandora.$ui.findSelect.value('*');
|
||||||
|
pandora.$ui.findInput && pandora.$ui.findInput.value(value);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo(that),
|
.appendTo($box),
|
||||||
|
|
||||||
$browseButton = Ox.Button({
|
$browseButton = Ox.Button({
|
||||||
title: Ox._('Browse'),
|
title: Ox._('Browse'),
|
||||||
width: 74
|
width: 122
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: '246px',
|
left: '390px',
|
||||||
top: '48px',
|
top: '104px',
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
margin: 'auto',
|
margin: '0 auto 0 auto',
|
||||||
opacity: 0
|
opacity: 0
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
|
@ -121,19 +171,19 @@ pandora.ui.home = function() {
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo(that),
|
.appendTo($box),
|
||||||
|
|
||||||
|
$footer = Ox.Element().css({
|
||||||
|
clear: 'both',
|
||||||
|
height: '64px',
|
||||||
|
paddingTop: '12px'
|
||||||
|
}),
|
||||||
|
|
||||||
$signupButton = Ox.Button({
|
$signupButton = Ox.Button({
|
||||||
title: Ox._('Sign Up'),
|
title: Ox._('Sign Up'),
|
||||||
width: 74
|
width: 122
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
|
||||||
left: 0,
|
|
||||||
top: '112px',
|
|
||||||
right: '246px',
|
|
||||||
bottom: 0,
|
|
||||||
margin: 'auto',
|
|
||||||
opacity: 0
|
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
@ -141,18 +191,13 @@ pandora.ui.home = function() {
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
$signinButton = Ox.Button({
|
$signinButton = Ox.Button({
|
||||||
title: Ox._('Sign In'),
|
title: Ox._('Sign In'),
|
||||||
width: 74
|
width: 122
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
marginLeft: '8px',
|
||||||
left: 0,
|
|
||||||
top: '112px',
|
|
||||||
right: '82px',
|
|
||||||
bottom: 0,
|
|
||||||
margin: 'auto',
|
|
||||||
opacity: 0
|
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
@ -160,18 +205,12 @@ pandora.ui.home = function() {
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
$preferencesButton = Ox.Button({
|
$preferencesButton = Ox.Button({
|
||||||
title: Ox._('Preferences'),
|
title: Ox._('Preferences'),
|
||||||
width: 156
|
width: 252
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
|
||||||
left: 0,
|
|
||||||
top: '112px',
|
|
||||||
right: '164px',
|
|
||||||
bottom: 0,
|
|
||||||
margin: 'auto',
|
|
||||||
opacity: 0
|
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
@ -179,89 +218,98 @@ pandora.ui.home = function() {
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
$aboutButton = Ox.Button({
|
$aboutButton = Ox.Button({
|
||||||
title: Ox._('{0}', [pandora.site.site.name]),
|
title: Ox._('About {0}', [pandora.site.site.name]),
|
||||||
width: 156
|
width: 252
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
marginLeft: '8px'
|
||||||
left: '164px',
|
|
||||||
top: '112px',
|
|
||||||
right: 0,
|
|
||||||
bottom: 0,
|
|
||||||
margin: 'auto',
|
|
||||||
opacity: 0
|
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
pandora.UI.set({page: 'about'});
|
pandora.UI.set({page: 'about'});
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
})
|
}),
|
||||||
.appendTo(that),
|
|
||||||
$text = $('<div>')
|
$features = $('<div>')
|
||||||
.html(Ox._(
|
.attr({id: 'lists'})
|
||||||
'pan.do/ra. \u2620 2007-{0} 0x2620. All Open Source.',
|
.css({
|
||||||
[Ox.formatDate(new Date(), '%Y')]
|
|
||||||
)).css({
|
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: 0,
|
left: 0,
|
||||||
top: '176px',
|
top: '152px',
|
||||||
right: 0,
|
right: 0,
|
||||||
bottom: 0,
|
bottom: 0,
|
||||||
width: '360px',
|
width: '512px',
|
||||||
height: '16px',
|
margin: '0 auto 0 auto',
|
||||||
margin: 'auto',
|
opacity: 0
|
||||||
opacity: 0,
|
|
||||||
textAlign: 'center'
|
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo($box);
|
||||||
|
|
||||||
if (pandora.user.level == 'guest') {
|
if (pandora.user.level == 'guest') {
|
||||||
$signupButton.appendTo(that);
|
$signupButton.appendTo($footer);
|
||||||
$signinButton.appendTo(that);
|
$signinButton.appendTo($footer);
|
||||||
} else {
|
} else {
|
||||||
$preferencesButton.appendTo(that);
|
$preferencesButton.appendTo($footer);
|
||||||
|
}
|
||||||
|
$aboutButton.appendTo($footer);
|
||||||
|
|
||||||
|
function showFeatures() {
|
||||||
|
pandora.api.getHomeItems({active: true}, function(result) {
|
||||||
|
var items = result.data.items.filter(pandora.isCompleteHomeItem),
|
||||||
|
$texts;
|
||||||
|
$features.empty();
|
||||||
|
if (items.length) {
|
||||||
|
$texts = Ox.Element().appendTo($features);
|
||||||
|
items.forEach(function(item) {
|
||||||
|
var $item = pandora.renderHomeItem({
|
||||||
|
data: item
|
||||||
|
}).appendTo($texts);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$features.css({
|
||||||
|
top: '132px'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
$features.append($footer);
|
||||||
|
$features.animate({opacity: 1}, 250);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
that.fadeInScreen = function() {
|
that.fadeInScreen = function() {
|
||||||
that.appendTo(Ox.$body).animate({opacity: 1}, 500, function() {
|
that.appendTo(Ox.$body).animate({opacity: 1}, 500, function() {
|
||||||
that.find(':not(#logo)').animate({opacity: 1}, 250, function() {
|
that.find('*').animate({opacity: 1}, 250, function() {
|
||||||
$findInput.focusInput(true);
|
$findInput.focusInput(true);
|
||||||
|
showFeatures();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
$logo.animate({width: '320px'}, 500);
|
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.fadeOutScreen = function() {
|
that.fadeOutScreen = function() {
|
||||||
that.find(':not(#logo)').hide();
|
$('.OxTooltip').remove();
|
||||||
$logo.animate({width: window.innerWidth + 'px'}, 500);
|
|
||||||
that.animate({opacity: 0}, 500, function() {
|
that.animate({opacity: 0}, 500, function() {
|
||||||
that.remove();
|
that.remove();
|
||||||
});
|
});
|
||||||
pandora.$ui.tv && pandora.$ui.tv.unmute().find('.OxControls.OxVolume').hide();
|
pandora.$ui.tv && pandora.$ui.tv.unmute().find('.OxControls.OxVolume').hide();
|
||||||
return that;
|
self.keydown && Ox.$document.off({keydown: self.keydown});
|
||||||
};
|
|
||||||
|
|
||||||
that.hideScreen = function() {
|
|
||||||
that.hide().remove();
|
|
||||||
that.find(':not(#logo)').css({opacity: 0});
|
|
||||||
$logo.css({width: window.innerWidth + 'px'});
|
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
that.showScreen = function(callback) {
|
that.showScreen = function(callback) {
|
||||||
var $elements = that.find(':not(.logo)'), count = 0;
|
var $elements = that.find('*'), count = 0;
|
||||||
$logo.css({width: '320px'});
|
$box.css({top: window.innerHeight / 2 - 80 + 'px'});
|
||||||
that.css({opacity: 1}).appendTo(Ox.$body);
|
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();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
$findInput.focusInput(true);
|
$findInput.focusInput(true);
|
||||||
|
$box.animate({top: '80px'}, 500, function() {
|
||||||
|
$elements.animate({opacity: 1}, 250, function() {
|
||||||
|
if (++count == $elements.length) {
|
||||||
|
showFeatures();
|
||||||
|
callback && callback();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue