react-three-nephilim
Version:
3D SPA engine based on React and Three.js
141 lines (140 loc) • 8.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Container = void 0;
var Three = _interopRequireWildcard(require("three"));
var Types = _interopRequireWildcard(require("../Types"));
var _Decoration2 = require("./Decoration");
var _Helpers = require("../Helpers");
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
function _superPropGet(t, o, e, r) { var p = _get(_getPrototypeOf(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; }
function _get() { return _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = _superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, _get.apply(null, arguments); }
function _superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t));); return t; }
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
var Container = exports.Container = function (_Decoration) {
function Container() {
var _this;
_classCallCheck(this, Container);
_this = _callSuper(this, Container);
_defineProperty(_this, "setCompositionState", function () {
Object.keys(_this.children).forEach(function (k, i) {
var c = _this.children[k];
_this.calculateCompositionState(c.visual, i);
});
});
_defineProperty(_this, "calculateCompositionState", function (visual, i) {
var _withInterface = (0, _Helpers.withInterface)(_this.props),
composition = _withInterface.composition;
if (!composition) return false;
var type = composition.type,
cols = composition.cols,
rows = composition.rows,
radius = composition.radius,
shift = composition.shift,
xStart = composition.xStart,
xStep = composition.xStep,
xRand = composition.xRand,
yStart = composition.yStart,
yStep = composition.yStep,
yRand = composition.yRand,
zStart = composition.zStart,
zStep = composition.zStep,
zRand = composition.zRand;
var column;
var row;
var layer;
var position;
var src = (0, _Helpers.getDeviceOrientation)() === Types.Orientation.Portrait ? 0 : 1;
cols = cols ? cols[src] || cols : 0;
rows = rows ? rows[src] || rows : 0;
radius = radius ? radius[src] || radius : 0;
xStart = xStart ? xStart[src] || xStart : 0;
yStart = yStart ? yStart[src] || yStart : 0;
zStart = zStart ? zStart[src] || zStart : 0;
xStep = xStep ? xStep[src] || xStep : 0;
yStep = yStep ? yStep[src] || yStep : 0;
zStep = zStep ? zStep[src] || zStep : 0;
xRand = xRand ? xRand[src] || xRand : 0;
yRand = yRand ? yRand[src] || yRand : 0;
zRand = zRand ? zRand[src] || zRand : 0;
switch (type) {
case Types.Composition.Grid:
column = i % cols;
row = Math.floor(i / cols);
var x = column * (xStep || 0) + (xStart || 0) + (Math.random() * xRand - xRand);
if (shift && row % 2 === 1) {
x += xStep / 2;
}
position = {
x: x,
y: row * (-yStep || 0) + (yStart || 0) + (Math.random() * yRand - yRand),
z: (zStart || 0) + (Math.random() * zRand - zRand)
};
break;
case Types.Composition.DepthGrid:
column = i % cols;
row = Math.floor(i / cols) % rows;
layer = Math.floor(i / (cols * rows));
position = {
x: column * (xStep || 0) + (xStart || 0) + (Math.random() * xRand - xRand),
y: row * (-yStep || 0) + (yStart || 0) + (Math.random() * yRand - yRand),
z: layer * (-zStep || 0) + (zStart || 0) + (Math.random() * zRand - zRand)
};
break;
case Types.Composition.Cylinder:
column = i % cols;
row = Math.floor(i / cols);
var phi = Math.PI / cols * 2 * (column + 1);
if (shift) {
phi += Math.PI / cols * (row + 1);
}
position = {
x: radius * Math.sin(phi),
y: row * (-yStep || 0),
z: radius * Math.cos(phi)
};
break;
default:
position = {
x: 0,
y: 0,
z: 0
};
break;
}
visual.position.set(position.x, position.y, position.z);
});
_this.type = Types.Decoration.Container;
_this.visual = new Three.Group();
_this.children = {};
return _this;
}
_inherits(Container, _Decoration);
return _createClass(Container, [{
key: "componentDidMount",
value: function componentDidMount() {
this.setCompositionState();
_superPropGet(Container, "componentDidMount", this, 3)([]);
}
}, {
key: "render",
value: function render() {
return this.props.children;
}
}]);
}(_Decoration2.Decoration);