pandora/static/js/editor.js

444 lines
20 KiB
JavaScript
Raw Normal View History

2011-11-05 17:04:10 +00:00
'use strict';
2012-04-17 06:31:44 +00:00
pandora.ui.editor = function(data) {
2018-03-06 09:16:43 +00:00
2012-06-15 13:20:35 +00:00
var ui = pandora.user.ui,
2018-03-06 09:16:43 +00:00
rightsLevel = data.rightslevel,
canEdit = pandora.hasCapability('canEditMetadata') || data.editable,
2013-10-22 14:45:39 +00:00
that = Ox.VideoAnnotationPanel({
2012-06-15 13:20:35 +00:00
annotationsCalendarSize: ui.annotationsCalendarSize,
2018-10-09 16:30:25 +00:00
annotationsHighlight: ui.annotationsHighlight,
2012-06-15 13:20:35 +00:00
annotationsMapSize: ui.annotationsMapSize,
annotationsRange: ui.annotationsRange,
2018-09-12 16:48:18 +00:00
annotationsSeparator: pandora.site.annotations.separator,
2012-06-15 13:20:35 +00:00
annotationsSize: ui.annotationsSize,
annotationsSort: ui.annotationsSort,
2014-02-14 15:23:59 +00:00
annotationsTooltip: Ox._('annotations')
2014-09-25 19:56:19 +00:00
+ ' <span class="OxBright">' + Ox.SYMBOLS.shift + 'A</span>',
audioTrack: data.audioTrack,
2012-06-15 13:20:35 +00:00
censored: data.censored,
censoredIcon: pandora.site.cantPlay.icon,
2014-02-14 15:23:59 +00:00
censoredTooltip: Ox._(pandora.site.cantPlay.text),
2012-06-15 13:20:35 +00:00
clickLink: pandora.clickLink,
cuts: data.cuts || [],
duration: data.duration,
2017-11-04 09:53:27 +00:00
enableDownload: pandora.hasCapability('canDownloadVideo') >= data.rightslevel || data.editable,
enableExport: pandora.hasCapability('canExportAnnotations') || data.editable,
enableImport: pandora.hasCapability('canImportAnnotations') || data.editable,
2012-06-15 13:20:35 +00:00
enableSetPosterFrame: !pandora.site.media.importFrames && data.editable,
enableSubtitles: ui.videoSubtitles,
find: ui.itemFind,
findLayer: pandora.getFindLayer(),
2012-06-15 13:20:35 +00:00
getFrameURL: function(position) {
return pandora.getMediaURL('/' + ui.item + '/' + ui.videoResolution + 'p' + position + '.jpg?' + data.modified);
2012-06-15 13:20:35 +00:00
},
getLargeTimelineURL: function(type, i) {
return pandora.getMediaURL('/' + ui.item + '/timeline' + type + '64p' + i + '.jpg?' + data.modified);
2012-06-15 13:20:35 +00:00
},
getSmallTimelineURL: function(type, i) {
return pandora.getMediaURL('/' + ui.item + '/timeline' + type + '16p' + i + '.jpg?' + data.modified);
2012-06-15 13:20:35 +00:00
},
height: pandora.$ui.contentPanel.size(1),
id: 'editor',
'in': ui.videoPoints[ui.item]['in'],
2014-01-19 06:28:05 +00:00
itemName: pandora.site.itemName,
2012-06-15 13:20:35 +00:00
layers: data.annotations.map(function(layer) {
return Ox.extend({
editable: layer.canAddAnnotations[pandora.user.level] || canEdit
}, layer, {
autocomplete: layer.type == 'entity'
? function(key, value, callback) {
pandora.api.autocompleteEntities({
key: layer.entity,
operator: '=',
2018-11-12 11:18:41 +00:00
range: [0, 100],
value: value
}, function(result) {
callback(result.data.items);
})
} : layer.autocomplete
? function(key, value, callback) {
var keys = layer.autocompleteKeys && layer.autocompleteKeys.length
? layer.autocompleteKeys
: [key];
var n = keys.length;
var itemss = [];
keys.forEach(function(key) {
pandora.api.autocomplete({
key: key,
operator: '=',
2018-11-12 11:18:41 +00:00
range: [0, 100],
value: value
}, function(result) {
n--;
itemss.push(result.data.items);
if (n == 0) {
callback(Ox.unique(Ox.flatten(itemss)));
}
});
});
} : null
});
2012-06-15 13:20:35 +00:00
}),
2013-08-06 09:55:22 +00:00
loop: ui.videoLoop,
2012-06-15 13:20:35 +00:00
muted: ui.videoMuted,
out: ui.videoPoints[ui.item].out,
position: ui.videoPoints[ui.item].position,
posterFrame: data.posterFrame,
resolution: ui.videoResolution,
selected: ui.videoPoints[ui.item].annotation
? ui.item + '/' + ui.videoPoints[ui.item].annotation
: '',
selectResult: !pandora._dontSelectResult,
2012-06-15 13:20:35 +00:00
showAnnotations: ui.showAnnotations,
showAnnotationsCalendar: ui.showAnnotationsCalendar,
showAnnotationsMap: ui.showAnnotationsMap,
showLargeTimeline: true,
showLayers: Ox.clone(ui.showLayers),
showUsers: pandora.site.annotations.showUsers,
subtitles: data.subtitles,
2021-05-21 19:38:25 +00:00
subtitlesDefaultTrack: data.subtitlesDefaultTrack || Ox.getLanguageNameByCode(pandora.site.language),
2013-10-22 17:42:11 +00:00
subtitlesLayer: data.subtitlesLayer,
2015-04-14 14:53:47 +00:00
subtitlesOffset: ui.videoSubtitlesOffset,
2021-05-21 19:38:25 +00:00
subtitlesTrack: data.subtitlesTrack || Ox.getLanguageNameByCode(pandora.site.language),
2012-06-15 13:20:35 +00:00
timeline: ui.videoTimeline,
timelines: pandora.site.timelines,
video: data.video,
videoRatio: data.videoRatio,
videoSize: ui.videoSize,
volume: ui.videoVolume,
width: Ox.$document.width() - pandora.$ui.mainPanel.size(0) - 1
2012-06-15 13:20:35 +00:00
}).bindEvent({
addannotation: function(data) {
Ox.Log('', 'addAnnotation', data);
// async to not capture keyboard input
setTimeout(function() {
2012-06-16 15:24:09 +00:00
var created = Ox.formatDate(new Date(), '%Y-%m-%dT%H:%M:%SZ'),
layer = Ox.getObjectById(pandora.site.layers, data.layer),
type = layer.type;
2019-03-12 13:44:57 +00:00
if (layer.getDefaults) {
pandora.api.addAnnotation(Ox.extend({
'in': data['in'],
item: ui.item,
layer: data.layer,
out: data.out
},
pandora[layer.getDefaults](data)
), function(result) {
that.addAnnotation(data.layer, result.data)
})
} else {
that.addAnnotation(data.layer, Ox.extend({
created: created,
duration: data.out - data['in'],
editable: true,
id: '_' + Ox.uid(),
'in': data['in'],
modified: created,
out: data.out,
user: pandora.user.username,
value: ''
},
type == 'place' ? {
place: {lat: null, lng: null}
} : type == 'event' ? {
event: {start: '', end: ''}
} : {},
));
}
Ox.Request.clearCache();
2012-06-15 13:20:35 +00:00
});
},
2018-10-09 16:30:25 +00:00
annotationshighlight: function(data) {
pandora.UI.set({annotationsHighlight: data});
},
2012-06-15 13:20:35 +00:00
annotationsrange: function(data) {
pandora.UI.set({annotationsRange: data.range});
},
annotationssize: function(data) {
pandora.UI.set({annotationsSize: data.size});
},
annotationssort: function(data) {
pandora.UI.set({annotationsSort: data.sort});
},
censored: function() {
pandora.URL.push(pandora.site.cantPlay.link);
},
2013-07-14 16:38:15 +00:00
copy: function(data) {
pandora.clipboard.copy(data.map(function(clip) {
2013-08-02 19:38:18 +00:00
return clip.annotation || ui.item + '/' + clip['in'] + '-' + clip.out
2013-07-13 20:59:28 +00:00
}), 'clip');
},
2013-07-14 16:38:15 +00:00
copyadd: function(data) {
pandora.clipboard.add(data.map(function(clip) {
2013-08-02 19:38:18 +00:00
return clip.annotation || ui.item + '/' + clip['in'] + '-' + clip.out
2013-07-13 20:59:28 +00:00
}), 'clip');
},
2012-06-15 13:20:35 +00:00
define: function(data) {
var dialog = data.type + 'sDialog';
pandora.$ui[dialog] && pandora.$ui[dialog].remove();
pandora.$ui[dialog] = pandora.ui[dialog](data).open();
},
2018-09-12 17:57:29 +00:00
downloadframe: function(data_) {
var url = '/' + ui.item + '/' + Ox.max(pandora.site.video.resolutions) + 'p' + data_.position + '.jpg',
name = data.title + ' - ' + Ox.formatDuration(data_.position) + '.jpg';
pandora.saveURL(url, name)
},
downloadvideo: function() {
2018-03-06 09:16:43 +00:00
pandora.ui.downloadVideoDialog({
item: ui.item,
rightsLevel: rightsLevel,
2019-10-31 10:16:16 +00:00
source: data.source && pandora.hasCapability('canDownloadSource'),
title: data.title,
video: data.video
2018-03-06 09:16:43 +00:00
}).open();
2012-06-15 13:20:35 +00:00
},
2018-03-06 09:16:43 +00:00
downloadselection: function(selection) {
pandora.ui.downloadVideoDialog({
item: ui.item,
'in': selection['in'],
out: selection.out,
rightsLevel: rightsLevel,
title: data.title,
video: data.video
2018-03-06 09:16:43 +00:00
}).open();
2012-06-15 13:20:35 +00:00
},
editannotation: function(data) {
Ox.Log('', 'editAnnotation', data.id, data);
2012-06-15 13:20:35 +00:00
function callback(result) {
Ox.Log('', 'editAnnotation result', result.data.id, result);
if (!Ox.isEmpty(result.data)) {
result.data.date = Ox.formatDate(
result.data.modified.slice(0, 10), '%B %e, %Y'
);
result.data.languages = (
result.data.languages || [pandora.site.language]
).map(function(language) {
return Ox.getLanguageNameByCode(language);
});
}
2012-06-15 13:20:35 +00:00
that.updateAnnotation(data.id, result.data);
pandora.UI.set('videoPoints.' + ui.item + '.annotation', result.data.id.split('/')[1] || '');
Ox.Request.clearCache();
2012-06-15 13:20:35 +00:00
};
var edit = {
'in': data['in'],
out: data.out,
value: data.value
}
2012-06-15 13:20:35 +00:00
if (data.id[0] == '_') {
edit.item = ui.item;
edit.layer = data.layer;
if (queue[data.id]) {
queue[data.id].push(edit);
} else {
queue[data.id] = [];
pandora.api.addAnnotation(edit, function(result) {
callback(result);
2020-09-22 12:49:44 +00:00
var id = result.data.id,
pending = queue[id];
delete queue[id];
2020-09-25 10:49:26 +00:00
pending && pending.length && Ox.serialForEach(pending, function(edit, index, array, callback) {
edit.id = id
Ox.Log('', 'process pending editAnnotation request', id, edit);
pandora.api.editAnnotation(edit, function(result) {
callback();
})
}, function() {
Ox.Request.clearCache();
});
});
}
2012-06-15 13:20:35 +00:00
} else {
edit.id = data.id;
if (queue[data.id]) {
queue[data.id].push(edit);
} else {
queue[data.id] = [];
pandora.api.editAnnotation(edit, function(result) {
callback(result);
var pending = queue[edit.id];
delete queue[edit.id];
2020-09-25 10:49:26 +00:00
pending && pending.length && Ox.serialForEach(pending, function(edit, index, array, cb) {
Ox.Log('', 'process pending editAnnotation request', edit.id, edit);
pandora.api.editAnnotation(edit, function(result) {
callback(result);
cb();
})
}, function() {
Ox.Request.clearCache();
});
});
}
2012-06-15 13:20:35 +00:00
}
},
2013-04-26 08:44:09 +00:00
embedselection: function() {
pandora.$ui.embedVideoDialog && pandora.$ui.embedVideoDialog.remove();
pandora.$ui.embedVideoDialog = pandora.ui.embedVideoDialog().open();
2012-06-15 13:20:35 +00:00
},
2014-09-17 13:10:17 +00:00
exportannotations: function() {
pandora.api.get({
id: ui.item,
keys: ['title']
}, function(result) {
pandora.$ui.exportAnnotationsDialog = pandora.ui.exportAnnotationsDialog({title: result.data.title}).open();
})
2014-09-17 13:10:17 +00:00
},
2012-06-15 13:20:35 +00:00
find: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({itemFind: data.find});
2012-06-15 13:20:35 +00:00
},
findannotations: function(data) {
pandora.UI.set({
item: '',
find: {
conditions: [{key: data.key, value: data.value, operator: '='}],
operator: '&'
2012-04-17 06:31:44 +00:00
},
2012-06-15 13:20:35 +00:00
listView: 'clip'
});
},
2018-08-07 16:54:32 +00:00
findlayer: function(data) {
ui._findState.key = data;
},
gainfocus: function() {
pandora.$ui.mainMenu.replaceItemMenu();
},
importannotations: function() {
2014-09-18 14:43:48 +00:00
pandora.$ui.importAnnotationsDialog = pandora.ui.importAnnotationsDialog({duration: data.duration}).open();
2012-06-15 13:20:35 +00:00
},
info: function(data) {
pandora.ui.annotationDialog(
Ox.getObjectById(pandora.site.layers, data.layer).title
).open();
},
2014-06-06 11:19:04 +00:00
linktoselection: function(data) {
pandora.$ui.linkVideoDialog && pandora.$ui.linkVideoDialog.remove();
pandora.$ui.linkVideoDialog = pandora.ui.linkVideoDialog().open();
},
2013-08-06 09:55:22 +00:00
loop: function(data) {
pandora.UI.set({videoLoop: data.loop});
},
2012-06-15 13:20:35 +00:00
muted: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({videoMuted: data.muted});
2012-06-15 13:20:35 +00:00
},
2013-07-08 12:40:51 +00:00
playing: function(data) {
pandora.UI.set(
'videoPoints.' + ui.item + '.position',
data.position
);
},
2012-06-15 13:20:35 +00:00
points: function(data) {
pandora.UI.set('videoPoints.' + ui.item, {
annotation: ui.videoPoints[ui.item].annotation,
2012-04-17 06:31:44 +00:00
'in': data['in'],
out: data.out,
2012-06-15 13:20:35 +00:00
position: data.position
});
},
position: function(data) {
pandora.UI.set(
'videoPoints.' + ui.item + '.position',
data.position
);
},
posterframe: function(data) {
pandora.api.setPosterFrame({
id: ui.item,
position: data.position
}, function() {
if (pandora.$ui.videoPreview) {
pandora.$ui.videoPreview.options({
position: data.position
});
}
2013-02-12 02:02:59 +00:00
if (ui.listSort[0].key == 'modified') {
Ox.Request.clearCache('find');
pandora.$ui.browser
.reloadList()
.bindEventOnce({
load: function() {
updateBrowser();
}
});
} else {
updateBrowser();
}
2012-06-15 13:20:35 +00:00
});
},
removeannotation: function(data) {
pandora.UI.set('videoPoints.' + ui.item + '.annotation', null);
pandora.api.removeAnnotation({
id: data.id
}, function(result) {
//fixme: check for errors
//that.removeAnnotation(data.layer, data.id);
Ox.Request.clearCache();
2012-06-15 13:20:35 +00:00
});
},
resize: function(data) {
that.options({height: data.size});
},
resizecalendar: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({annotationsCalendarSize: data.size});
2012-06-15 13:20:35 +00:00
},
resizemap: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({annotationsMapSize: data.size});
2012-06-15 13:20:35 +00:00
},
resolution: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({videoResolution: data.resolution});
2012-06-15 13:20:35 +00:00
},
select: function(data) {
pandora.UI.set('videoPoints.' + ui.item + '.annotation', data.id.split('/')[1] || '');
2012-06-15 13:20:35 +00:00
},
2015-04-16 20:02:31 +00:00
showentityinfo: function(data) {
pandora.URL.push('/entities/' + data.id)
},
2012-06-15 13:20:35 +00:00
subtitles: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({videoSubtitles: data.subtitles});
2012-06-15 13:20:35 +00:00
},
timeline: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({videoTimeline: data.timeline});
2012-06-15 13:20:35 +00:00
},
toggleannotations: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({showAnnotations: data.showAnnotations});
},
2012-06-15 13:20:35 +00:00
togglecalendar: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({showAnnotationsCalendar: !data.collapsed});
2012-06-15 13:20:35 +00:00
},
togglelayer: function(data) {
pandora.UI.set('showLayers.' + data.layer, !data.collapsed);
},
2012-06-15 13:20:35 +00:00
togglemap: function(data) {
2013-07-14 15:36:49 +00:00
pandora.UI.set({showAnnotationsMap: !data.collapsed});
2012-06-15 13:20:35 +00:00
},
togglesize: function(data) {
pandora.UI.set({videoSize: data.size});
},
pandora_showannotations: function(data) {
that.options({showAnnotations: data.value});
},
pandora_videotimeline: function(data) {
that.options({timeline: data.value});
2012-04-17 06:31:44 +00:00
}
}),
queue = [];
pandora._dontSelectResult = false;
2012-06-15 13:20:35 +00:00
function updateBrowser() {
pandora.$ui.browser.find('img[src*="/' + ui.item + '/"]').each(function() {
$(this).attr({
src: pandora.getMediaURL('/' + ui.item + '/' + (
ui.icons == 'posters' ? 'poster' : 'icon'
) + '128.jpg?' + Ox.uid())
});
});
}
2012-06-15 13:20:35 +00:00
return that;
2012-04-17 06:31:44 +00:00
2011-05-25 19:42:45 +00:00
};