fix URL/UI bugs, handle the case where on page load we have an item and a query that does not match the item

This commit is contained in:
rolux 2011-10-13 16:48:08 +00:00
parent e3fb12441d
commit d7092ad856
2 changed files with 45 additions and 38 deletions

View file

@ -33,18 +33,17 @@ pandora.UI = (function() {
}
Ox.print('UI SET', args)
self.previousUI = Ox.clone(pandora.user.ui, true);
Ox.forEach(args, function(val, key) {
if (key == 'find') {
if ('find' in args) {
// the challenge here is that find may change list,
// and list may then change listSort and listView,
// which we don't want to trigger, since find triggers
var list = pandora.getListsState(val);
// (values we put in add will be changed, but won't trigger)
var list = pandora.getListsState(args.find);
pandora.user.ui._list = list;
pandora.user.ui._groupsState = pandora.getGroupsState(val);
pandora.user.ui._findState = pandora.getFindState(val);
if (!Ox.isEqual(val, pandora.user.ui.find)) {
pandora.user.ui._groupsState = pandora.getGroupsState(args.find);
pandora.user.ui._findState = pandora.getFindState(args.find);
if (pandora.$ui.appPanel) {
// if find has changed and we're not on page load,
// if we're not on page load,
// switch from item view to list view
add['item'] = '';
}
@ -64,9 +63,11 @@ pandora.UI = (function() {
});
}
}
}
else if (Object.keys(listSettings).indexOf(key) > -1) {
// copy setting to list setting
// it is important to check for find first, so that if find
// changes list, pandora.user.ui._list is correct here
Ox.forEach(args, function(val, key) {
if (Object.keys(listSettings).indexOf(key) > -1) {
// if applicable, copy setting to list setting
add['lists.' + that.encode(pandora.user.ui._list || '') + '.' + listSettings[key]] = val;
} else if (key == 'item' && val) {
// when switching to an item, update list selection
@ -82,16 +83,21 @@ pandora.UI = (function() {
&& ['video', 'timeline'].indexOf(val) > -1
&& !pandora.user.ui.videoPoints[pandora.user.ui.item]
)) {
// add default videoPoints
// when switching to a video view, add default videoPoints
add['videoPoints.' + (
key == 'item' ? val : pandora.user.ui.item
)] = {'in': 0, out: 0, position: 0};
}
});
[args, add].forEach(function(obj, isAdd) {
Ox.print('UUU', obj)
Ox.forEach(obj, function(val, key) {
var keys = key.replace(/([^\\])\./g, '$1\n').split('\n'),
// make sure to not split at escaped dots ('\.')
var keys = key.replace(/\\\./g, '\n').split('.').map(function(key) {
return key.replace(/\n/g, '.')
}),
ui = pandora.user.ui;
Ox.print(key, '......', keys)
while (keys.length > 1) {
ui = ui[keys.shift()];
}

View file

@ -205,9 +205,10 @@ pandora.URL = (function() {
///*
if (state.find) {
set.find = state.find;
find = state.find;
set.find = find;
} else {
var find = pandora.user.ui.find;
find = pandora.user.ui.find;
pandora.user.ui._list = pandora.getListsState(find)
pandora.user.ui._groupsState = pandora.getGroupsState(find);
pandora.user.ui._findState = pandora.getFindState(find);
@ -219,12 +220,12 @@ pandora.URL = (function() {
$(this).trigger('stop');
});
if (!pandora.$ui.appPanel && state.item && pandora.user.ui.find) {
if (!pandora.$ui.appPanel && state.item && find) {
// on page load, if item is set and there is or was a query,
// we have to check if the item actually matches the query,
// and otherwise reset find
pandora.api.find({
query: pandora.user.ui.find,
query: find,
positions: [state.item],
sort: [{key: 'id', operator: ''}]
}, function(result) {