forked from 0x2620/pandora
update import dialog layout
This commit is contained in:
parent
90486ec774
commit
864e52acf6
1 changed files with 77 additions and 56 deletions
|
@ -1,58 +1,42 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
pandora.ui.importMediaDialog = function(options) {
|
pandora.ui.importMediaDialog = function(options) {
|
||||||
var
|
|
||||||
|
var help = Ox._('Enter a URL from an external site (like YouTube or Vimeo).'),
|
||||||
|
|
||||||
$content = Ox.Element().css({margin: '16px'}),
|
$content = Ox.Element().css({margin: '16px'}),
|
||||||
$url = Ox.Input({
|
|
||||||
label: Ox._('Url'),
|
$input = Ox.Input({
|
||||||
labelWidth: 32,
|
label: Ox._('URL'),
|
||||||
|
labelWidth: 128,
|
||||||
width: 384
|
width: 384
|
||||||
})
|
})
|
||||||
.css({
|
.bindEvent({
|
||||||
marginTop: '16px'
|
change: submitURL
|
||||||
|
})
|
||||||
|
|
||||||
|
$button = Ox.Button({
|
||||||
|
title: Ox._('Preview'),
|
||||||
|
width: 128
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
change: function(data) {
|
click: submitURL
|
||||||
$info.empty();
|
}),
|
||||||
that.disableButton('import');
|
|
||||||
if (data.value) {
|
$form = Ox.FormElementGroup({
|
||||||
$info.append(loadingIcon());
|
elements: [$input, $button]
|
||||||
getInfo(data.value, function(items) {
|
|
||||||
$info.empty();
|
|
||||||
if (items.length) {
|
|
||||||
// FIXME: support playlists / multiple items
|
|
||||||
var info = items[0];
|
|
||||||
that.enableButton('import');
|
|
||||||
$info.append($('<img>').css({
|
|
||||||
'max-width': '128px',
|
|
||||||
margin: '4px',
|
|
||||||
float: 'left'
|
|
||||||
}).attr('src', info.thumbnail));
|
|
||||||
$info.append($('<div>').css({
|
|
||||||
'font-weight': 'bold'
|
|
||||||
}).html(info.title));
|
|
||||||
if (info.duration) {
|
|
||||||
$info.append($('<div>').html(Ox.formatDuration(info.duration)));
|
|
||||||
}
|
|
||||||
$info.append($('<div>').html(info.description));
|
|
||||||
} else {
|
|
||||||
$info.empty();
|
|
||||||
that.disableButton('import');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
.appendTo($content),
|
.appendTo($content),
|
||||||
|
|
||||||
$info = Ox.Element()
|
$info = Ox.Element()
|
||||||
.css({margin: '8px'})
|
.html(help)
|
||||||
.html('Enter a url from another site (like YouTube) to create a new item.')
|
|
||||||
.appendTo($content),
|
.appendTo($content),
|
||||||
|
|
||||||
that = Ox.Dialog({
|
that = Ox.Dialog({
|
||||||
buttons: [
|
buttons: [
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
id: 'cancel',
|
id: 'close',
|
||||||
title: Ox._('Cancel')
|
title: Ox._('Close')
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
|
@ -62,7 +46,7 @@ pandora.ui.importMediaDialog = function(options) {
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
id: 'import',
|
id: 'import',
|
||||||
title: Ox._('Import')
|
title: Ox._('Import Video')
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: importMedia
|
click: importMedia
|
||||||
})
|
})
|
||||||
|
@ -70,27 +54,21 @@ pandora.ui.importMediaDialog = function(options) {
|
||||||
closeButton: true,
|
closeButton: true,
|
||||||
content: $content,
|
content: $content,
|
||||||
fixedSize: true,
|
fixedSize: true,
|
||||||
height: 176,
|
height: 288,
|
||||||
keys: {
|
keys: {
|
||||||
escape: 'cancel'
|
escape: 'close'
|
||||||
},
|
},
|
||||||
removeOnClose: true,
|
removeOnClose: true,
|
||||||
title: Ox._('Import Media'),
|
title: Ox._('Import Media'),
|
||||||
width: 416
|
width: 544
|
||||||
});
|
});
|
||||||
window.$info = $info;
|
|
||||||
function getInfo(url, callback) {
|
|
||||||
pandora.api.getMediaUrlInfo({url: url}, function(result) {
|
|
||||||
callback(result.data.items);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function addMedia(url, callback) {
|
function addMedia(url, callback) {
|
||||||
pandora.api.getMediaUrlInfo({url: url}, function(result) {
|
pandora.api.getMediaUrlInfo({url: url}, function(result) {
|
||||||
result.data.items.forEach(function(info) {
|
result.data.items.forEach(function(info) {
|
||||||
var infoKeys = [
|
var infoKeys = [
|
||||||
"date", "description", "id", "tags",
|
'date', 'description', 'id', 'tags',
|
||||||
"title", "uploader", "url"
|
'title', 'uploader', 'url'
|
||||||
];
|
];
|
||||||
var values = Ox.map(pandora.site.importMetadata, function(value, key) {
|
var values = Ox.map(pandora.site.importMetadata, function(value, key) {
|
||||||
var type = Ox.getObjectById(pandora.site.itemKeys, key).type;
|
var type = Ox.getObjectById(pandora.site.itemKeys, key).type;
|
||||||
|
@ -137,20 +115,26 @@ pandora.ui.importMediaDialog = function(options) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function getInfo(url, callback) {
|
||||||
|
pandora.api.getMediaUrlInfo({url: url}, function(result) {
|
||||||
|
callback(result.data.items);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function importMedia() {
|
function importMedia() {
|
||||||
var url = $url.value();
|
var url = $url.value();
|
||||||
$info.empty();
|
$info.empty();
|
||||||
$info.append(loadingIcon());
|
$info.append(loadingIcon());
|
||||||
that.disableButton('import');
|
that.disableButton('import');
|
||||||
that.disableButton('cancel');
|
that.disableButton('close');
|
||||||
addMedia(url, function(item) {
|
addMedia(url, function(item) {
|
||||||
if (item) {
|
if (item) {
|
||||||
that.close();
|
that.close();
|
||||||
Ox.Request.clearCache();
|
Ox.Request.clearCache();
|
||||||
pandora.URL.push('/'+item+'/media');
|
pandora.URL.push('/' + item + '/media');
|
||||||
} else {
|
} else {
|
||||||
$info.empty().html('Import failed');
|
$info.empty().html('Import failed.');
|
||||||
that.enableButton('cancel');
|
that.enableButton('close');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -163,5 +147,42 @@ pandora.ui.importMediaDialog = function(options) {
|
||||||
}).start();
|
}).start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function submitURL() {
|
||||||
|
var value = $input.value();
|
||||||
|
if (value) {
|
||||||
|
$info.empty();
|
||||||
|
$info.append(loadingIcon());
|
||||||
|
getInfo(value, function(items) {
|
||||||
|
$info.empty();
|
||||||
|
if (items.length) {
|
||||||
|
// FIXME: support playlists / multiple items
|
||||||
|
var info = items[0];
|
||||||
|
$info.append($('<img>').css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: '16px',
|
||||||
|
top: '48px',
|
||||||
|
width: '128px'
|
||||||
|
}).attr('src', info.thumbnail));
|
||||||
|
$info.append($('<div>').addClass('OxText').css({
|
||||||
|
height: '192px',
|
||||||
|
overflow: 'hidden',
|
||||||
|
position: 'absolute',
|
||||||
|
right: '16px',
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
top: '48px',
|
||||||
|
width: '240px'
|
||||||
|
}).html(
|
||||||
|
'<span style="font-weight: bold">' + info.title
|
||||||
|
+ '</span><br/><br/>' + info.description
|
||||||
|
));
|
||||||
|
that.enableButton('import');
|
||||||
|
} else {
|
||||||
|
$info.html(help);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue