pandora/static/js/pandora/findElement.js

149 lines
6.9 KiB
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-05-25 19:42:45 +00:00
pandora.ui.findElement = function() {
var findIndex = pandora.user.ui._findState.index,
findKey = pandora.user.ui._findState.key,
findValue = pandora.user.ui._findState.value;
2011-06-19 17:49:25 +00:00
var that = Ox.FormElementGroup({
2011-09-28 00:10:26 +00:00
elements: Ox.merge(pandora.user.ui._list ? [
2011-06-19 17:49:25 +00:00
pandora.$ui.findListSelect = Ox.Select({
2011-05-25 19:42:45 +00:00
items: [
2011-06-06 15:48:11 +00:00
{id: 'all', title: 'Find: All ' + pandora.site.itemName.plural},
{id: 'list', title: 'Find: This List', checked: true}
2011-05-25 19:42:45 +00:00
],
overlap: 'right',
type: 'image'
})
.bindEvent({
2011-09-17 17:40:15 +00:00
change: function(data) {
2011-05-25 19:42:45 +00:00
var key = data.selected[0].id;
2011-06-06 15:48:11 +00:00
pandora.$ui.findInput.options({
2011-05-25 19:42:45 +00:00
autocomplete: autocompleteFunction()
}).focus();
}
}),
] : [], [
2011-06-19 17:49:25 +00:00
pandora.$ui.findSelect = Ox.Select({
2011-05-25 19:42:45 +00:00
id: 'select',
items: Ox.merge(
pandora.site.findKeys.map(function(key, i) {
return {
id: key.id,
title: 'Find: ' + key.title,
checked: findKey == key.id
};
}),
[{}, {
id: 'advanced',
title: 'Find: Advanced',
checked: findKey == 'advanced'
}]
),
2011-05-25 19:42:45 +00:00
overlap: 'right',
width: 112
})
.bindEvent({
2011-09-17 17:40:15 +00:00
change: function(data) {
2011-05-25 19:42:45 +00:00
var key = data.selected[0].id;
if (key == 'advanced') {
2011-06-06 15:48:11 +00:00
pandora.$ui.filterDialog = pandora.ui.filterDialog().open();
2011-08-24 08:25:08 +00:00
pandora.$ui.findInput.options({placeholder: 'Edit...'})
2011-05-25 19:42:45 +00:00
} else {
2011-06-06 15:48:11 +00:00
pandora.$ui.mainMenu.checkItem('findMenu_find_' + key);
pandora.$ui.findInput.options({
2011-08-24 08:25:08 +00:00
autocomplete: autocompleteFunction(),
placeholder: ''
2011-05-25 19:42:45 +00:00
}).focus();
}
}
}),
2011-06-19 17:49:25 +00:00
pandora.$ui.findInput = Ox.Input({
2011-05-25 19:42:45 +00:00
autocomplete: autocompleteFunction(),
autocompleteSelect: true,
autocompleteSelectHighlight: true,
autocompleteSelectSubmit: true,
clear: true,
id: 'input',
placeholder: findKey == 'advanced' ? 'Edit...' : '',
2011-05-25 19:42:45 +00:00
value: findValue,
width: 192
})
.bindEvent({
focus: function(data) {
2011-08-24 08:25:08 +00:00
if (pandora.$ui.findSelect.value() == 'advanced') {
pandora.$ui.filterDialog = pandora.ui.filterDialog().open();
}
},
submit: function(data) {
2011-09-28 00:10:26 +00:00
var findInList = pandora.user.ui._list
&& pandora.$ui.findListSelect.value() == 'list',
key = pandora.$ui.findSelect.value(),
2011-08-24 06:32:59 +00:00
conditions = data.value ? [{
key: key,
value: data.value,
operator: '='
2011-08-24 06:32:59 +00:00
}] : [];
if (findInList) {
pandora.UI.set('find', {
2011-08-24 06:32:59 +00:00
conditions: Ox.merge([{
key: 'list',
2011-09-28 00:10:26 +00:00
value: pandora.user.ui._list,
operator: '=='
2011-08-24 06:32:59 +00:00
}], conditions),
operator: '&'
});
// fixme: what was this?
// data.value && findIndex == 0 && pandora.user.ui.find.conditions.reverse();
} else {
2011-09-28 00:10:26 +00:00
if (pandora.user.ui._list) {
Ox.forEach(pandora.$ui.folderList, function($list) {
$list.options({selected: []});
});
pandora.UI.set({list: ''});
}
pandora.UI.set('find', {
2011-08-24 06:32:59 +00:00
conditions: conditions,
2011-10-08 13:09:16 +00:00
operator: '&'
});
2011-05-25 19:42:45 +00:00
}
}
})
]),
id: 'findElement'
})
.css({
float: 'right',
margin: '4px'
});
function autocompleteFunction() {
return pandora.user.ui.find.conditions.length ? function(value, callback) {
2011-05-25 19:42:45 +00:00
var elementValue = that.value(),
2011-09-28 00:10:26 +00:00
key = elementValue[pandora.user.ui._list ? 1 : 0],
2011-06-06 15:48:11 +00:00
findKey = Ox.getObjectById(pandora.site.findKeys, key);
2011-05-25 19:42:45 +00:00
value === '' && Ox.print('Warning: autocomplete function should never be called with empty value');
2011-09-27 14:14:40 +00:00
if (findKey.autocomplete) {
2011-05-25 19:42:45 +00:00
pandora.api.autocomplete({
key: key,
2011-09-27 14:14:40 +00:00
query: {
conditions: pandora.$ui.findListSelect
&& pandora.$ui.findListSelect.value() == 'list'
2011-09-28 00:10:26 +00:00
? [{key: 'list', value: pandora.user.ui._list, operator: '=='}] : [],
2011-09-27 14:14:40 +00:00
operator: '&'
},
2011-05-25 19:42:45 +00:00
range: [0, 20],
sort: [{
key: 'votes',
operator: '-'
}],
value: value
}, function(result) {
callback(result.data.items);
});
} else {
callback([]);
}
} : null;
}
return that;
};