如何在我的反应应用程序中嵌入Facebook发送按钮?

时间:2016-03-15 18:02:20

标签: javascript facebook reactjs npm

我有一个客户端渲染反应应用程序。我想在我的页面上显示一个facebook发送按钮。

开发者页面上给出的说明并没有告诉我如何操作

https://developers.facebook.com/docs/plugins/send-button#configurator

另外,我没有找到facebook为他们的SDK发布的npm兼容包。那么如何将SDK包含在反应应用程序中呢?

编辑:我尝试在反应中使用一些异步加载器。

import React, { Component } from 'react';
import scriptLoader from 'react-async-script-loader';

@scriptLoader(
  'https://connect.facebook.net/es_ES/sdk.js#xfbml=1&version=v2.5',
)
class FacebookSendButton extends Component {

  componentDidMount() {
    const { isScriptLoaded, isScriptLoadSucceed } = this.props;
    if (isScriptLoaded && isScriptLoadSucceed) {
      console.log('script load success from didMount');
    }
  }

  componentWillReceiveProps({ isScriptLoaded, isScriptLoadSucceed }) {
    if (isScriptLoaded && !this.props.isScriptLoaded) { // load finished
      if (isScriptLoadSucceed) {
        console.log('script load success from receiveProps');
      }
    }
  }

  render() {
    return (

      <div>
       BEFORE FB ROOT.
      <div className="fb-send"
        dataHref="http://www.your-domain.com/your-page.html"
        dataLt ayout="button_count"
      />
      <div id="fb-root"></div>
    </div>
    );
  }
}

export default FacebookSendButton;

这不会呈现Facebook发送按钮。

1 个答案:

答案 0 :(得分:8)

加载FB SDK后,它会解析整个页面标记,以查找具有特殊fb-*类的元素。由于FB脚本在模块初始化时加载,因此在最终安装组件之前可能会加载SDK。要让它重新处理DOM,您需要在componentDidMount中添加以下内容:

if (window.FB) {
  // Read the entire document for `fb-*` classnames
  FB.XFBML.parse();
}

当然,每次发送按钮时,您可能都不想解析整个文档。您可以通过为要搜索的DOM节点创建ref,然后将其传递给parse()方法来缩小搜索范围。

componentDidMount() {
  const { isScriptLoaded, isScriptLoadSucceed } = this.props;
  if (isScriptLoaded && isScriptLoadSucceed && window.FB) {
    window.FB.XFBML.parse(this._scope);
  }
}

componentWillReceiveProps({ isScriptLoaded, isScriptLoadSucceed }) {
  if (isScriptLoaded && !this.props.isScriptLoaded) { // load finished
    if (isScriptLoadSucceed && window.FB) {
      window.FB.XFBML.parse(this._scope);
    }
  }
}

render() {
  return (
    <div ref={(s) => this._scope = s}>
      <div id="fb-root"></div>
      <div
        className="fb-send"
        data-href="http://www.your-domain.com/your-page.html"
        data-layout="button_count"
      />
    </div>
  );
}

您会注意到我在这里使用functional refs的新方法。已命名的引用(例如ref="somestr")已被弃用&amp; React团队气馁。

我有一个hacky版本的工作来自以下要点:https://gist.github.com/andrewimm/9fdd0007c3476446986a9f600ba4183f