Your IP : 52.14.121.243
(function(){"use strict";BX.namespace("BX.UI.Viewer");BX.UI.Viewer.Item=function(t){t=t||{};this.controller=null;this.title=t.title;this.src=t.src;this.nakedActions=t.nakedActions;this.actions=t.actions;this.contentType=t.contentType;this.isLoaded=false;this.isLoading=false;this.sourceNode=null;this.transformationPromise=null;this.transformationTimeoutId=null;this.viewerGroupBy=null;this.transformationTimeout=t.transformationTimeout||15e3;this.layout={container:null};this.options=t;this.init()};BX.UI.Viewer.Item.prototype={setController:function(t){if(!(t instanceof BX.UI.Viewer.Controller)){throw new Error("BX.UI.Viewer.Item: 'controller' has to be instance of BX.UI.Viewer.Controller.")}this.controller=t},setPropertiesByNode:function(t){this.title=t.dataset.title||t.title||t.alt;this.src=t.dataset.src;this.viewerGroupBy=t.dataset.viewerGroupBy;this.nakedActions=t.dataset.actions?JSON.parse(t.dataset.actions):undefined},bindSourceNode:function(t){this.sourceNode=t},applyReloadOptions:function(t){},isPullConnected:function(){if(top.BX.PULL){if(BX.type.isFunction(top.BX.PULL.isConnected)){return top.BX.PULL.isConnected()}else{var t=top.BX.PULL.getDebugInfoArray();return t.connected}}return false},registerTransformationHandler:function(t){if(this.isLoaded){return}this.controller.setTextOnLoading(BX.message("JS_UI_VIEWER_ITEM_TRANSFORMATION_IN_PROGRESS"));if(this.isPullConnected()){BX.addCustomEvent("onPullEvent-main",function(t,e){if(t==="transformationComplete"&&this.transformationPromise){this.loadData().then(function(){this.transformationPromise.fulfill(this)}.bind(this))}}.bind(this));console.log("BX.PULL.extendWatch");BX.PULL.extendWatch(t)}else{setTimeout(function(){BX.ajax.promise({url:BX.util.add_url_param(this.src,{ts:"bxviewer"}),method:"GET",dataType:"json",headers:[{name:"BX-Viewer-check-transformation",value:null}]}).then(function(t){if(!t.data||!t.data.transformation){this.registerTransformationHandler()}else{this.loadData().then(function(){this.transformationPromise.fulfill(this)}.bind(this))}}.bind(this))}.bind(this),5e3)}this.transformationTimeoutId=setTimeout(function(){if(!this.isLoaded){console.log("Throw transformationTimeout");if(this._loadPromise){this._loadPromise.reject({status:"timeout",message:BX.message("JS_UI_VIEWER_ITEM_TRANSFORMATION_TIMEOUT"),item:this});this.isLoading=false}}else{console.log("We don't have transformationTimeout :) ")}this.resetTransformationTimeout()}.bind(this),this.transformationTimeout)},resetTransformationTimeout:function(){if(this.transformationTimeoutId){clearTimeout(this.transformationTimeoutId)}this.transformationTimeoutId=null},init:function(){},load:function(){var t=new BX.Promise;if(this.isLoaded){t.fulfill(this);console.log("isLoaded");return t}if(this.isLoading){console.log("isLoading");return this._loadPromise}this.isLoading=true;this._loadPromise=this.loadData().then(function(t){this.isLoaded=true;this.isLoading=false;return t}.bind(this)).catch(function(t){console.log("catch");this.isLoaded=false;this.isLoading=false;if(!t.item){t.item=this}var e=new BX.Promise;e.reject(t);return e}.bind(this));console.log("will load");return this._loadPromise},getSrc:function(){return this.src},getTitle:function(){return this.title},getGroupBy:function(){return this.viewerGroupBy},getNakedActions:function(){if(typeof this.nakedActions==="undefined"){return[{type:"download"}]}return this.nakedActions},setActions:function(t){this.actions=t},getActions:function(){return this.actions},loadData:function(){var t=new BX.Promise;t.setAutoResolve(true);t.fulfill(this);return t},render:function(){},afterRender:function(){}};BX.UI.Viewer.Image=function(t){t=t||{};BX.UI.Viewer.Item.apply(this,arguments);this.resizedSrc=t.resizedSrc;this.width=t.width;this.height=t.height;this.imageNode=null;this.layout={container:null}};BX.UI.Viewer.Image.prototype={__proto__:BX.UI.Viewer.Item.prototype,constructor:BX.UI.Viewer.Item,setPropertiesByNode:function(t){BX.UI.Viewer.Item.prototype.setPropertiesByNode.apply(this,arguments);this.src=t.dataset.src||t.src;this.width=t.dataset.width;this.height=t.dataset.height},loadData:function(){var t=new BX.Promise;if(!this.shouldRunLocalResize()){this.resizedSrc=this.src}if(!this.resizedSrc){var e=new XMLHttpRequest;e.onreadystatechange=function(){if(e.readyState!==XMLHttpRequest.DONE){return}if((e.status===200||e.status===0)&&e.response){console.log("resize image");this.resizedSrc=URL.createObjectURL(e.response);this.imageNode=new Image;this.imageNode.src=this.resizedSrc;this.imageNode.onload=function(){t.fulfill(this)}.bind(this)}else{t.reject({item:this,type:"error"})}}.bind(this);e.open("GET",BX.util.add_url_param(this.src,{ts:"bxviewer"}),true);e.responseType="blob";e.setRequestHeader("BX-Viewer-image","x");e.send()}else{this.imageNode=new Image;this.imageNode.onload=function(){t.fulfill(this)}.bind(this);this.imageNode.onerror=this.imageNode.onabort=function(e){console.log("reject");t.reject({item:this,type:"error"})}.bind(this);this.imageNode.src=this.resizedSrc}return t},shouldRunLocalResize:function(){var t=new RegExp("^([a-z]+://|//)","i");if(!t.test(this.src)){return true}if(!BX.getClass("URL")){return this.src.indexOf(location.hostname)!==-1}try{return new URL(this.src).hostname===location.hostname}catch(t){}return false},render:function(){var t=document.createDocumentFragment();t.appendChild(this.imageNode);if(this.title){t.appendChild(BX.create("div",{props:{className:"viewer-inner-fullsize"},children:[BX.create("a",{props:{href:BX.util.add_url_param(this.src,{ts:"bxviewer",ibxShowImage:1}),target:"_blank"},text:BX.message("JS_UI_VIEWER_IMAGE_VIEW_FULL_SIZE")})]}))}this.imageNode.alt=this.title;return t},afterRender:function(){if(!window.chrome){setTimeout(function(){this.imageNode.removeAttribute("width");this.imageNode.removeAttribute("height")}.bind(this),200)}}};BX.UI.Viewer.PlainText=function(t){t=t||{};BX.UI.Viewer.Item.apply(this,arguments);this.content=t.content};BX.UI.Viewer.PlainText.prototype={__proto__:BX.UI.Viewer.Item.prototype,constructor:BX.UI.Viewer.Item,setPropertiesByNode:function(t){BX.UI.Viewer.Item.prototype.setPropertiesByNode.apply(this,arguments);this.content=t.dataset.content},render:function(){var t=BX.create("span",{text:this.content});t.style.fontSize="18px";t.style.color="white";return t}};BX.UI.Viewer.Unknown=function(t){BX.UI.Viewer.Item.apply(this,arguments)};BX.UI.Viewer.Unknown.prototype={__proto__:BX.UI.Viewer.Item.prototype,constructor:BX.UI.Viewer.Item,render:function(){return BX.create("div",{props:{className:"ui-viewer-error"},children:[BX.create("div",{props:{className:"ui-viewer-info-title"},text:BX.message("JS_UI_VIEWER_ITEM_UNKNOWN_TITLE")})]})}};BX.UI.Viewer.Video=function(t){t=t||{};BX.UI.Viewer.Item.apply(this,arguments);this.player=null;if(this.src){this.playerId="playerId_"+this.hashCode(this.src)+Math.floor(Math.random()*Math.floor(1e4))}this.sources=[];this.transformationPromise=null;this.forceTransformation=false};BX.UI.Viewer.Video.prototype={__proto__:BX.UI.Viewer.Item.prototype,constructor:BX.UI.Viewer.Item,setPropertiesByNode:function(t){BX.UI.Viewer.Item.prototype.setPropertiesByNode.apply(this,arguments);this.playerId="playerId_"+this.hashCode(this.src)+Math.floor(Math.random()*Math.floor(1e4))},hashCode:function(t){var e=0,i=t.length,r=0;if(i>0){while(r<i)e=(e<<5)-e+t.charCodeAt(r++)|0}return e},applyReloadOptions:function(t){if(t.forceTransformation){this.forceTransformation=true}},init:function(){BX.addCustomEvent("PlayerManager.Player:onAfterInit",function(t){if(t.id!==this.playerId){return}if(t.vjsPlayer.error()&&!this.forceTransformation){console.log("forceTransformation");this.controller.reload(this,{forceTransformation:true})}}.bind(this))},loadData:function(){var t=new BX.Promise;var e=[{name:"BX-Viewer-src",value:this.src}];e.push({name:this.forceTransformation?"BX-Viewer-force-transformation":"BX-Viewer",value:"video"});var i=BX.ajax.promise({url:BX.util.add_url_param(this.src,{ts:"bxviewer"}),method:"GET",dataType:"json",headers:e});i.then(function(e){if(!e||!e.data){t.reject({item:this,type:"error",errors:e.errors||[]});return}if(e.data.hasOwnProperty("pullTag")){this.transformationPromise=t;this.registerTransformationHandler(e.data.pullTag)}else{if(e.data.data){this.width=e.data.data.width;this.height=e.data.data.height;this.sources=e.data.data.sources}if(e.data.html){var i=BX.processHTML(e.data.html);BX.load(i.STYLE,function(){BX.ajax.processScripts(i.SCRIPT,undefined,function(){t.fulfill(this)}.bind(this))}.bind(this))}}}.bind(this));return t},render:function(){this.player=new BX.Fileman.Player(this.playerId,{width:this.width,height:this.height,sources:this.sources});return this.player.createElement()},afterRender:function(){this.player.init()}};BX.UI.Viewer.Document=function(t){BX.UI.Viewer.Item.apply(this,arguments);this.contentNode=null;this.previewHtml=null;this.previewScriptToProcess=null;this.transformationPromise=null};BX.UI.Viewer.Document.prototype={__proto__:BX.UI.Viewer.Item.prototype,constructor:BX.UI.Viewer.Item,setPropertiesByNode:function(t){BX.UI.Viewer.Item.prototype.setPropertiesByNode.apply(this,arguments)},loadData:function(){var t=new BX.Promise;if(this.previewHtml){this.processPreviewHtml(this.previewHtml);t.fulfill(this);return t}var e=BX.ajax.promise({url:BX.util.add_url_param(this.src,{ts:"bxviewer"}),method:"GET",dataType:"json",headers:[{name:"BX-Viewer-src",value:this.src},{name:"BX-Viewer",value:"document"}]});e.then(function(e){if(!e||!e.data){t.reject({item:this,type:"error"});return}if(e.data.hasOwnProperty("pullTag")){this.transformationPromise=t;this.registerTransformationHandler(e.data.pullTag)}if(e.data.html){this.previewHtml=e.data.html;this.processPreviewHtml(e.data.html);t.fulfill(this)}}.bind(this));return t},processPreviewHtml:function(t){console.log("processPreviewHtml");var e=BX.processHTML(t);if(!this.contentNode){this.contentNode=BX.create("div",{html:e.HTML})}if(!!e.SCRIPT){this.previewScriptToProcess=e.SCRIPT}},render:function(){return this.contentNode},afterRender:function(){if(this.previewScriptToProcess){BX.ajax.processScripts(this.previewScriptToProcess)}var t=this.contentNode.querySelector(".bx-pdf-container");if(t){var e=Math.min(this.controller.getItemContainer().clientHeight,parseInt(t.style.height,10))-50;t.style.height=e+"px"}}}})();
//# sourceMappingURL=ui.viewer.item.map.js