fix #932 (add 'clear filter' and 'clear filters' option)
This commit is contained in:
parent
e8494c34eb
commit
5d1119fd9c
3 changed files with 108 additions and 54 deletions
|
@ -53,6 +53,7 @@ pandora.ui.browser = function() {
|
||||||
}).reloadList();
|
}).reloadList();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
pandora.$ui.filters.updateMenus();
|
||||||
}
|
}
|
||||||
if (pandora.user.ui.listView == 'map') {
|
if (pandora.user.ui.listView == 'map') {
|
||||||
pandora.$ui.map.resizeMap();
|
pandora.$ui.map.resizeMap();
|
||||||
|
|
|
@ -163,6 +163,7 @@ pandora.ui.filter = function(id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pandora.UI.set('find', find);
|
pandora.UI.set('find', find);
|
||||||
|
pandora.$ui.filters.updateMenus();
|
||||||
},
|
},
|
||||||
sort: function(data) {
|
sort: function(data) {
|
||||||
Ox.Log('', 'SORT', data)
|
Ox.Log('', 'SORT', data)
|
||||||
|
@ -173,12 +174,16 @@ pandora.ui.filter = function(id) {
|
||||||
pandora.UI.set({filters: filters});
|
pandora.UI.set({filters: filters});
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
$select = Ox.Select({
|
$menu = Ox.MenuButton({
|
||||||
items: Ox.clone(pandora.site.filters),
|
items: [
|
||||||
max: 1,
|
{id: 'clearFilter', title: 'Clear Filter', keyboard: 'shift control a'},
|
||||||
min: 1,
|
{id: 'clearFilters', title: 'Clear All Filters', keyboard: 'shift alt control a'},
|
||||||
|
{},
|
||||||
|
{group: 'filter', max: 1, min: 1, items: pandora.site.filters.map(function(filter) {
|
||||||
|
return Ox.extend({checked: filter.id == id}, filter);
|
||||||
|
})}
|
||||||
|
],
|
||||||
type: 'image',
|
type: 'image',
|
||||||
value: id
|
|
||||||
})
|
})
|
||||||
.css(Ox.UI.SCROLLBAR_SIZE == 16 ? {
|
.css(Ox.UI.SCROLLBAR_SIZE == 16 ? {
|
||||||
right: 0,
|
right: 0,
|
||||||
|
@ -187,63 +192,86 @@ pandora.ui.filter = function(id) {
|
||||||
right: '-1px',
|
right: '-1px',
|
||||||
width: '8px',
|
width: '8px',
|
||||||
})
|
})
|
||||||
.bindEvent('change', function(data) {
|
.bindEvent({
|
||||||
var filters = Ox.clone(pandora.user.ui.filters),
|
change: function(data) {
|
||||||
find,
|
var filters = Ox.clone(pandora.user.ui.filters),
|
||||||
id_ = data.value,
|
find,
|
||||||
i_ = Ox.getIndexById(pandora.user.ui.filters, id_);
|
id_ = data.checked[0].id,
|
||||||
if (i_ == -1) {
|
i_ = Ox.getIndexById(pandora.user.ui.filters, id_);
|
||||||
// new filter was not part of old filter set
|
if (i_ == -1) {
|
||||||
if (pandora.user.ui._filterState[i].selected.length) {
|
// new filter was not part of old filter set
|
||||||
// if filter with selection gets replaced, update find
|
if (pandora.user.ui._filterState[i].selected.length) {
|
||||||
find = Ox.clone(pandora.user.ui.find, true);
|
// if filter with selection gets replaced, update find
|
||||||
find.conditions.splice(pandora.user.ui._filterState[i].index, 1);
|
find = Ox.clone(pandora.user.ui.find, true);
|
||||||
|
find.conditions.splice(pandora.user.ui._filterState[i].index, 1);
|
||||||
|
}
|
||||||
|
filters[i] = makeFilter(id_);
|
||||||
|
pandora.UI.set(Ox.extend({
|
||||||
|
filters: filters
|
||||||
|
}, find ? {
|
||||||
|
find: find
|
||||||
|
} : {}));
|
||||||
|
replaceFilter(i, id_);
|
||||||
|
// fixme: there is an obscure special case not yet covered:
|
||||||
|
// switching to a new filter may change find from advanced to not advanced
|
||||||
|
// if part of the existing query works as a filter selection in the new filter
|
||||||
|
} else {
|
||||||
|
// swap two existing filters
|
||||||
|
var filterData = Ox.clone(pandora.user.ui._filterState[i]);
|
||||||
|
pandora.user.ui._filterState[i] = pandora.user.ui._filterState[i_];
|
||||||
|
pandora.user.ui._filterState[i_] = filterData;
|
||||||
|
filters[i] = makeFilter(id_, pandora.user.ui.filters[i_].sort);
|
||||||
|
filters[i_] = makeFilter(id, pandora.user.ui.filters[i].sort);
|
||||||
|
pandora.UI.set({filters: filters});
|
||||||
|
replaceFilter(i, id_);
|
||||||
|
replaceFilter(i_, id);
|
||||||
|
}
|
||||||
|
pandora.$ui.filters.updateMenus();
|
||||||
|
function makeFilter(id, sort) {
|
||||||
|
// makes user.ui._filterState object from site.filters object
|
||||||
|
var filter = Ox.getObjectById(pandora.site.filters, id);
|
||||||
|
return {
|
||||||
|
id: filter.id,
|
||||||
|
sort: sort || [{key: filter.type == 'integer' ? 'name' : 'items', operator: '-'}]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function replaceFilter(i, id) {
|
||||||
|
var isOuter = i % 4 == 0;
|
||||||
|
pandora.$ui[isOuter ? 'browser' : 'filtersInnerPanel'].replaceElement(
|
||||||
|
isOuter ? i / 2 : i - 1,
|
||||||
|
pandora.$ui.filters[i] = pandora.ui.filter(id)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
click: function(data) {
|
||||||
|
if (data.id == 'clearFilter') {
|
||||||
|
that.clearFilter();
|
||||||
|
} else if (data.id == 'clearFilters') {
|
||||||
|
pandora.$ui.filters.clearFilters();
|
||||||
}
|
}
|
||||||
filters[i] = makeFilter(id_);
|
|
||||||
pandora.UI.set(Ox.extend({
|
|
||||||
filters: filters
|
|
||||||
}, find ? {
|
|
||||||
find: find
|
|
||||||
} : {}));
|
|
||||||
replaceFilter(i, id_);
|
|
||||||
// fixme: there is an obscure special case not yet covered:
|
|
||||||
// switching to a new filter may change find from advanced to not advanced
|
|
||||||
// if part of the existing query works as a filter selection in the new filter
|
|
||||||
} else {
|
|
||||||
// swap two existing filters
|
|
||||||
var filterData = Ox.clone(pandora.user.ui._filterState[i]);
|
|
||||||
pandora.user.ui._filterState[i] = pandora.user.ui._filterState[i_];
|
|
||||||
pandora.user.ui._filterState[i_] = filterData;
|
|
||||||
filters[i] = makeFilter(id_, pandora.user.ui.filters[i_].sort);
|
|
||||||
filters[i_] = makeFilter(id, pandora.user.ui.filters[i].sort);
|
|
||||||
pandora.UI.set({filters: filters});
|
|
||||||
replaceFilter(i, id_);
|
|
||||||
replaceFilter(i_, id);
|
|
||||||
}
|
|
||||||
function makeFilter(id, sort) {
|
|
||||||
// makes user.ui._filterState object from site.filters object
|
|
||||||
var filter = Ox.getObjectById(pandora.site.filters, id);
|
|
||||||
return {
|
|
||||||
id: filter.id,
|
|
||||||
sort: sort || [{key: filter.type == 'integer' ? 'name' : 'items', operator: '-'}]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
function replaceFilter(i, id, find) {
|
|
||||||
// if find is passed, selected items will be derived from it // FIXME: ???
|
|
||||||
var isOuter = i % 4 == 0;
|
|
||||||
pandora.$ui[isOuter ? 'browser' : 'filtersInnerPanel'].replaceElement(
|
|
||||||
isOuter ? i / 2 : i - 1,
|
|
||||||
pandora.$ui.filters[i] = pandora.ui.filter(id)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo(that.$bar.$element);
|
.appendTo(that.$bar.$element);
|
||||||
Ox.UI.SCROLLBAR_SIZE < 16 && $($select.find('input')[0]).css({
|
Ox.UI.SCROLLBAR_SIZE < 16 && $($menu.find('input')[0]).css({
|
||||||
marginRight: '-3px',
|
marginRight: '-3px',
|
||||||
marginTop: '1px',
|
marginTop: '1px',
|
||||||
width: '8px',
|
width: '8px',
|
||||||
height: '8px'
|
height: '8px'
|
||||||
});
|
});
|
||||||
|
that.clearFilter = function() {
|
||||||
|
// FIXME: List should trigger event on options change
|
||||||
|
if (!Ox.isEmpty(that.options('selected'))) {
|
||||||
|
that.options({selected: []}).triggerEvent('select', {ids: []});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
that.disableMenuItem = function(id) {
|
||||||
|
Ox.print('disable', id);
|
||||||
|
$menu.disableItem(id);
|
||||||
|
};
|
||||||
|
that.enableMenuItem = function(id) {
|
||||||
|
Ox.print('enable', id);
|
||||||
|
$menu.enableItem(id);
|
||||||
|
};
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -252,7 +280,27 @@ pandora.ui.filters = function() {
|
||||||
pandora.user.ui.filters.forEach(function(filter, i) {
|
pandora.user.ui.filters.forEach(function(filter, i) {
|
||||||
$filters[i] = pandora.ui.filter(filter.id);
|
$filters[i] = pandora.ui.filter(filter.id);
|
||||||
});
|
});
|
||||||
return $filters;
|
$filters.clearFilters = function() {
|
||||||
|
$filters.forEach(function($filter) {
|
||||||
|
$filter.clearFilter();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
$filters.updateMenus = function() {
|
||||||
|
var selected = $filters.map(function($filter) {
|
||||||
|
return !Ox.isEmpty($filter.options('selected'));
|
||||||
|
}),
|
||||||
|
filtersHaveSelection = !!Ox.sum(selected);
|
||||||
|
$filters.forEach(function($filter, i) {
|
||||||
|
$filter[
|
||||||
|
selected[i] ? 'enableMenuItem' : 'disableMenuItem'
|
||||||
|
]('clearFilter');
|
||||||
|
$filter[
|
||||||
|
filtersHaveSelection ? 'enableMenuItem' : 'disableMenuItem'
|
||||||
|
]('clearFilters');
|
||||||
|
});
|
||||||
|
return $filters;
|
||||||
|
};
|
||||||
|
return $filters.updateMenus();
|
||||||
};
|
};
|
||||||
|
|
||||||
pandora.ui.filtersInnerPanel = function() {
|
pandora.ui.filtersInnerPanel = function() {
|
||||||
|
|
|
@ -361,6 +361,11 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.$ui.sequencesDialog = pandora.ui.sequencesDialog().open();
|
pandora.$ui.sequencesDialog = pandora.ui.sequencesDialog().open();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
key_alt_control_shift_a: function() {
|
||||||
|
if (!pandora.hasDialogOrScreen() && !ui.item) {
|
||||||
|
pandora.$ui.filters.clearFilters();
|
||||||
|
}
|
||||||
|
},
|
||||||
key_alt_control_shift_f: function() {
|
key_alt_control_shift_f: function() {
|
||||||
Ox.Fullscreen.toggle();
|
Ox.Fullscreen.toggle();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue