﻿function initializeMediaREControl(idDivContainer, idRe) {
	//Tạo html nối vào thẻ idDivContainer
	var width = $('#div_display_media' + idRe).width()-100;
	$("#content_view_photo" + idRe).css('width', width + 'px');
	//Khởi tạo tab
	$('#div_tab_display_media' + idRe).tabs();
	//Lấy các ảnh liên quan bds dựa theo idRe
	$.ajax({
		type: "POST",
		url: '/RealEstate/GetPhotosOfReal',
		data: "ReID=" + idRe + "&TypeMedia=1",
		dataType: "json",
		success: function (data) {
			$("#content_thumbnail_photo" + idRe).empty();
			if (data.length > 0) {
				var html = "";
				displayPhoto(data[0].RealEstateId,data[0].Link);
				$.each(data, function (index, item) {
					html = html + '<div style=" cursor: pointer;" onclick="displayPhoto(\'' + item.RealEstateId + '\',\'' + item.Link + '\');" class="itemFileDiv ' + item.ID + '"><div><img class="imgThumb" id="' + item.ID + '" style="height:65px;width:65px;" src="' + item.Thumbnail + '" alt="thumb" /></div></div>';
					//html = html + '<div id="' + item.TL_ID + '"><a href="#dialog" onclick="pickUrl(' + "'" + item.TL_Subdomain + "','"  + item.TL_NguoiTao + "','" + item.TL_ID + "','" + item.TL_DinhDang + "','" + item.TL_Ten + "'" + ');"><img class="imgThumb" id="' + item.TL_ID + '" style="height:50px;width:50px;" src="http://localhost:4358/store/getthumbnailimage/' + item.TL_NguoiTao + "/" + item.TL_ID + "/" + item.TL_Ten + '" alt="ThumbnailPhoto" /></a>' + item.TL_Ten + '</div>';
				});
				$("#content_thumbnail_photo" + idRe).html(html);
			}
		}
	});
	//Lấy video


}

function displayPhoto(idRe, ImageLink) {
	var items = ImageLink.split("/");
	var length = items.length;
	//urlImg = 'http://' + SubDomain + '.' + FileStoreDomainName + '/store/getimage/' + NguoiTao + '/' + IDPhoto + '/' + EXPhoto + '/' + NamePhoto;
	var urlDZI = 'http://' + items[length-7] + '/GoldStore/' + items[length - 4] + '/deepzoom/' + items[length - 3] + '/dzi.xml';
	
	var htmlEmbed = '<div class="container_image" style="">' +
				'<div  style="width:100%; height:230px;">' +
					'<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">' +
					  '<param name="source" value="http://' + items[length - 7] + '/GoldStore/DeepZoomView.xap"/>' +
					  '<param name="onError" value="onSilverlightError" />' +
					  '<param name="background" value="white" />' +
					  '<param name="enableHtmlAccess" value="true" />' +
					  '<param name="minRuntimeVersion" value="4.0.50826.0" />' +
					  '<param name="autoUpgrade" value="true" />' +
					  '<param name="InitParams" value="Source=' + urlDZI + ',ViewportWidth=1" />' +
					  '<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">' +
						  '<img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>' +
					  '</a></object></div></div>';
   var imgTab='<img style="width:100%;" src="'+ ImageLink +'" />'
   $("#content_view_photo" + idRe).html(htmlEmbed);
}

