add id dialog
This commit is contained in:
parent
1f800c0361
commit
d10c7d1acb
1 changed files with 195 additions and 0 deletions
195
static/js/pandora/idDialog.js
Normal file
195
static/js/pandora/idDialog.js
Normal file
|
@ -0,0 +1,195 @@
|
|||
'use strict';
|
||||
|
||||
pandora.ui.idDialog = function(data) {
|
||||
|
||||
var dialogHeight = Math.round((window.innerHeight - 48) * 0.9),
|
||||
dialogWidth = Math.round(window.innerWidth * 0.9),
|
||||
formWidth = getFormWidth(),
|
||||
|
||||
$loading = Ox.Element().append(
|
||||
$('<img>')
|
||||
.attr({src: Ox.UI.getImageURL('symbolLoadingAnimated')})
|
||||
.css({
|
||||
position: 'absolute',
|
||||
width: '32px',
|
||||
height: '32px',
|
||||
left: 0,
|
||||
top: 0,
|
||||
right: 0,
|
||||
bottom: 0,
|
||||
margin: 'auto'
|
||||
})
|
||||
),
|
||||
|
||||
$checkboxGroup,
|
||||
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
distabled: true,
|
||||
id: 'switch',
|
||||
title: 'Update Metadata...'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
that.close();
|
||||
pandora.$ui.metadataDialog = pandora.ui.metadataDialog(data).open();
|
||||
}
|
||||
})
|
||||
{},
|
||||
Ox.Button({
|
||||
id: 'cancel',
|
||||
title: 'Don\'t Update'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
that.close();
|
||||
}
|
||||
}),
|
||||
Ox.Button({
|
||||
disabled: true,
|
||||
id: 'update',
|
||||
title: 'Update'
|
||||
})
|
||||
.bindEvent({
|
||||
click: updateId
|
||||
})
|
||||
],
|
||||
closeButton: true,
|
||||
content: $loading,
|
||||
height: dialogHeight,
|
||||
maximizeButton: true,
|
||||
minHeight: 256,
|
||||
minWidth: 512,
|
||||
removeOnClose: true,
|
||||
title: 'Update IMDb ID',
|
||||
width: dialogWidth
|
||||
})
|
||||
.bindEvent({
|
||||
resize: setSize
|
||||
});
|
||||
|
||||
getIds();
|
||||
|
||||
function getFormWidth() {
|
||||
return dialogWidth - 32 - Ox.UI.SCROLLBAR_SIZE;
|
||||
}
|
||||
|
||||
function getIds() {
|
||||
var get = {};
|
||||
['title', 'director', 'year'].forEach(function(key) {
|
||||
if (!Ox.isEmpty(data[key])) {
|
||||
get[key] = data.key;
|
||||
}
|
||||
});
|
||||
pandora.api.getIds(get, function(result) {
|
||||
var checkboxes,
|
||||
$content = Ox.Element()
|
||||
.css({padding: '12px', overflowY: 'auto'});
|
||||
if (result.data.items) {
|
||||
['title', 'director', 'year'].forEach(function(key) {
|
||||
Ox.Input({
|
||||
label: Ox.toTitleCase(key),
|
||||
labelWidth: 128,
|
||||
value: key == 'director'
|
||||
? data[key].join(', ')
|
||||
: data[key],
|
||||
width: formWidth
|
||||
})
|
||||
.css({display: 'inline-block', margin: '4px'})
|
||||
.bindEvent({
|
||||
change: function(data) {
|
||||
data[key] = data.value;
|
||||
getIds();
|
||||
}
|
||||
})
|
||||
.appendTo($content);
|
||||
});
|
||||
if (!data.imdbId) {
|
||||
checkboxes.push(
|
||||
{id: 'none', title: getTitle(data)}
|
||||
);
|
||||
} else if (Ox.getIndexById(result.data.items, data.imdbId) == -1) {
|
||||
checkboxes.push(
|
||||
{id: data.imdbId, title: getTitle(data)}
|
||||
);
|
||||
}
|
||||
checkboxes = checkboxes.concat(result.data.items.map(item) {
|
||||
return {id: item.id, title: getTitle(item)};
|
||||
});
|
||||
$checkboxGroup = Ox.CheckboxGroup({
|
||||
checkboxes: checkboxes,
|
||||
width: formWidth,
|
||||
value: !data.imdbId ? 'none' : data.imdbId
|
||||
})
|
||||
.css({display: 'inline-block', margin: '4px'})
|
||||
.bindEvent({
|
||||
change: updateButton
|
||||
})
|
||||
.appendTo($content);
|
||||
checkboxes.forEach(function(checkbox, index) {
|
||||
if (checkbox.id != 'none') {
|
||||
Ox.Button({
|
||||
title: 'arrowLeft',
|
||||
tooltip: 'View on IMDb',
|
||||
type: 'image'
|
||||
})
|
||||
.css({
|
||||
position: 'absolute',
|
||||
top: 88 + index * 24 + 'px',
|
||||
right: '16px'
|
||||
})
|
||||
.bindEvent({
|
||||
click: function() {
|
||||
window.open('/url=' + encodeURIComponent(
|
||||
'http://imdb.com/title/tt'
|
||||
+ checkbox.id + '/combined'
|
||||
), '_blank');
|
||||
}
|
||||
})
|
||||
.appendTo($content);
|
||||
}
|
||||
})
|
||||
that.options({content: $content});
|
||||
updateButton();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getTitle(data) {
|
||||
return Ox.filter([
|
||||
data.imdbId,
|
||||
data.title + (data.originalTitle ? ' (' + data.originalTitle + ')' : ''),
|
||||
data.director ? data.director.join(', ') : '',
|
||||
data.year
|
||||
]).join(' — ');
|
||||
}
|
||||
|
||||
function setSize() {
|
||||
dialogHeight = data.height;
|
||||
dialogWidth = data.width;
|
||||
formWidth = getFormWidth();
|
||||
$checkboxGroup.options({width: formWidth});
|
||||
}
|
||||
|
||||
function updateButton() {
|
||||
that[
|
||||
$checkboxGroup.options('value') == data.imdbId
|
||||
? 'disableButton'
|
||||
: 'enableButton'
|
||||
]('update');
|
||||
}
|
||||
|
||||
function updateId() {
|
||||
pandora.api.edit({id: data.id, imdbId: 'foo'}, function(result) {
|
||||
that.close();
|
||||
pandora.updateItemContext();
|
||||
pandora.$ui.contentPanel.replaceElement(1,
|
||||
pandora.$ui.item = pandora.ui.item()
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
return that;
|
||||
|
||||
};
|
Loading…
Reference in a new issue