简体   繁体   English

转换单个React组件以用作JS小部件

[英]Transpile single React component to use as JS widget

I am working on a fairly complex web app using React.js, and I would like to allow the app's users to use one of the components as an API widget on their sites as well with a script tag (think Google Maps API, Analytics, etc.) 我正在使用React.js开发一个相当复杂的网络应用程序,我希望允许该应用程序的用户使用其组件之一作为其网站上的API小部件以及脚本标签(例如Google Maps API,Analytics,等等。)

I'm new to React, but I think React takes all of the components, etc. in the app, and bundles them into a single JS file. 我是React的新手,但我认为React将应用程序中的所有组件等都打包到一个JS文件中。

Is it possible to bundle only one component into a JS file, then let users place that file in their site, and use it as a widget? 是否可以仅将一个组件捆绑到一个JS文件中,然后让用户将该文件放在其站点中,然后将其用作小部件?

I've tried transpiling the component I want users to use as a widget with reactify , but I can't seem to get it to work. 我尝试使用reactify来编译我希望用户用作窗口小部件的组件 ,但是我似乎无法使其正常工作。

Any thoughts? 有什么想法吗?

Absolutely, however they will still need to include React as a dependency, or you would have to in your widget. 绝对,但是它们仍然需要将React作为依赖项包括进来,否则您将不得不在其小部件中。

To use React you don't need to use transpilation, ie you don't need reactify. 要使用React,您不需要使用转译,即您不需要react。 Building a widget for React is like building a widget for jQuery. 为React构建小部件就像为jQuery构建小部件。

 // Your widget root component var SayHelloComponent = React.createClass({ render() { // You use React.createElement API instead of JSX return React.createElement('span', null, "Hello " + this.props.name + "!"); } }); // This is a function so that it can be evaluated after document load var getWidgetNodes = function () { return document.querySelectorAll('[data-say-hello]'); }; function initializeWidget(node) { // get the widget properties from the node attributes var name = node.getAttribute('data-say-hello'); // create an instance of the widget using the node attributes // as properties var element = React.createElement(SayHelloComponent, { name: name }); ReactDOM.render(element, node); } getWidgetNodes().forEach(initializeWidget); 
 <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script> <!-- What it would look to include your widget in a page --> <div data-say-hello="Guzart"></div> 

The only reason you would need to transpile your code would be to use JSX and ES6. 您需要转译代码的唯一原因是使用JSX和ES6。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM