@realsee/vreo 2.2.6 → 2.2.7
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/lib/PlayController/createHTMLAudioElement.js +11 -6
- package/lib/PlayController/index.js +80 -15
- package/lib/Player/App.js +26 -0
- package/lib/Player/Controller.js +100 -23
- package/lib/Player/custom/SpatialScenePanel/index.js +68 -42
- package/lib/Player/hooks.js +10 -0
- package/lib/Player/index.js +88 -24
- package/lib/Player/modules/Drawer/index.js +17 -0
- package/lib/Player/modules/PopUp/index.js +10 -0
- package/lib/Player/modules/ResizeObserver/index.js +8 -0
- package/lib/Player/modules/VideoAgent/VideoAgentMesh.js +108 -17
- package/lib/Player/modules/VideoAgent/VideoAgentScene.js +24 -2
- package/lib/Player/modules/VideoAgent/index.js +17 -0
- package/lib/Player/modules/Wave/index.js +32 -7
- package/lib/Player/modules/keyframes/BgMusic/index.js +25 -7
- package/lib/Player/modules/keyframes/CameraMovement/index.js +27 -3
- package/lib/Player/modules/keyframes/InfoPanel/index.js +29 -6
- package/lib/Player/modules/keyframes/ModelVideo/index.js +29 -3
- package/lib/Player/modules/keyframes/PanoEffect/index.js +43 -15
- package/lib/Player/modules/keyframes/PanoEffect/lineAnime.js +7 -0
- package/lib/Player/modules/keyframes/PanoTag/index.js +22 -4
- package/lib/Player/modules/keyframes/PanoTextLabel/index.js +47 -22
- package/lib/Player/modules/keyframes/Prompter/index.js +32 -10
- package/lib/Player/modules/keyframes/UpdateVRPanorama/index.js +25 -18
- package/lib/Player/modules/keyframes/VideoEffect/index.js +65 -16
- package/lib/fivePlugins/CSS3DRenderPlugin/centerPoint.js +2 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/createResizeObserver.js +1 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/evenNumber.js +1 -0
- package/lib/fivePlugins/CSS3DRenderPlugin/index.js +60 -19
- package/lib/fivePlugins/CSS3DRenderPlugin/transformPositionToVector3.js +5 -2
- package/lib/fivePlugins/CameraMovementPlugin/index.js +72 -19
- package/lib/fivePlugins/CameraMovementPlugin/typings.js +4 -0
- package/lib/fivePlugins/ModelTVVideoPlugin/index.js +60 -11
- package/lib/index.js +1 -0
- package/lib/react/index.js +34 -7
- package/lib/shared-utils/Audio.js +69 -15
- package/lib/shared-utils/AudioLike.js +39 -5
- package/lib/shared-utils/Preloader.js +7 -0
- package/lib/shared-utils/addResizeListener.js +5 -0
- package/lib/shared-utils/animationFrame/BetterTween.js +38 -2
- package/lib/shared-utils/animationFrame/index.js +10 -2
- package/lib/shared-utils/animationFrame/tween.js +11 -2
- package/lib/shared-utils/createTransMatrix.js +17 -2
- package/lib/shared-utils/getFileExpandedName.js +1 -0
- package/lib/shared-utils/getMediaInfo.js +9 -0
- package/lib/shared-utils/setElementDataset.js +2 -0
- package/lib/typings/VreoUnit.js +15 -0
- package/package.json +4 -2
package/lib/Player/index.js
CHANGED
|
@@ -1,69 +1,108 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.Player = void 0;
|
|
9
|
+
|
|
8
10
|
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
9
12
|
var ReactDOM = _interopRequireWildcard(require("react-dom"));
|
|
13
|
+
|
|
10
14
|
var _five = require("@realsee/five");
|
|
15
|
+
|
|
11
16
|
var _App = require("./App");
|
|
17
|
+
|
|
12
18
|
var _Controller = require("./Controller");
|
|
19
|
+
|
|
13
20
|
var _VreoUnit = require("../typings/VreoUnit");
|
|
21
|
+
|
|
14
22
|
var _mobx = require("mobx");
|
|
23
|
+
|
|
15
24
|
var _Drawer = require("./modules/Drawer");
|
|
25
|
+
|
|
16
26
|
var _PopUp = require("./modules/PopUp");
|
|
27
|
+
|
|
17
28
|
var _Audio = require("../shared-utils/Audio");
|
|
29
|
+
|
|
18
30
|
var _location$search$matc, _location$search$matc2;
|
|
31
|
+
|
|
19
32
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
33
|
+
|
|
20
34
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, "catch": function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
35
|
+
|
|
22
36
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
37
|
+
|
|
23
38
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
39
|
+
|
|
24
40
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
41
|
+
|
|
25
42
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
43
|
+
|
|
26
44
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
45
|
+
|
|
27
46
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
28
|
-
|
|
47
|
+
|
|
48
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
49
|
+
|
|
29
50
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
51
|
+
|
|
30
52
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
53
|
+
|
|
31
54
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
55
|
+
|
|
32
56
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
33
|
-
|
|
57
|
+
|
|
58
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
59
|
+
|
|
34
60
|
var DefaultAudioCacheLength = 3;
|
|
35
61
|
var id = "vreo-app-dhjskadhksahdjskahdjksa";
|
|
36
62
|
var audioCacheLength = Number((_location$search$matc = (_location$search$matc2 = location.search.match(/audio_cache=(\d+)/)) === null || _location$search$matc2 === void 0 ? void 0 : _location$search$matc2[1]) !== null && _location$search$matc !== void 0 ? _location$search$matc : DefaultAudioCacheLength);
|
|
63
|
+
|
|
37
64
|
var Player = /*#__PURE__*/function (_Subscribe) {
|
|
38
65
|
_inherits(Player, _Subscribe);
|
|
66
|
+
|
|
39
67
|
var _super = _createSuper(Player);
|
|
68
|
+
|
|
40
69
|
function Player(five) {
|
|
41
70
|
var _this;
|
|
71
|
+
|
|
42
72
|
var configs = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
73
|
+
|
|
43
74
|
_classCallCheck(this, Player);
|
|
75
|
+
|
|
44
76
|
_this = _super.call(this);
|
|
45
77
|
_this.$five = five;
|
|
46
78
|
(0, _Audio.generateBlankAudio)(audioCacheLength);
|
|
79
|
+
|
|
47
80
|
if (!configs.container) {
|
|
48
81
|
configs.container = configs.containter;
|
|
49
82
|
}
|
|
83
|
+
|
|
50
84
|
if (!configs.container) {
|
|
51
85
|
var _five$getElement;
|
|
86
|
+
|
|
52
87
|
var oldElement = document.getElementById(id);
|
|
88
|
+
|
|
53
89
|
if (oldElement) {
|
|
54
90
|
ReactDOM.unmountComponentAtNode(oldElement);
|
|
55
91
|
oldElement.remove();
|
|
56
92
|
}
|
|
93
|
+
|
|
57
94
|
var container = document.createElement('div');
|
|
58
95
|
container.id = id;
|
|
59
96
|
configs.container = container;
|
|
60
97
|
var fiveCanvasDomParent = (_five$getElement = five.getElement()) === null || _five$getElement === void 0 ? void 0 : _five$getElement.parentNode;
|
|
98
|
+
|
|
61
99
|
if (fiveCanvasDomParent) {
|
|
62
100
|
fiveCanvasDomParent.append(container);
|
|
63
101
|
} else {
|
|
64
102
|
document.body.append(container);
|
|
65
103
|
}
|
|
66
104
|
}
|
|
105
|
+
|
|
67
106
|
if (!configs.container.classList.contains('vreo-app')) configs.container.classList.add('vreo-app');
|
|
68
107
|
_this.configs = Object.freeze(Object.assign({
|
|
69
108
|
keyframeMap: {}
|
|
@@ -91,9 +130,8 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
91
130
|
},
|
|
92
131
|
five: five
|
|
93
132
|
});
|
|
94
|
-
})), configs.container);
|
|
133
|
+
})), configs.container); // 监听播放情况:抛出触发时机
|
|
95
134
|
|
|
96
|
-
// 监听播放情况:抛出触发时机
|
|
97
135
|
(0, _mobx.reaction)(function () {
|
|
98
136
|
return _this.controller.ended;
|
|
99
137
|
}, function (ended) {
|
|
@@ -110,23 +148,25 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
110
148
|
});
|
|
111
149
|
return _this;
|
|
112
150
|
}
|
|
151
|
+
|
|
113
152
|
_createClass(Player, [{
|
|
114
153
|
key: "load",
|
|
115
154
|
value: function () {
|
|
116
|
-
var _load = _asyncToGenerator( /*#__PURE__*/
|
|
155
|
+
var _load = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(vreoUnit) {
|
|
117
156
|
var _this$controller$medi,
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
157
|
+
_this$configs$imageOp,
|
|
158
|
+
_this$controller$vide,
|
|
159
|
+
_this$controller$vide2,
|
|
160
|
+
_this2 = this;
|
|
161
|
+
|
|
122
162
|
var currentTime,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
return
|
|
163
|
+
preload,
|
|
164
|
+
force,
|
|
165
|
+
panoIndexMap,
|
|
166
|
+
panoIndexes,
|
|
167
|
+
i,
|
|
168
|
+
_args = arguments;
|
|
169
|
+
return regeneratorRuntime.wrap(function _callee$(_context) {
|
|
130
170
|
while (1) {
|
|
131
171
|
switch (_context.prev = _context.next) {
|
|
132
172
|
case 0:
|
|
@@ -135,10 +175,10 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
135
175
|
force = _args.length > 3 && _args[3] !== undefined ? _args[3] : false;
|
|
136
176
|
this.controller.clear();
|
|
137
177
|
this.controller.setLoading(true);
|
|
178
|
+
|
|
138
179
|
if (force) {
|
|
139
180
|
vreoUnit = JSON.parse(JSON.stringify(vreoUnit));
|
|
140
|
-
}
|
|
141
|
-
// if (!this.controller.visible) {
|
|
181
|
+
} // if (!this.controller.visible) {
|
|
142
182
|
// this.controller.setVisible(true)
|
|
143
183
|
// // 延迟 500ms 规避跟 DOM 动画冲突
|
|
144
184
|
// await new Promise((resolve) => {
|
|
@@ -146,66 +186,81 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
146
186
|
// })
|
|
147
187
|
// }
|
|
148
188
|
|
|
189
|
+
|
|
149
190
|
if (this.controller.stopInterval) {
|
|
150
191
|
this.controller.stopInterval();
|
|
151
192
|
this.controller.stopInterval = undefined;
|
|
152
193
|
}
|
|
153
|
-
this.controller.vreoUnit = vreoUnit;
|
|
154
|
-
(_this$controller$medi = this.controller.mediaInstance) === null || _this$controller$medi === void 0 ? void 0 : _this$controller$medi.pause();
|
|
155
194
|
|
|
156
|
-
|
|
195
|
+
this.controller.vreoUnit = vreoUnit;
|
|
196
|
+
(_this$controller$medi = this.controller.mediaInstance) === null || _this$controller$medi === void 0 ? void 0 : _this$controller$medi.pause(); // 预载逻辑
|
|
157
197
|
// 是否降低图片分辨率
|
|
198
|
+
|
|
158
199
|
if (this.$five.imageOptions.size && (_this$configs$imageOp = this.configs.imageOptions) !== null && _this$configs$imageOp !== void 0 && _this$configs$imageOp.size && this.$five.imageOptions.size > this.configs.imageOptions.size) {
|
|
159
200
|
this.$five.imageOptions.size = this.configs.imageOptions.size;
|
|
160
|
-
}
|
|
201
|
+
} // 预载数据中的点位
|
|
202
|
+
|
|
161
203
|
|
|
162
|
-
// 预载数据中的点位
|
|
163
204
|
if (!(preload || preload === undefined && this.configs.autoPreload)) {
|
|
164
205
|
_context.next = 20;
|
|
165
206
|
break;
|
|
166
207
|
}
|
|
208
|
+
|
|
167
209
|
panoIndexMap = vreoUnit.keyframes.filter(function (vreoKeyframe) {
|
|
168
210
|
if (vreoKeyframe.type !== _VreoUnit.VreoKeyframeEnum.CameraMovement) {
|
|
169
211
|
return false;
|
|
170
212
|
}
|
|
213
|
+
|
|
171
214
|
var data = vreoKeyframe.data;
|
|
215
|
+
|
|
172
216
|
if (data.panoIndex === undefined) {
|
|
173
217
|
return false;
|
|
174
218
|
}
|
|
219
|
+
|
|
175
220
|
return true;
|
|
176
221
|
}).reduce(function (accu, curr) {
|
|
177
222
|
var panoIndex = curr.data.panoIndex;
|
|
223
|
+
|
|
178
224
|
if (!accu[panoIndex]) {
|
|
179
225
|
accu[panoIndex] = true;
|
|
180
226
|
}
|
|
227
|
+
|
|
181
228
|
return accu;
|
|
182
229
|
}, {});
|
|
183
230
|
panoIndexes = Object.keys(panoIndexMap);
|
|
184
231
|
i = 0;
|
|
232
|
+
|
|
185
233
|
case 14:
|
|
186
234
|
if (!(i < panoIndexes.length)) {
|
|
187
235
|
_context.next = 20;
|
|
188
236
|
break;
|
|
189
237
|
}
|
|
238
|
+
|
|
190
239
|
_context.next = 17;
|
|
191
240
|
return this.$five.preloadPano(Number(panoIndexes[i]));
|
|
241
|
+
|
|
192
242
|
case 17:
|
|
193
243
|
i++;
|
|
194
244
|
_context.next = 14;
|
|
195
245
|
break;
|
|
246
|
+
|
|
196
247
|
case 20:
|
|
197
248
|
// 新数据载入就绪
|
|
198
249
|
this.emit('loaded', vreoUnit);
|
|
199
250
|
this.controller.emit('loaded', vreoUnit);
|
|
251
|
+
|
|
200
252
|
if ((_this$controller$vide = this.controller.videoAgentScene) !== null && _this$controller$vide !== void 0 && _this$controller$vide.videoAgentMesh.mediaInstance) {
|
|
201
253
|
this.controller.videoAgentScene.videoAgentMesh.mediaInstance.currentTime = currentTime / 1000;
|
|
202
254
|
}
|
|
255
|
+
|
|
203
256
|
this.controller.setAvatar(vreoUnit.video.avatar);
|
|
204
257
|
_context.next = 26;
|
|
205
258
|
return (0, _Audio.waitForBlankAudioGenerated)();
|
|
259
|
+
|
|
206
260
|
case 26:
|
|
207
261
|
_context.next = 28;
|
|
208
262
|
return (_this$controller$vide2 = this.controller.videoAgentScene) === null || _this$controller$vide2 === void 0 ? void 0 : _this$controller$vide2.videoAgentMesh.play(vreoUnit.video.url, currentTime / 1000, vreoUnit.video.duration);
|
|
263
|
+
|
|
209
264
|
case 28:
|
|
210
265
|
this.controller.setEnded(false);
|
|
211
266
|
this.play();
|
|
@@ -214,6 +269,7 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
214
269
|
});
|
|
215
270
|
this.controller.setLoading(false);
|
|
216
271
|
return _context.abrupt("return", true);
|
|
272
|
+
|
|
217
273
|
case 33:
|
|
218
274
|
case "end":
|
|
219
275
|
return _context.stop();
|
|
@@ -221,9 +277,11 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
221
277
|
}
|
|
222
278
|
}, _callee, this);
|
|
223
279
|
}));
|
|
280
|
+
|
|
224
281
|
function load(_x) {
|
|
225
282
|
return _load.apply(this, arguments);
|
|
226
283
|
}
|
|
284
|
+
|
|
227
285
|
return load;
|
|
228
286
|
}()
|
|
229
287
|
}, {
|
|
@@ -235,10 +293,13 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
235
293
|
key: "play",
|
|
236
294
|
value: function play(currentTime) {
|
|
237
295
|
var _this$controller$vreo;
|
|
296
|
+
|
|
238
297
|
if (this.controller.playing) return true;
|
|
298
|
+
|
|
239
299
|
if (currentTime && this.controller.mediaInstance) {
|
|
240
300
|
this.controller.mediaInstance.currentTime = currentTime / 1000;
|
|
241
301
|
}
|
|
302
|
+
|
|
242
303
|
Object.assign(window, {
|
|
243
304
|
$vreoController: this.controller
|
|
244
305
|
});
|
|
@@ -280,12 +341,15 @@ var Player = /*#__PURE__*/function (_Subscribe) {
|
|
|
280
341
|
key: "dispose",
|
|
281
342
|
value: function dispose() {
|
|
282
343
|
this.controller.dispose();
|
|
344
|
+
|
|
283
345
|
if (this.configs.container) {
|
|
284
346
|
ReactDOM.unmountComponentAtNode(this.configs.container);
|
|
285
347
|
}
|
|
286
348
|
}
|
|
287
349
|
}]);
|
|
350
|
+
|
|
288
351
|
return Player;
|
|
289
352
|
}(_five.Subscribe);
|
|
353
|
+
|
|
290
354
|
exports.Player = Player;
|
|
291
355
|
console.log("\n \u250F\u2501\u2501\u2501\u2513\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u250F\u2513\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n \u2503\u250F\u2501\u2513\u2503\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2503\u2503\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n \u2503\u2517\u2501\u251B\u2503\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513\u2501\u2503\u2503\u2501\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513\u250F\u2501\u2501\u2513\n \u2503\u250F\u2513\u250F\u251B\u2503\u250F\u2513\u2503\u2517\u2501\u2513\u2503\u2501\u2503\u2503\u2501\u2503\u2501\u2501\u252B\u2503\u250F\u2513\u2503\u2503\u250F\u2513\u2503\n \u2503\u2503\u2503\u2517\u2513\u2503\u2503\u2501\u252B\u2503\u2517\u251B\u2517\u2513\u2503\u2517\u2513\u2523\u2501\u2501\u2503\u2503\u2503\u2501\u252B\u2503\u2503\u2501\u252B\n \u2517\u251B\u2517\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u2501\u251B\u2517\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u251B\u2517\u2501\u2501\u251B\n \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\n");
|
|
@@ -1,32 +1,48 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.Drawer = Drawer;
|
|
9
|
+
|
|
8
10
|
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
9
12
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
10
14
|
var _mobxReact = require("mobx-react");
|
|
15
|
+
|
|
11
16
|
var _hooks = require("../../hooks");
|
|
17
|
+
|
|
12
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
13
20
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
14
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
15
24
|
var DrawerView = (0, _mobxReact.observer)(function (_ref) {
|
|
16
25
|
var _controller$drawerCon2;
|
|
26
|
+
|
|
17
27
|
var controller = _ref.controller;
|
|
18
28
|
var maxHeight = '400px';
|
|
29
|
+
|
|
19
30
|
var height = function () {
|
|
20
31
|
var _controller$drawerCon;
|
|
32
|
+
|
|
21
33
|
var height = (_controller$drawerCon = controller.drawerConfig) === null || _controller$drawerCon === void 0 ? void 0 : _controller$drawerCon.height;
|
|
34
|
+
|
|
22
35
|
if (!height) {
|
|
23
36
|
return 'max-content';
|
|
24
37
|
}
|
|
38
|
+
|
|
25
39
|
if (typeof height === 'number') {
|
|
26
40
|
return height + 'px';
|
|
27
41
|
}
|
|
42
|
+
|
|
28
43
|
return height;
|
|
29
44
|
}();
|
|
45
|
+
|
|
30
46
|
return /*#__PURE__*/React.createElement("div", {
|
|
31
47
|
className: (0, _classnames["default"])('vreo-drawer', {
|
|
32
48
|
'vreo-drawer-visible': controller.drawerConfig && controller.drawerConfig.content
|
|
@@ -42,6 +58,7 @@ var DrawerView = (0, _mobxReact.observer)(function (_ref) {
|
|
|
42
58
|
}
|
|
43
59
|
}, ((_controller$drawerCon2 = controller.drawerConfig) === null || _controller$drawerCon2 === void 0 ? void 0 : _controller$drawerCon2.content) || ''));
|
|
44
60
|
});
|
|
61
|
+
|
|
45
62
|
function Drawer() {
|
|
46
63
|
var controller = (0, _hooks.useController)();
|
|
47
64
|
return /*#__PURE__*/React.createElement(DrawerView, {
|
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports.PopUp = PopUp;
|
|
9
|
+
|
|
8
10
|
var React = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
9
12
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
10
14
|
var _mobxReact = require("mobx-react");
|
|
15
|
+
|
|
11
16
|
var _hooks = require("../../hooks");
|
|
17
|
+
|
|
12
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
13
20
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
14
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
15
24
|
var PopUpView = (0, _mobxReact.observer)(function (_ref) {
|
|
16
25
|
var controller = _ref.controller;
|
|
17
26
|
return /*#__PURE__*/React.createElement("div", {
|
|
@@ -25,6 +34,7 @@ var PopUpView = (0, _mobxReact.observer)(function (_ref) {
|
|
|
25
34
|
className: "vreo-PopUp-inner"
|
|
26
35
|
}, controller.popUp || ''));
|
|
27
36
|
});
|
|
37
|
+
|
|
28
38
|
function PopUp() {
|
|
29
39
|
var controller = (0, _hooks.useController)();
|
|
30
40
|
return /*#__PURE__*/React.createElement(PopUpView, {
|
|
@@ -4,13 +4,20 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.ResizeObserver = ResizeObserver;
|
|
7
|
+
|
|
7
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
8
10
|
var _addResizeListener = require("../../../shared-utils/addResizeListener");
|
|
11
|
+
|
|
9
12
|
var _hooks = require("../../hooks");
|
|
13
|
+
|
|
10
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
15
|
+
|
|
11
16
|
function ResizeObserver() {
|
|
12
17
|
var ref = _react["default"].useRef(null);
|
|
18
|
+
|
|
13
19
|
var controller = (0, _hooks.useController)();
|
|
20
|
+
|
|
14
21
|
_react["default"].useEffect(function () {
|
|
15
22
|
if (!ref.current) return;
|
|
16
23
|
var resizeElement = controller.container.parentElement;
|
|
@@ -22,6 +29,7 @@ function ResizeObserver() {
|
|
|
22
29
|
dispose();
|
|
23
30
|
};
|
|
24
31
|
}, []);
|
|
32
|
+
|
|
25
33
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
26
34
|
className: "resizeObserver-element",
|
|
27
35
|
ref: ref
|