UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

104 lines 4.17 kB
import _extends from "@babel/runtime/helpers/extends"; import _classCallCheck from "@babel/runtime/helpers/classCallCheck"; import _createClass from "@babel/runtime/helpers/createClass"; import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn"; import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf"; import _inherits from "@babel/runtime/helpers/inherits"; import _defineProperty from "@babel/runtime/helpers/defineProperty"; function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } import React, { Component } from 'react'; export var withImageLoader = function withImageLoader(Wrapped) { return /*#__PURE__*/function (_Component) { function WithImageLoader() { var _this; _classCallCheck(this, WithImageLoader); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _callSuper(this, WithImageLoader, [].concat(args)); _defineProperty(_this, "state", { imageStatus: 'loading' }); _defineProperty(_this, "onLoad", function () { _this.setState({ imageStatus: 'complete' }); var onExternalImageLoaded = _this.props.onExternalImageLoaded; if (onExternalImageLoaded && _this.img) { onExternalImageLoaded({ width: _this.img.naturalWidth, height: _this.img.naturalHeight }); } }); _defineProperty(_this, "onError", function () { _this.setState({ imageStatus: 'error' }); }); return _this; } _inherits(WithImageLoader, _Component); return _createClass(WithImageLoader, [{ key: "componentDidMount", value: function componentDidMount() { this.fetchImage(this.props); } }, { key: "componentDidUpdate", value: function componentDidUpdate(newProps) { if (newProps.url !== this.props.url) { this.setState({ imageStatus: 'loading' }); this.fetchImage(newProps); } } }, { key: "componentWillUnmount", value: function componentWillUnmount() { if (this.img) { if (!process.env.REACT_SSR) { // Ignored via go/ees005 // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners this.img.removeEventListener('load', this.onLoad); // Ignored via go/ees005 // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners this.img.removeEventListener('error', this.onError); } this.img = null; } } }, { key: "fetchImage", value: function fetchImage(_ref) { var url = _ref.url; if (url) { if (!this.img) { this.img = new Image(); if (!process.env.REACT_SSR) { // Ignored via go/ees005 // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners this.img.addEventListener('load', this.onLoad); // Ignored via go/ees005 // eslint-disable-next-line @repo/internal/dom-events/no-unsafe-event-listeners this.img.addEventListener('error', this.onError); } } this.img.src = url; } } }, { key: "render", value: function render() { var imageStatus = this.state.imageStatus; // Ignored via go/ees005 // eslint-disable-next-line react/jsx-props-no-spreading return /*#__PURE__*/React.createElement(Wrapped, _extends({}, this.props, { imageStatus: imageStatus })); } }]); }(Component); };