pandora/static/js/pandora/filesView.js

464 lines
15 KiB
JavaScript
Raw Normal View History

2011-07-29 20:37:11 +02:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-06-16 19:40:31 +02:00
pandora.ui.filesView = function(options, self) {
2011-06-16 19:40:31 +02:00
var self = self || {},
2011-06-19 19:49:25 +02:00
that = Ox.Element({}, self)
2011-06-16 19:40:31 +02:00
.defaults({
id: ''
})
.options(options || {});
2011-10-27 11:19:38 +00:00
self.wasChecked = false;
self.numberOfItems = 0;
2011-06-16 19:40:31 +02:00
self.selected = [];
2011-06-19 19:49:25 +02:00
self.$toolbar = Ox.Bar({
2011-06-16 19:40:31 +02:00
size: 24
});
self.$userSelect = Ox.Select({
items: [
{id: 'admin', title: 'Admin', disabled: true},
{id: 'j', title: 'User: j', checked: true},
{id: 'rlx', title: 'User: rlx'},
{},
{id: 'admin', title: 'Staff', disabled: true},
{},
{id: 'admin', title: 'Member', disabled: true}
]
2011-06-16 19:40:31 +02:00
})
.css({
float: 'left',
width: '128px',
2011-06-16 19:40:31 +02:00
margin: '4px'
})
.appendTo(self.$toolbar);
2011-10-23 18:19:47 +02:00
self.$ignoreButton = Ox.Button({
2011-06-16 19:40:31 +02:00
disabled: 'true',
2011-10-23 18:19:47 +02:00
title: 'Ignore Selected Files...'
2011-06-16 19:40:31 +02:00
})
.css({
float: 'right',
margin: '4px'
})
2011-10-23 18:19:47 +02:00
.appendTo(self.$toolbar)
.bindEvent({
click: function() {
var data = {
ids: self.selected,
ignore: true
};
pandora.api.editFiles(data, function(result) {
Ox.Request.clearCache();
self.$filesList.reloadList();
});
}
});
2011-06-16 19:40:31 +02:00
2011-06-19 19:49:25 +02:00
self.$filesList = Ox.TextList({
2011-06-16 19:40:31 +02:00
columns: [
2011-10-18 22:06:01 +02:00
{
2011-10-23 13:57:52 +02:00
clickable: function(data) {
return true;
},
2011-10-18 22:06:01 +02:00
format: function(value, data) {
Ox.print('File', value, data.wanted, data);
return $('<img>')
.attr({
src: data.wanted ? Ox.UI.getImageURL('symbolStar') :
Ox.UI.getImageURL('symbolCheck')
})
.css({
width: '10px',
height: '10px',
padding: '3px',
opacity: (value || data.wanted) ? 1 : 0
});
},
id: 'selected',
operator: '-',
title: $('<img>').attr({
src: Ox.UI.getImageURL('symbolCheck')
}),
2011-10-23 13:57:52 +02:00
tooltip: function (data) {
return data.instances.filter(function(i) {return i.ignore; }).length > 0
? 'Use this file'
: 'Dont use this file';
},
2011-10-18 22:06:01 +02:00
visible: true,
width: 16
},
2011-06-16 19:40:31 +02:00
{
align: 'left',
id: 'users',
operator: '+',
title: 'Users',
visible: true,
2011-10-18 22:06:01 +02:00
width: 50
2011-06-16 19:40:31 +02:00
},
{
align: 'left',
id: 'path',
2011-06-16 19:40:31 +02:00
operator: '+',
title: 'Path',
2011-06-16 19:40:31 +02:00
visible: true,
width: 480
2011-06-16 19:40:31 +02:00
},
{
align: 'left',
id: 'type',
operator: '+',
title: 'Type',
visible: true,
width: 60
},
{
align: 'right',
id: 'part',
operator: '+',
title: 'Part',
visible: true,
width: 60
},
{
align: 'right',
format: {type: 'value', args: ['B']},
2011-10-29 19:46:46 +02:00
id: 'size',
2011-06-16 19:40:31 +02:00
operator: '-',
title: 'Size',
visible: true,
width: 90
},
{
align: 'right',
format: {type: 'resolution', args: ['px']},
id: 'resolution',
operator: '-',
title: 'Resolution',
visible: true,
width: 90
},
{
align: 'right',
format: {type: 'duration', args: [0, 'short']},
id: 'duration',
operator: '-',
title: 'Duration',
visible: true,
width: 90
},
{
align: 'left',
2011-06-27 15:39:35 +02:00
id: 'id',
2011-06-16 19:40:31 +02:00
operator: '+',
2011-06-27 15:39:35 +02:00
title: 'ID',
2011-06-16 19:40:31 +02:00
unique: true,
visible: false,
width: 120
},
{
align: 'left',
id: 'instances',
operator: '+',
title: 'Instances',
visible: false,
width: 120
}
],
columnsMovable: true,
columnsRemovable: true,
columnsResizable: true,
columnsVisible: true,
id: 'files',
items: function(data, callback) {
pandora.api.findFiles(Ox.extend(data, {
2011-06-16 19:40:31 +02:00
query: {
conditions: [{
key: 'id',
value: self.options.id,
2011-10-18 22:06:01 +02:00
operator: '=='
2011-06-16 19:40:31 +02:00
}]
}
}), callback);
},
2011-10-18 22:06:01 +02:00
keys: ['wanted'],
2011-06-16 19:40:31 +02:00
scrollbarVisible: true,
sort: [{key: 'path', operator: '+'}]
2011-06-16 19:40:31 +02:00
})
.bindEvent({
2011-10-23 13:57:52 +02:00
click: function(data) {
if (data.key == 'selected') {
var ignored = self.$filesList.value(data.id, 'instances')
.filter(function(i) {return i.ignore; }).length > 0;
pandora.api.editFile({
id: data.id,
ignore: !ignored
}, function(result) {
Ox.Request.clearCache();
self.$filesList.reloadList();
});
}
},
2011-10-27 11:19:38 +00:00
init: function(data) {
self.numberOfItems = data.items;
},
2011-06-16 19:40:31 +02:00
open: openFiles,
2011-10-23 13:57:52 +02:00
select: selectFiles,
2011-06-16 19:40:31 +02:00
});
self.$instancesList = Ox.TextList({
columns: [
{
align: 'left',
id: 'user',
operator: '+',
title: 'User',
visible: true,
width: 120
},
{
align: 'left',
id: 'volume',
operator: '+',
title: 'Volume',
visible: true,
width: 120
},
{
align: 'left',
id: 'path',
2011-06-16 19:40:31 +02:00
operator: '+',
title: 'Path',
2011-06-16 19:40:31 +02:00
visible: true,
width: 480
2011-06-16 19:40:31 +02:00
},
],
columnsMovable: true,
columnsRemovable: true,
columnsResizable: true,
columnsVisible: true,
id: 'files',
items: [],
scrollbarVisible: true,
sort: [{key: 'user', operator: '+'}]
});
self.$movieLabel = Ox.Label({
textAlign: 'center',
title: 'Move Selected Files to Another Movie',
width: 240
})
.css({margin: '8px'});
['title', 'director', 'year', 'id'].forEach(function(key) {
self['$' + key + 'Input'] = Ox.Input({
clear: true,
id: key,
label: key == 'id' ? 'ID' : Ox.toTitleCase(key),
labelWidth: 64,
width: 240
})
.bindEvent({
change: function(data) {
var conditions;
if (data.value.length) {
2011-10-18 22:06:01 +02:00
/*
2011-06-16 19:40:31 +02:00
if (key == 'id') {
2011-10-18 22:06:01 +02:00
conditions = [{key: 'id', value: data.value, operator: '=='}]
2011-06-16 19:40:31 +02:00
} else {
conditions = Ox.map(['title', 'director', 'year'], function(key) {
var value = self['$' + key + 'Input'].options('value')
return value.length ? {key: key, value: value, operator: '='} : null;
2011-10-18 22:06:01 +02:00
});
2011-06-16 19:40:31 +02:00
}
pandora.api.find({
keys: ['title', 'director', 'year', 'id'],
query: {
conditions: conditions,
operator: '&'
},
range: [0, 2]
}, function(result) {
2011-10-18 22:06:01 +02:00
*/
conditions = {};
Ox.map(['id', 'title', 'director', 'year'], function(key) {
var value = self['$' + key + 'Input'].options('value');
if(value.length) {
conditions[key] = value;
}
});
pandora.api.findId(conditions, function(result) {
2011-06-16 19:40:31 +02:00
var length = result.data.items.length;
if (length == 0) {
if (key != 'id') {
self.$idInput.options({value: ''});
}
} else if (result.data.items.length == 1) {
['title', 'director', 'year', 'id'].forEach(function(key) {
self['$' + key + 'Input'].options({
value: key == 'director'
? result.data.items[0][key].join(', ')
: result.data.items[0][key]
});
});
} else {
self.$idInput.options({value: ''});
}
2011-10-18 22:06:01 +02:00
});
2011-06-16 19:40:31 +02:00
}
}
});
});
self.$checkbox = Ox.Checkbox({
checked: false,
id: 'go',
2011-10-27 11:19:38 +00:00
title: 'Switch to this '
+ pandora.site.itemName.singular.toLowerCase()
+ ' after moving files',
2011-06-16 19:40:31 +02:00
width: 240
});
self.$movieForm = Ox.Form({
items: [
self.$titleInput,
self.$directorInput,
self.$yearInput,
self.$idInput,
self.$checkbox
],
width: 240
})
.css({margin: '8px'});
self.$clearButton = Ox.Button({
title: 'Clear Form',
width: 116
})
.css({margin: '0 4px 4px 8px'})
.bindEvent({
click: function() {
['title', 'director', 'year', 'id'].forEach(function(key) {
self['$' + key + 'Input'].options({value: ''})
});
}
});
self.$moveButton = Ox.Button({
disabled: true,
title: 'Move Files',
width: 116
})
.css({margin: '0 4px 4px 4px'})
.bindEvent({
2011-10-27 11:19:38 +00:00
click: moveFiles
2011-06-16 19:40:31 +02:00
});
self.$moviePanel = Ox.Element()
.append(self.$movieLabel)
.append(self.$movieForm)
.append(self.$clearButton)
.append(self.$moveButton);
that.$element = Ox.SplitPanel({
elements: [
{
element: Ox.SplitPanel({
elements: [
{
element: self.$toolbar,
size: 24
},
{
element: self.$filesList
},
{
element: self.$instancesList,
size: 80
}
],
orientation: 'vertical'
})
},
{
collapsible: true,
element: self.$moviePanel,
size: 256
}
],
orientation: 'horizontal'
});
2011-10-27 11:19:38 +00:00
function moveFiles(data) {
var data = {
ids: self.selected,
itemId: self.$idInput.value()
};
['title', 'director', 'year'].forEach(function(key) {
data[key] = self['$' + key + 'Input'].value();
});
pandora.api.moveFiles(data, function(result) {
if (self.$checkbox.value()) {
Ox.Request.clearCache(); // fixme: remove
pandora.UI.set({item: result.data.itemId});
} else {
Ox.print('moved', self.selected, result.data.itemId);
self.$filesList.reloadList();
self.$instancesList.reloadList();
}
});
}
2011-09-17 19:40:15 +02:00
function openFiles(data) {
data.ids.length == 1 && pandora.api.parsePath({
path: self.$filesList.value(data.ids[0], 'path')
}, function(result) {
['title', 'director', 'year'].forEach(function(key) {
if (result.data[key]) {
2011-10-27 11:33:25 +02:00
self['$' + key + 'Input'].options({
value: key == 'director'
? result.data[key].join(', ')
: result.data[key]
});
}
});
updateForm();
2011-10-18 22:06:01 +02:00
self.$titleInput.triggerEvent('change', {value: result.data['title']});
});
2011-06-16 19:40:31 +02:00
}
function selectFiles(data) {
self.selected = data.ids;
self.$instancesList.options({
items: data.ids.length == 1
? self.$filesList.value(data.ids[0], 'instances') : []
});
updateForm();
}
function updateForm() {
2011-10-27 11:19:38 +00:00
if (self.selected.length == self.numberOfItems) {
self.wasChecked = self.$checkbox.options('checked');
self.$checkbox.options({
checked: true,
disabled: true
});
} else {
self.$checkbox.options({
checked: self.wasChecked,
disabled: false
});
}
2011-06-16 19:40:31 +02:00
self.$moveButton.options({
2011-10-27 11:19:38 +00:00
disabled: self.selected.length == 0
2011-06-16 19:40:31 +02:00
});
2011-10-23 18:19:47 +02:00
self.$ignoreButton.options({
2011-10-27 11:19:38 +00:00
disabled: self.selected.length == 0
2011-10-23 18:19:47 +02:00
});
2011-06-16 19:40:31 +02:00
}
return that;
};