2012-01-30 23:56:41 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
pandora.ui.home = function() {
|
|
|
|
|
2012-02-15 09:23:30 +00:00
|
|
|
var self = {},
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-02-15 09:23:30 +00:00
|
|
|
that = $('<div>')
|
2012-01-30 23:56:41 +00:00
|
|
|
.addClass('OxScreen')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
opacity: 0,
|
2013-02-19 13:58:53 +00:00
|
|
|
overflowY: 'auto',
|
2012-02-19 12:58:49 +00:00
|
|
|
zIndex: 1001
|
2012-01-30 23:56:41 +00:00
|
|
|
}),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-02-15 09:23:30 +00:00
|
|
|
$box = $('<div>')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
2013-02-19 13:58:53 +00:00
|
|
|
top: '80px',
|
2012-02-15 09:23:30 +00:00
|
|
|
right: 0,
|
|
|
|
width: '560px',
|
2013-02-19 13:58:53 +00:00
|
|
|
margin: '0 auto 0 auto'
|
2012-02-15 09:23:30 +00:00
|
|
|
})
|
|
|
|
.appendTo(that),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$reflectionImage = $('<img>')
|
2012-04-20 10:22:32 +00:00
|
|
|
.attr({src: '/static/png/logo.png'})
|
2012-01-30 23:56:41 +00:00
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
top: '80px',
|
2012-01-30 23:56:41 +00:00
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
width: '320px',
|
2013-08-08 12:31:35 +00:00
|
|
|
height: 'auto',
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
MozTransform: 'scaleY(-1)',
|
2013-08-08 12:31:35 +00:00
|
|
|
MsTransform: 'scaleY(-1)',
|
2012-01-30 23:56:41 +00:00
|
|
|
OTransform: 'scaleY(-1)',
|
|
|
|
WebkitTransform: 'scaleY(-1)'
|
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$reflectionGradient = $('<div>')
|
|
|
|
.addClass('OxReflection')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
top: '80px',
|
2012-01-30 23:56:41 +00:00
|
|
|
right: 0,
|
|
|
|
width: '320px',
|
|
|
|
height: '160px',
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2013-02-19 13:58:53 +00:00
|
|
|
$logo = Ox.Element({
|
|
|
|
element: '<img>',
|
2013-08-04 20:35:58 +00:00
|
|
|
tooltip: function() {
|
|
|
|
return Ox._('Enter {0}', [pandora.site.site.name]);
|
|
|
|
}
|
2013-02-19 13:58:53 +00:00
|
|
|
})
|
2012-01-30 23:56:41 +00:00
|
|
|
.attr({
|
|
|
|
id: 'logo',
|
2012-04-20 10:22:32 +00:00
|
|
|
src: '/static/png/logo.png'
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
width: '320px',
|
2013-08-08 12:31:35 +00:00
|
|
|
height: 'auto',
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
cursor: 'pointer'
|
|
|
|
})
|
2013-02-19 19:45:37 +00:00
|
|
|
.bindEvent({
|
|
|
|
anyclick: function() {
|
2012-01-30 23:56:41 +00:00
|
|
|
$browseButton.triggerEvent('click');
|
|
|
|
}
|
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$findInput = Ox.Input({
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 252
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
top: '104px',
|
|
|
|
right: '260px',
|
2012-01-30 23:56:41 +00:00
|
|
|
bottom: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
opacity: 0
|
|
|
|
})
|
2014-09-19 17:30:39 +00:00
|
|
|
.on({
|
|
|
|
click: function(e) {
|
|
|
|
// fixme: why?
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
submit: function(data) {
|
|
|
|
if (data.value) {
|
|
|
|
$findButton.triggerEvent('click');
|
|
|
|
} else {
|
|
|
|
$browseButton.triggerEvent('click');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$findButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('Find'),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 122
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2012-02-15 09:23:30 +00:00
|
|
|
left: '130px',
|
|
|
|
top: '104px',
|
2012-01-30 23:56:41 +00:00
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
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: '',
|
|
|
|
find: {
|
|
|
|
conditions: value === ''
|
|
|
|
? []
|
|
|
|
: [{key: '*', value: value, operator: '='}],
|
|
|
|
operator: '&'
|
2013-10-07 19:41:20 +00:00
|
|
|
},
|
|
|
|
section: 'items'
|
2012-01-30 23:56:41 +00:00
|
|
|
});
|
2017-02-15 17:44:59 +00:00
|
|
|
pandora.$ui.findSelect && pandora.$ui.findSelect.value('*');
|
|
|
|
pandora.$ui.findInput && pandora.$ui.findInput.value(value);
|
2012-01-30 23:56:41 +00:00
|
|
|
}
|
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$browseButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('Browse'),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 122
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2012-02-15 09:23:30 +00:00
|
|
|
left: '390px',
|
|
|
|
top: '104px',
|
2012-01-30 23:56:41 +00:00
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
2012-01-30 23:56:41 +00:00
|
|
|
opacity: 0
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
2012-02-19 11:39:39 +00:00
|
|
|
pandora.UI.set({
|
2013-10-07 19:41:20 +00:00
|
|
|
page: pandora.user.ui.page == 'home' ? '' : pandora.user.ui.page,
|
|
|
|
section: 'items'
|
2012-02-19 11:39:39 +00:00
|
|
|
});
|
2012-01-30 23:56:41 +00:00
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2017-02-15 17:44:59 +00:00
|
|
|
$footer = Ox.Element().css({
|
|
|
|
clear: 'both',
|
|
|
|
height: '64px',
|
|
|
|
paddingTop: '12px'
|
|
|
|
}),
|
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$signupButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('Sign Up'),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 122
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'signup'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$signinButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('Sign In'),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 122
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
2017-02-15 17:44:59 +00:00
|
|
|
marginLeft: '8px',
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page :'signin'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$preferencesButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('Preferences'),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 252
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'preferences'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
|
|
|
}),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
2012-01-30 23:56:41 +00:00
|
|
|
$aboutButton = Ox.Button({
|
2013-05-09 10:13:58 +00:00
|
|
|
title: Ox._('About {0}', [pandora.site.site.name]),
|
2012-02-15 09:23:30 +00:00
|
|
|
width: 252
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.css({
|
2017-02-15 17:44:59 +00:00
|
|
|
marginLeft: '8px'
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
pandora.UI.set({page: 'about'});
|
|
|
|
that.fadeOutScreen();
|
|
|
|
}
|
2017-02-15 17:44:59 +00:00
|
|
|
}),
|
2013-07-10 07:34:40 +00:00
|
|
|
|
|
|
|
$features = $('<div>')
|
2012-02-15 09:23:30 +00:00
|
|
|
.attr({id: 'lists'})
|
2012-01-30 23:56:41 +00:00
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
2017-02-15 17:44:59 +00:00
|
|
|
top: '152px',
|
2012-01-30 23:56:41 +00:00
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
2017-02-15 17:44:59 +00:00
|
|
|
width: '512px',
|
2012-02-15 09:23:30 +00:00
|
|
|
margin: '0 auto 0 auto',
|
|
|
|
opacity: 0
|
2012-01-30 23:56:41 +00:00
|
|
|
})
|
2012-02-15 09:23:30 +00:00
|
|
|
.appendTo($box);
|
2012-01-30 23:56:41 +00:00
|
|
|
|
|
|
|
if (pandora.user.level == 'guest') {
|
2017-02-15 17:44:59 +00:00
|
|
|
$signupButton.appendTo($footer);
|
|
|
|
$signinButton.appendTo($footer);
|
2012-01-30 23:56:41 +00:00
|
|
|
} else {
|
2017-02-15 17:44:59 +00:00
|
|
|
$preferencesButton.appendTo($footer);
|
2012-02-15 09:23:30 +00:00
|
|
|
}
|
2017-02-15 17:44:59 +00:00
|
|
|
$aboutButton.appendTo($footer);
|
2012-02-15 09:23:30 +00:00
|
|
|
|
2013-07-10 07:34:40 +00:00
|
|
|
function showFeatures() {
|
2017-02-09 03:50:27 +00:00
|
|
|
pandora.api.getHomeItems({active: true}, function(result) {
|
2017-02-15 17:44:59 +00:00
|
|
|
var items = result.data.items.filter(pandora.isCompleteHomeItem),
|
|
|
|
$texts;
|
|
|
|
$features.empty();
|
2013-07-10 07:34:40 +00:00
|
|
|
if (items.length) {
|
2017-02-09 03:50:27 +00:00
|
|
|
$texts = Ox.Element().appendTo($features);
|
|
|
|
items.forEach(function(item) {
|
2017-02-15 17:44:59 +00:00
|
|
|
var $item = pandora.renderHomeItem({
|
|
|
|
data: item
|
|
|
|
}).appendTo($texts);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$features.css({
|
|
|
|
top: '132px'
|
2017-02-09 03:50:27 +00:00
|
|
|
});
|
2012-02-15 09:23:30 +00:00
|
|
|
}
|
2017-02-15 17:44:59 +00:00
|
|
|
$features.append($footer);
|
|
|
|
$features.animate({opacity: 1}, 250);
|
|
|
|
});
|
2012-01-30 23:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
that.fadeInScreen = function() {
|
2014-09-25 16:53:35 +00:00
|
|
|
that.appendTo(Ox.$body).animate({opacity: 1}, 500, function() {
|
2012-02-15 09:23:30 +00:00
|
|
|
that.find('*').animate({opacity: 1}, 250, function() {
|
2012-01-30 23:56:41 +00:00
|
|
|
$findInput.focusInput(true);
|
2013-07-10 12:27:44 +00:00
|
|
|
showFeatures();
|
2012-01-30 23:56:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.fadeOutScreen = function() {
|
2013-02-19 13:58:53 +00:00
|
|
|
$('.OxTooltip').remove();
|
2012-02-17 09:38:03 +00:00
|
|
|
that.animate({opacity: 0}, 500, function() {
|
2012-01-30 23:56:41 +00:00
|
|
|
that.remove();
|
|
|
|
});
|
2013-08-10 08:58:22 +00:00
|
|
|
pandora.$ui.tv && pandora.$ui.tv.unmute().find('.OxControls.OxVolume').hide();
|
2012-05-28 14:10:11 +00:00
|
|
|
self.keydown && Ox.$document.off({keydown: self.keydown});
|
2012-01-30 23:56:41 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2012-02-21 10:11:01 +00:00
|
|
|
that.showScreen = function(callback) {
|
2013-07-09 11:18:41 +00:00
|
|
|
var $elements = that.find('*'), count = 0;
|
|
|
|
$box.css({top: window.innerHeight / 2 - 80 + 'px'});
|
2014-09-25 16:53:35 +00:00
|
|
|
that.css({opacity: 1}).appendTo(Ox.$body);
|
2012-02-20 18:44:49 +00:00
|
|
|
$findInput.focusInput(true);
|
2013-07-09 11:18:41 +00:00
|
|
|
$box.animate({top: '80px'}, 500, function() {
|
|
|
|
$elements.animate({opacity: 1}, 250, function() {
|
|
|
|
if (++count == $elements.length) {
|
2013-07-10 12:27:44 +00:00
|
|
|
showFeatures();
|
2013-07-09 11:18:41 +00:00
|
|
|
callback && callback();
|
|
|
|
}
|
2012-02-17 09:38:03 +00:00
|
|
|
});
|
2013-07-09 11:18:41 +00:00
|
|
|
});
|
2012-01-30 23:56:41 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|