forked from 0x2620/pandora
348 lines
16 KiB
JavaScript
348 lines
16 KiB
JavaScript
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
|
|
pandora.ui.item = function() {
|
|
|
|
var that = Ox.Element();
|
|
|
|
pandora.api.get({
|
|
id: pandora.user.ui.item,
|
|
keys: ['video', 'timeline'].indexOf(pandora.user.ui.itemView) > -1
|
|
? [ 'cuts', 'director', 'duration', 'layers', 'parts', 'rendered', 'rightslevel', 'size', 'title', 'videoRatio', 'year'] : []
|
|
}, pandora.user.ui.itemView == 'info' && pandora.site.capabilities.canEditMetadata[pandora.user.level] ? 0 : -1, function(result) {
|
|
|
|
if (result.status.code == 200) {
|
|
// we want to cache the title in any way, so that after closing
|
|
// a dialog and getting to this item, the title is correct
|
|
var documentTitle = pandora.getDocumentTitle(result.data.title);
|
|
document.title = pandora.getPageTitle(document.location.pathname) || documentTitle;
|
|
}
|
|
|
|
/*if (result.status.code != 200) {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
Ox.Element()
|
|
.css({marginTop: '32px', fontSize: '12px', textAlign: 'center'})
|
|
.html(
|
|
'Sorry, we can\'t find the '
|
|
+ pandora.site.itemName.singular.toLowerCase()
|
|
+ ' you\'re looking for.'
|
|
)
|
|
);
|
|
}*/
|
|
|
|
pandora.$ui.itemTitle
|
|
.options({
|
|
title: '<b>' + result.data.title
|
|
+ (Ox.len(result.data.director)
|
|
? ' (' + result.data.director.join(', ') + ')'
|
|
: '')
|
|
+ (result.data.year ? ' ' + result.data.year : '') + '</b>'
|
|
})
|
|
.show();
|
|
|
|
if (['video', 'timeline'].indexOf(pandora.user.ui.itemView) > -1) {
|
|
// fixme: layers have value, subtitles has text?
|
|
var videoOptions = pandora.getVideoOptions(result.data);
|
|
}
|
|
|
|
if (!result.data.rendered && [
|
|
'clips', 'map', 'video', 'timeline'
|
|
].indexOf(pandora.user.ui.itemView) > -1) {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
Ox.Element()
|
|
.css({marginTop: '32px', fontSize: '12px', textAlign: 'center'})
|
|
.html(
|
|
'Sorry, <i>' + result.data.title
|
|
+ '</i> currently doesn\'t have a '
|
|
+ pandora.user.ui.itemView + ' view.'
|
|
)
|
|
);
|
|
|
|
} else if (pandora.user.ui.itemView == 'info') {
|
|
//Ox.Log('', 'result.data', result.data)
|
|
if (pandora.user.level == 'admin' && false) {
|
|
var $form,
|
|
$edit = Ox.Element()
|
|
.append($form = Ox.FormElementGroup({
|
|
elements: Ox.map(pandora.site.sortKeys, function(key) {
|
|
return Ox.Input({
|
|
id: key.id,
|
|
label: key.title,
|
|
labelWidth: 100,
|
|
value: result.data[key.id],
|
|
type: 'text',
|
|
width: 500
|
|
});
|
|
}),
|
|
separators: [
|
|
{title: '', width: 0}
|
|
]
|
|
}))
|
|
.append(Ox.Button({
|
|
title: 'Save',
|
|
type: 'text'
|
|
}).bindEvent({
|
|
click: function(data) {
|
|
// fixme: cleanup
|
|
var values = $form.value();
|
|
var changed = {};
|
|
Ox.map(pandora.site.itemKeys, function(key, i) {
|
|
if(values[i] && values[i] != ''+result.data[key.id]) {
|
|
if(Ox.isArray(key.type) && key.type[0] == 'string') {
|
|
changed[key.id] = values[i].split(', ');
|
|
} else {
|
|
changed[key.id] = values[i];
|
|
}
|
|
}
|
|
});
|
|
if(changed) {
|
|
pandora.api.edit(Ox.extend(changed, {id: pandora.user.ui.item}), function(result) {
|
|
//fixme just reload parts that need reloading
|
|
window.location.reload();
|
|
});
|
|
}
|
|
}
|
|
}));
|
|
pandora.$ui.contentPanel.replaceElement(1, pandora.$ui.item = $edit);
|
|
} else {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
pandora.$ui.item = pandora.ui.infoView(result.data)
|
|
.bindEvent({
|
|
resize: function() {
|
|
pandora.$ui.item.resize();
|
|
}
|
|
})
|
|
);
|
|
}
|
|
|
|
} else if (pandora.user.ui.itemView == 'clips') {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
pandora.ui.clipsView(result.data.videoRatio)
|
|
);
|
|
|
|
} else if (pandora.user.ui.itemView == 'video') {
|
|
pandora.$ui.contentPanel.replaceElement(1, pandora.$ui.player = Ox.VideoPanelPlayer({
|
|
annotationsSize: pandora.user.ui.annotationsSize,
|
|
censored: videoOptions.censored,
|
|
cuts: result.data.cuts || [],
|
|
duration: result.data.duration,
|
|
enableSubtitles: pandora.user.ui.videoSubtitles,
|
|
find: pandora.user.ui.itemFind.conditions[0]
|
|
? pandora.user.ui.itemFind.conditions[0].value : '',
|
|
getTimelineImageURL: function(i) {
|
|
return '/' + pandora.user.ui.item + '/timeline64p' + i + '.png';
|
|
},
|
|
height: pandora.$ui.contentPanel.size(1),
|
|
'in': pandora.user.ui.videoPoints[pandora.user.ui.item]['in'],
|
|
muted: pandora.user.ui.videoMuted,
|
|
out: pandora.user.ui.videoPoints[pandora.user.ui.item].out,
|
|
position: pandora.user.ui.videoPoints[pandora.user.ui.item].position,
|
|
resolution: pandora.user.ui.videoResolution,
|
|
scaleToFill: pandora.user.ui.videoScale == 'fill',
|
|
showAnnotations: pandora.user.ui.showAnnotations,
|
|
showTimeline: pandora.user.ui.showTimeline,
|
|
subtitles: videoOptions.subtitles,
|
|
tooltips: true,
|
|
timeline: '/' + pandora.user.ui.item + '/timeline16p.png',
|
|
video: videoOptions.video,
|
|
volume: pandora.user.ui.videoVolume,
|
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
|
}).bindEvent({
|
|
find: function(data) {
|
|
pandora.UI.set('itemFind', data.find ? {
|
|
conditions: [{key: 'subtitles', value: data.find, operator: '='}],
|
|
operator: '&'
|
|
} : pandora.site.user.ui.itemFind);
|
|
},
|
|
muted: function(data) {
|
|
pandora.UI.set('videoMuted', data.muted);
|
|
},
|
|
position: function(data) {
|
|
pandora.UI.set(
|
|
'videoPoints.' + pandora.user.ui.item + '.position',
|
|
data.position
|
|
);
|
|
},
|
|
resizeannotations: function(data) {
|
|
pandora.UI.set('annotationsSize', data.annotationsSize);
|
|
},
|
|
resolution: function(data) {
|
|
pandora.UI.set('videoResolution', data.resolution);
|
|
},
|
|
scale: function(data) {
|
|
pandora.UI.set('videoScale', data.scale);
|
|
},
|
|
subtitles: function(data) {
|
|
pandora.UI.set('videoSubtitles', data.subtitles);
|
|
},
|
|
toggleannotations: function(data) {
|
|
pandora.UI.set('showAnnotations', data.showAnnotations);
|
|
},
|
|
toggletimeline: function(data) {
|
|
pandora.UI.set('showTimeline', data.showTimeline);
|
|
},
|
|
volume: function(data) {
|
|
pandora.UI.set('videoVolume', data.volume);
|
|
},
|
|
pandora_showannotations: function(data) {
|
|
pandora.$ui.player.options({showAnnotations: data.value});
|
|
},
|
|
pandora_showtimeline: function(data) {
|
|
pandora.$ui.player.options({showTimeline: data.value});
|
|
}
|
|
}));
|
|
|
|
} else if (pandora.user.ui.itemView == 'timeline') {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
pandora.$ui.editor = Ox.VideoEditor({
|
|
annotationsSize: pandora.user.ui.annotationsSize,
|
|
censored: videoOptions.censored,
|
|
cuts: result.data.cuts || [],
|
|
duration: result.data.duration,
|
|
enableSubtitles: pandora.user.ui.videoSubtitles,
|
|
find: pandora.user.ui.itemFind.conditions[0]
|
|
? pandora.user.ui.itemFind.conditions[0].value : '',
|
|
getFrameURL: function(position) {
|
|
return '/' + pandora.user.ui.item + '/' + Ox.last(pandora.site.video.resolutions) + 'p' + position + '.jpg';
|
|
},
|
|
getLargeTimelineImageURL: function(i) {
|
|
return '/' + pandora.user.ui.item + '/timeline64p' + i + '.png';
|
|
},
|
|
getSmallTimelineImageURL: function(i) {
|
|
return '/' + pandora.user.ui.item + '/timeline16p' + i + '.png';
|
|
},
|
|
height: pandora.$ui.contentPanel.size(1),
|
|
id: 'editor',
|
|
'in': pandora.user.ui.videoPoints[pandora.user.ui.item]['in'],
|
|
layers: videoOptions.layers,
|
|
muted: pandora.user.ui.videoMuted,
|
|
out: pandora.user.ui.videoPoints[pandora.user.ui.item].out,
|
|
position: pandora.user.ui.videoPoints[pandora.user.ui.item].position,
|
|
posterFrame: parseInt(videoOptions.video.duration / 2),
|
|
resolution: pandora.user.ui.videoResolution,
|
|
showAnnotations: pandora.user.ui.showAnnotations,
|
|
showLargeTimeline: true,
|
|
subtitles: videoOptions.subtitles,
|
|
tooltips: true,
|
|
video: videoOptions.video,
|
|
videoRatio: result.data.videoRatio,
|
|
videoSize: pandora.user.ui.videoSize,
|
|
volume: pandora.user.ui.videoVolume,
|
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
|
}).bindEvent({
|
|
find: function(data) {
|
|
pandora.UI.set('itemFind', data.find ? {
|
|
conditions: [{key: 'subtitles', value: data.find, operator: '='}],
|
|
operator: '&'
|
|
} : pandora.site.user.ui.itemFind);
|
|
},
|
|
muted: function(data) {
|
|
pandora.UI.set('videoMuted', data.muted);
|
|
},
|
|
points: function(data) {
|
|
pandora.UI.set('videoPoints.' + pandora.user.ui.item, {
|
|
'in': data['in'],
|
|
out: data.out,
|
|
position: pandora.user.ui.videoPoints[pandora.user.ui.item].position
|
|
});
|
|
},
|
|
position: function(data) {
|
|
pandora.UI.set(
|
|
'videoPoints.' + pandora.user.ui.item + '.position',
|
|
data.position
|
|
);
|
|
},
|
|
resize: function(data) {
|
|
pandora.$ui.editor.options({
|
|
height: data.size
|
|
});
|
|
},
|
|
resizeend: function(data) {
|
|
pandora.UI.set({annotationsSize: data.size});
|
|
},
|
|
resolution: function(data) {
|
|
pandora.UI.set('videoResolution', data.resolution);
|
|
},
|
|
subtitles: function(data) {
|
|
pandora.UI.set('videoSubtitles', data.subtitles);
|
|
},
|
|
togglesize: function(data) {
|
|
pandora.UI.set({videoSize: data.size});
|
|
},
|
|
addannotation: function(data) {
|
|
Ox.Log('', 'addAnnotation', data);
|
|
data.item = pandora.user.ui.item;
|
|
data.value = 'Click to edit';
|
|
pandora.api.addAnnotation(data, function(result) {
|
|
pandora.$ui.editor.addAnnotation(data.layer, result.data);
|
|
});
|
|
},
|
|
removeannotations: function(data) {
|
|
pandora.api.removeAnnotations(data, function(result) {
|
|
//fixme: check for errors
|
|
pandora.$ui.editor.removeAnnotations(data.layer, data.ids);
|
|
});
|
|
},
|
|
toggleannotations: function(data) {
|
|
pandora.UI.set('showAnnotations', data.showAnnotations);
|
|
},
|
|
updateannotation: function(data) {
|
|
//fixme: check that edit was successfull
|
|
pandora.api.editAnnotation(data, function(result) {
|
|
Ox.Log('', 'done updateAnnotation', result);
|
|
});
|
|
},
|
|
pandora_showannotations: function(data) {
|
|
pandora.$ui.editor.options({showAnnotations: data.value});
|
|
}
|
|
})
|
|
);
|
|
pandora.$ui.editor.bindEvent('resize', function(data) {
|
|
//Ox.Log('', 'resize item', data)
|
|
pandora.$ui.editor.options({
|
|
height: data.size
|
|
});
|
|
});
|
|
/*
|
|
pandora.$ui.rightPanel.bindEvent('resize', function(data) {
|
|
Ox.Log('', '... rightPanel resize', data, pandora.$ui.timelinePanel.size(1))
|
|
pandora.$ui.editor.options({
|
|
width: data - pandora.$ui.timelinePanel.size(1) - 1
|
|
});
|
|
});
|
|
*/
|
|
} else if (pandora.user.ui.itemView == 'map') {
|
|
pandora.$ui.contentPanel.replaceElement(1, pandora.ui.navigationView('map', result.data.videoRatio));
|
|
|
|
} else if (pandora.user.ui.itemView == 'calendar') {
|
|
pandora.$ui.contentPanel.replaceElement(1, pandora.ui.navigationView('calendar', result.data.videoRatio));
|
|
|
|
} else if (pandora.user.ui.itemView == 'data') {
|
|
var stats = Ox.Container();
|
|
Ox.TreeList({
|
|
data: result.data,
|
|
width: pandora.$ui.mainPanel.size(1) - Ox.UI.SCROLLBAR_SIZE
|
|
}).appendTo(stats);
|
|
pandora.$ui.contentPanel.replaceElement(1, stats);
|
|
|
|
} else if (pandora.user.ui.itemView == 'files') {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
pandora.$ui.item = pandora.ui.filesView({
|
|
id: result.data.id
|
|
})
|
|
);
|
|
|
|
} else if (pandora.user.ui.itemView == 'frames' || pandora.user.ui.itemView == 'posters') {
|
|
pandora.$ui.contentPanel.replaceElement(1,
|
|
pandora.$ui.item = pandora.ui.mediaView().bindEvent({
|
|
resize: function() {
|
|
pandora.$ui.item.resize();
|
|
}
|
|
})
|
|
);
|
|
}
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|
|
|