hart-estate-widget 4.4.49 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -398,6 +398,27 @@ Here you can see a list of accessible options and examples of usage. There are a
|
|
|
398
398
|
"mobileCameraHorizontalSensitivity": 2,
|
|
399
399
|
"mobileCameraVerticalSensitivity": 2,
|
|
400
400
|
|
|
401
|
+
// Lazy load config
|
|
402
|
+
"lazyLoad": {
|
|
403
|
+
// Is lazy load enabled
|
|
404
|
+
"enabled": true,
|
|
405
|
+
|
|
406
|
+
// Strategies (select only one of presented)
|
|
407
|
+
// Nearest cameras on the same floor
|
|
408
|
+
"strategy": {
|
|
409
|
+
"type": "nearest",
|
|
410
|
+
// Preload cameras count
|
|
411
|
+
"count": 3
|
|
412
|
+
},
|
|
413
|
+
|
|
414
|
+
// Preload all style on the same floor/camera
|
|
415
|
+
"strategy": {
|
|
416
|
+
"type": "style",
|
|
417
|
+
// Search for another camera with the same position if no same ID
|
|
418
|
+
"usePositionFallback": true
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
|
|
401
422
|
// Widget external integrations
|
|
402
423
|
"integrations": {
|
|
403
424
|
// https://docs.sentry.io/platforms/javascript/configuration/options/
|
package/build/api.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var r={d:(e,t)=>{for(var a in t)r.o(t,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)},e={};r.d(e,{j:()=>t});class t{baseUrl;constructor(r){this.baseUrl=r}get headers(){return{Accept:"application/json;widget-version=4.
|
|
1
|
+
var r={d:(e,t)=>{for(var a in t)r.o(t,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)},e={};r.d(e,{j:()=>t});class t{baseUrl;constructor(r){this.baseUrl=r}get headers(){return{Accept:"application/json;widget-version=4.5.0"}}loadCrmWidgetData=async r=>{if(!r)return this.makeError(404,"No crmPlanId!");try{const e=await this.fetch(`/api/crm/plans/${r}/v4/widget`);return e.ok?e.json():this.makeErrorFromResponse(e,"Failed to get CRM Plan widget data!")}catch(r){return this.makeError(520,r.message)}};loadWidgetData=async r=>{if(!r)return this.makeError(404,"No planId!");try{const e=await this.fetch(`/api/plans/${r}/v4/widget`);return e.ok?e.json():this.makeErrorFromResponse(e,"Failed to get Plan widget data!")}catch(r){return this.makeError(520,r.message)}};loadJson=async r=>{try{return(await fetch(r)).json()}catch(r){return this.makeError(500,r.message)}};makeError(r,e="Unknown error"){return{error:{status:r,message:e}}}async makeErrorFromResponse(r,e){if("application/json"===r.headers.get("Content-Type")){const e=await r.json();if("message"in e&&"string"==typeof e.message)return this.makeError(r.status,e.message)}return this.makeError(r.status,e)}fetch(r,e={headers:this.headers}){return fetch(`${this.baseUrl}${r}`,e)}}const a=e.j;export{a as Api};
|