'
+ + '

'
+ '
<%= media.description %>
'
+ '
Durée : <%= media.duration.toString() %>
');
@@ -20,32 +21,41 @@
project.trigger("set-current",mashup);
$(".info-title a").text(mashup.title);
+ $(".title-video-wrap .title-video").text(mashup.title);
$(".info-duration td").text(mashup.duration.toString());
$(".info-author a").text(mashup.creator);
$(".info-description td").text(mashup.description);
- var html = '';
mashup.getMedias().forEach(function(media) {
- var segments = mashup.segments.filter(function(segment) {
- return segment.getMedia() === media;
+ apidirectory.remoteSource({
+ url: IriSP.endpoints.content + media.id,
+ serializer: IriSP.serializers.content
+ }).onLoad(function() {
+ var m = apidirectory.getElement(media.id);
+ if (m) {
+ media.thumbnail = m.thumbnail;
+ }
+ var segments = mashup.segments.filter(function(segment) {
+ return segment.getMedia() === media;
+ });
+ var segmentshtml = '', k = media.duration ? (100 / media.duration) : 0;
+ segments.forEach(function(segment) {
+ var vizdata = {
+ annotation: segment.annotation,
+ left: k * segment.annotation.begin,
+ width: k * segment.annotation.getDuration()
+ }
+ segmentshtml += segmenttemplate(vizdata);
+ });
+ var mediadata = {
+ media: media,
+ segments: segmentshtml
+ }
+
+ $(".list-video").append(mediatemplate(mediadata));
});
- var segmentshtml = '', k = media.duration ? (100 / media.duration) : 0;
- segments.forEach(function(segment) {
- var vizdata = {
- annotation: segment.annotation,
- left: k * segment.annotation.begin,
- width: k * segment.annotation.getDuration()
- }
- segmentshtml += segmenttemplate(vizdata);
- });
- var mediadata = {
- media: media,
- segments: segmentshtml
- }
- html += mediatemplate(mediadata);
});
- $(".list-video").html(html);
project.on("mouseover-annotation", function(annotation) {
var mediaid = annotation.getMedia().id;
@@ -59,19 +69,17 @@
$(".media[data-media-id='" + mediaid + "']").addClass("active");
});
- $(".list-video .frise-segment")
- .mouseover(function() {
+ $(".list-video")
+ .on("mouseover", ".frise-segment", function() {
project.trigger("mouseover-annotation", project.getElement($(this).attr("data-segment-id")));
})
- .click(function() {
+ .on("click", ".frise-segment", function() {
project.trigger("click-annotation", project.getElement($(this).attr("data-segment-id")));
- });
-
- $(".item-video")
- .mouseover(function() {
+ })
+ .on("mouseover", ".item-video", function() {
$(".media").removeClass("active");
})
- .mouseout(function() {
+ .on("mouseout", ".item-video", function() {
project.trigger("mouseout-annotation");
})