![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@tusken-s/facebook-tools
Advanced tools
A rich set of first class typescript, react-based, client-side functionality for adding Social Plugins, Facebook Login and Graph API calls.
The tool set is a comprehensive TypeScript and React-based client-side module that provides first-class functionality for adding Social Plugins and Facebook Login to your web application.
This module allows seamless integration of Facebook features into your React components. The following example demonstrates the usage of the components provided by Nom:
To install the tool set, use the following command:
npm install @tusken-s/facebook-tools
# OR
yarn add @tusken-s/facebook-tools
Import the required components from the Nom module as shown below:
import { Script, Chat, Button } from "@tusken-s/facebook-tools";
The Script
component enables you to load the necessary Facebook scripts and initialize the Social Plugins. Here is an example of how to use it:
import { Features, Script } from "@tusken-s/facebook-tools";
...
<Script
cookie={false}
nonce="xxxxxxx"
features={[Features.LOGIN_BUTTON, Features.CHAT_PLUGIN]}
appId={facebook_app_id}
pageId={facebook_page_id}
/>
Make sure to replace your_theme_color
, facebook_app_id
and facebook_page_id
with the actual values from your application's configuration.
Prop | Type | Description |
---|---|---|
appId | string | The Facebook app ID. |
pageId | string | The Facebook page ID. |
cookie | boolean | Specifies whether the cookie should be used. Default: false . |
nonce | string | The nonce value for script security. |
language | ISOLangCountry | The language for the script. |
features | Array<Features> | An array of Facebook features to enable. |
The Chat
component allows you to embed a Facebook Chat Plugin into your application. Here is an example of how to use it:
<Chat minimized={true} color={your_theme_color} pageId={facebook_page_id} />
Ensure to replace facebook_page_id
with the appropriate Facebook page ID from your application's configuration. Additionally, you can customize the minimized
and color
props to fit your specific requirements.
Prop | Type | Description |
---|---|---|
pageId | string | The Facebook page ID. |
color | string | The color of the chat plugin. |
minimized | boolean | Specifies whether the chat plugin is minimized. |
The Button
component provides an easy way to integrate Facebook Login into your application. Here is an example of how to use it:
import { Button } from "@tusken-s/facebook-tools";
<Button
scope="public_profile,email"
callback={loginFacebookCallback}
width="100%"
>
...
</Button>;
Replace loginFacebookCallback
with the function that will handle the Facebook login callback in your application. Customize the scope
and width
props as needed.
Prop | Type | Description |
---|---|---|
disabled | boolean | Specifies whether the button is disabled. Default: false . |
width | string | number | The width of the button. |
scope | string | The Facebook login permissions scope. |
buttonType | "continue_with" | "login_with" | The type of the button. |
callback | (x: StatusResponse["authResponse"]) => void | The callback function triggered on successful login. |
style | CSSProperties | Custom styles to be applied to the button. |
language | ISOLangCountry | The language for the button. |
children | ReactNode | The content to be displayed inside the button. |
In addition to the React components and functionality mentioned above, this module also offers comprehensive type definitions for Facebook's SDK native methods, classes, and tools. By simply installing the module, you gain access to the full range of Facebook SDK features with TypeScript support.
For example, you can use the Facebook SDK methods and classes as follows:
// Access Facebook SDK methods and classes
window.FB.init({
appId: "your_app_id",
version: "v12.0",
});
window.FB.api("/me", (response) => {
console.log(response);
});
and you won't get any type errors.
Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the GitHub repository.
Read the contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to MUI.
Notice that contributions go far beyond pull requests and commits. Although we love giving you the opportunity to put your stamp on the module, we also are thrilled to receive a variety of other contributions.
The changelog is regularly updated to reflect what's changed in each new release.
Future plans and high-priority features and enhancements can be found soon in our roadmap page.
This project is licensed under the terms of the MIT license.
Our Sponsors push our Research, Development & Infrastructure:
Tuskens allow us to host the Git repository and coordinate contributions.
[0.0.26] - 2023-06-19
FAQs
A rich set of first class typescript, react-based, client-side functionality for adding Social Plugins, Facebook Login and Graph API calls.
The npm package @tusken-s/facebook-tools receives a total of 4 weekly downloads. As such, @tusken-s/facebook-tools popularity was classified as not popular.
We found that @tusken-s/facebook-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.