-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
46 lines (39 loc) · 993 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { useEffect, useState } from "react";
const useFacebook = function ({
appId,
version = "v18.0",
autoLogAppEvents = true,
xfbml = true,
debug = false,
lang = "en_GB",
}) {
const [isFacebookSDKReady, setFacebookSDKReady] = useState(false);
useEffect(() => {
window.fbAsyncInit = function () {
FB.init({
appId,
autoLogAppEvents,
xfbml,
version,
});
setFacebookSDKReady(true);
};
(function (d, s, id) {
if (d.getElementById(id)) {
setFacebookSDKReady(true);
return;
}
const fjs = d.getElementsByTagName(s)[0];
const js = d.createElement(s);
js.id = id;
js.src = `https://connect.facebook.net/${lang}/sdk${
debug ? "/debug" : ""
}.js`;
js.async = 1;
js.defer = 1;
fjs.parentNode.insertBefore(js, fjs);
})(document, "script", "facebook-jssdk");
}, []);
return { isFacebookSDKReady };
};
export default useFacebook;