UNPKG

box-ui-elements

Version:
35 lines (34 loc) 1.33 kB
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } /** * * @file Base class for the Content Sharing ES6 wrapper * @author Box */ import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; // TODO switch to createRoot when upgrading to React 18 // eslint-disable-next-line react/no-deprecated import { render } from 'react-dom'; import ES6Wrapper from './ES6Wrapper'; import ContentSharingReactComponent from '../content-sharing'; import { ITEM_TYPE_FILE } from '../../common/constants'; class ContentSharing extends ES6Wrapper { /** @inheritdoc */ render() { const { itemType } = this.options; render(/*#__PURE__*/React.createElement(ContentSharingReactComponent, _extends({ itemID: this.id, itemType: itemType || ITEM_TYPE_FILE, language: this.language, messages: this.messages, token: this.token, uuid: uniqueId('contentSharing_') }, this.options)), this.container); } } global.Box = global.Box || {}; global.Box.ContentSharing = ContentSharing; export default ContentSharing; //# sourceMappingURL=ContentSharing.js.map