parallax.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _react = _interopRequireDefault(require("react"));
  7. var _reactMaterialize = require("react-materialize");
  8. var _modularityFront = _interopRequireDefault(require("modularity-front"));
  9. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
  11. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  12. 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); } }
  13. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  14. function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
  15. function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
  16. function _get(target, property, receiver) { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(receiver); } return desc.value; }; } return _get(target, property, receiver || target); }
  17. function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
  18. function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
  19. 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
  20. function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
  21. var Module = _modularityFront.default.Module;
  22. var ParallaxModule =
  23. /*#__PURE__*/
  24. function (_Modularity$Module) {
  25. _inherits(ParallaxModule, _Modularity$Module);
  26. function ParallaxModule(props) {
  27. var _this;
  28. _classCallCheck(this, ParallaxModule);
  29. _this = _possibleConstructorReturn(this, _getPrototypeOf(ParallaxModule).call(this, props));
  30. _this.state = {};
  31. return _this;
  32. }
  33. _createClass(ParallaxModule, [{
  34. key: "render",
  35. value: function render() {
  36. // const parallax = (this.ParallaxData.value || []).map((item) => {
  37. // return(
  38. // <div className="row">
  39. // <Parallax imageSrc={item.image} />
  40. // <div className="">
  41. // <h2>{item.header}</h2>
  42. // <p className="">{item.body}</p>
  43. // </div>
  44. // </div>
  45. // )
  46. // })
  47. var parallax = _react.default.createElement("div", {
  48. className: "row"
  49. }, _react.default.createElement(_reactMaterialize.Parallax, {
  50. imageSrc: this.Image.value
  51. }), _get(_getPrototypeOf(ParallaxModule.prototype), "render", this).call(this));
  52. return parallax;
  53. }
  54. }]);
  55. return ParallaxModule;
  56. }(_modularityFront.default.Module);
  57. ParallaxModule.EditPosition = 'top-right';
  58. ParallaxModule.Category = "sxoinas";
  59. ParallaxModule.Inputs = {
  60. ParallaxData: {
  61. type: Module.Types.Array,
  62. defaultValue: [{
  63. header: "Header of Parallax",
  64. body: "Parallax is an effect where the background content or image in this case, is moved at a different speed than the foregr",
  65. image: "parallax1.jpg"
  66. }, {
  67. header: "",
  68. body: "",
  69. image: "parallax2.jpg"
  70. }],
  71. arrType: Module.Types.Object
  72. },
  73. Image: {
  74. type: Module.Types.Text,
  75. defaultValue: "parallax1.jpg"
  76. }
  77. };
  78. ParallaxModule.Outputs = {};
  79. var _default = ParallaxModule;
  80. exports.default = _default;